Difference between revisions of "Solver (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (Created page with "{{Extension point|solver|biouml.plugins.simulation}} === Description === This extension point allows to define new solver for model simulation. === Configuration Markup === ...") |
Latest revision as of 16:21, 8 May 2013
- Identifier
- biouml.plugins.simulation.solver
- Plugin
- biouml.plugins.simulation
[edit] Description
This extension point allows to define new solver for model simulation.
[edit] Configuration Markup
<!ELEMENT solver>
<!ATTLIST solver
class CDATA #REQUIRED
displayName CDATA #REQUIRED
type CDATA #REQUIRED
>
- class
- the fully-qualified name of solver class.
- displayName
- the name of solver.
- type
- solver type, may be "JAVA" or "MATLAB"
[edit] Examples
This is example of DormandPrince solver definition.
<extension id="SolverType" point="biouml.plugins.simulation.solver">
<solver
class="biouml.plugins.simulation.ode.DormandPrince"
displayName="DormandPrince"
type="JAVA"
/>
</extension>