Source code for simdesign.rcmrf.bnsm.dp03.foundation

"""This module provides the foundation class implementation for the ``DP03``
model in the BNSM layer.
"""
# Imports from bnsm base library
from ..baselib.foundation import FoundationBase


[docs] class Foundation(FoundationBase): """Foundation implementation for the ``DP03`` model. This class directly uses the behaviour defined in ``FoundationBase``. See Also -------- :class:`~FoundationBase` Base class defining the core behaviour and configuration. """