Source code for hydpy.models.test.test_states

# pylint: disable=missing-module-docstring

from hydpy.core import sequencetools
from hydpy.core.typingtools import *


[docs] class S(sequencetools.StateSequence): """Storage content [mm].""" NDIM: Final[Literal[0]] = 0 NUMERIC = True SPAN = (0.0, None)
[docs] class SV(sequencetools.StateSequence): """Storage content vector[mm].""" NDIM: Final[Literal[1]] = 1 NUMERIC = True SPAN = (0.0, None)