Closed shalinshah1993 closed 6 years ago
After the latest commit, support for all three simulation types have been added. Now SBSCL supports UniformTimeCourse
, SteadyState
and OneStep
simulations.
Support for repeatedTasks
has also been added. After task execution, a nested HashMap
data structure is returned. For a repeatedTask
this will be a map of maps.
More details can be found here:
@draeger @matthiaskoenig
The repeatedTask, introduced in Level 1 Version 2 of SED-ML, provides a generic looping construct, allowing repeated execution of complex tasks need to be supported. The implementation workflow of repeatedTasks will be as follows: First, resetModel determines if the model needs to reset or not followed by setting values at the beginning of each iteration. Finally, it sequentially iterates over each subTask (one or more tasks) for the range of values specified updating the setValue, if specified as elements in listOfChanges. If a list of range is specified, loop will be done over master range.