Source code for hydpy.models.test.test_states
# -*- coding: utf-8 -*-
# pylint: disable=missing-module-docstring
# import...
# ...from HydPy
from hydpy.core import sequencetools
[docs]
class S(sequencetools.StateSequence):
"""Storage content [mm]."""
NDIM, NUMERIC, SPAN = 0, True, (0.0, None)
[docs]
class SV(sequencetools.StateSequence):
"""Storage content vector[mm]."""
NDIM, NUMERIC, SPAN = 1, True, (0.0, None)