Or add to an experiment
continuation
classes.continuation
Continuation.
The public import location for :class:Continuation.
There is no wrapper class: the factory methods live in :mod:tvbo.behaviour.continuation and are attached to the generated class itself, so a continuation carries them however it was built — loaded from YAML, nested inside an experiment, or constructed directly.
Continuation() requires a name, as the schema does: the one construction site in the package passes it explicitly.
Usage
from tvbo import Continuation cont = Continuation.from_db(“Generic2dOscillator-bifurcation”) print(cont.name) eq_in_I
exp = SimulationExperiment() exp.continuations[cont.name] = cont