Source code for prism.modellink._poly_link

# -*- coding: utf-8 -*-

# Simple Polynomial ModelLink
# Compatible with Python 3.5+

"""
PolyLink
========
Provides the definition of the :class:`~PolyLink` class.

"""


# %% IMPORTS
# Package imports
import numpy as np

# PRISM imports
from prism._internal import check_vals
from prism.modellink._modellink import ModelLink

# All declaration
__all__ = ['PolyLink']


# %% CLASS DEFINITION