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