Source code for prism.modellink._gaussian_link

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

# Simple Gaussian ModelLink
# Compatible with Python 3.5+

"""
GaussianLink
============
Provides the definition of the :class:`~GaussianLink` 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__ = ['GaussianLink']


# %% CLASS DEFINITION