bool 
  FbcToCobraConverter::matchesProperties(const ConversionProperties &props) const
{
  if (&props == NULL || !props.hasOption("convert fbc to cobra"))
    return false;
  return true;
}
bool 
SBMLInitialAssignmentConverter::matchesProperties(const ConversionProperties &props) const
{
  if (!props.hasOption("expandInitialAssignments"))
    return false;
  return true;
}
bool 
SBMLLevelVersionConverter::matchesProperties(const ConversionProperties &props) const
{
  if (&props == NULL || !props.hasOption("setLevelAndVersion"))
    return false;
  return true;
}
bool 
SBMLFunctionDefinitionConverter::matchesProperties(const ConversionProperties &props) const
{
  if (!props.hasOption("expandFunctionDefinitions"))
    return false;
  return true;
}
bool 
SBMLLevel1Version1Converter::matchesProperties(const ConversionProperties &props) const
{
  if (!props.hasOption("convertToL1V1"))
    return false;
  return true;
}
Ejemplo n.º 6
0
bool 
SBMLIdConverter::matchesProperties(const ConversionProperties &props) const
{
  if (!props.hasOption("renameSIds"))
    return false;
  return true;
}
bool 
CompFlatteningConverter::matchesProperties
                        (const ConversionProperties &props) const
{
  if (!props.hasOption("flatten comp"))
    return false;
  return true;
}