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