ecflow.RepeatDay
- class ecflow.RepeatDay
Bases:
pybind11_object
A repeat that is infinite.
A node can only have one repeat.
Constructor:
RepeatDay(step)
int step: The step.
Usage:
t = Task('t1',
RepeatDay( 1 ))
Accessor methods:
current_index() -> int
RepeatDay has no position concept; returns the step value.
current_value() -> int
The step value as an integer.
- RepeatDay.current_index(self: ecflow.RepeatDay) int
Return the step as an integer value (n.b. RepeatDay has no position concept; the step is its only numeric attribute).
- RepeatDay.current_value(self: ecflow.RepeatDay) object
Return the step value as an integer value.