Source code for simdesign.rcmrf.bnsm.dp01.foundation
"""This module provides the foundation class implementation for the ``DP01``
model in the BNSM layer.
"""
# Imports from bnsm base library
from ..baselib.foundation import FoundationBase
[docs]
class Foundation(FoundationBase):
"""Foundation implementation for the ``DP01`` model.
This class directly uses the behaviour defined in ``FoundationBase``.
See Also
--------
:class:`~FoundationBase`
Base class defining the core behaviour and configuration.
"""