Uses of Class
hSimulator.library.Model

Packages that use Model
hSimulator.library In this package a complete Java library is provided for simulating reaction models. 
 

Uses of Model in hSimulator.library
 

Methods in hSimulator.library that return Model
 Model Model.clone()
          Clones the model.
static Model Model.createFromFile(String fileName)
          Creates a new model according to the textual specification stored in a file.
static Model Model.loadModel(String filePath)
          Loads a model from file.
 

Methods in hSimulator.library with parameters of type Model
static void Model.saveModel(Model m, String filePath)
          Saves a model to file.
 

Constructors in hSimulator.library with parameters of type Model
SimulatedTS(Model model, int tMax, double timeSampling)
          Constructs a new object.
SimulatedTS(Model model, List<String> varsToBeSaved, int tMax, double timeSampling)
          Constructs a new object.
Simulator(Model m)
          Creates a new model simulator.
Simulator(Model m, int nThreads)
          Creates a new model simulator.