Open luciansmith opened 20 hours ago
The following code:
LIBSBMLNETWORK_CPP_NAMESPACE::autolayout(&m_sbml, 3, true); string s1 = LIBSBMLNETWORK_CPP_NAMESPACE::getText(&m_sbml, "S1");
With the following model:
<?xml version="1.0" encoding="UTF-8"?> <sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" xmlns:comp="http://www.sbml.org/sbml/level3/version1/comp/version1" level="3" version="2" comp:required="true"> <model metaid="__main" id="__main"> <listOfCompartments> <compartment sboTerm="SBO:0000410" id="default_compartment" spatialDimensions="3" size="1" constant="true"/> </listOfCompartments> <listOfSpecies> <species id="S1" name="Species 1" compartment="default_compartment" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> <species id="S2" compartment="default_compartment" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> </listOfSpecies> <listOfReactions> <reaction id="_J0" reversible="true"> <listOfReactants> <speciesReference species="S1" stoichiometry="1" constant="true"/> </listOfReactants> <listOfProducts> <speciesReference species="S2" stoichiometry="1" constant="true"/> </listOfProducts> </reaction> </listOfReactions> </model> </sbml>
gives me "S1" when it should give me "Species 1"
The following code:
With the following model:
gives me "S1" when it should give me "Species 1"