Skip to content

Commit

Permalink
comment out methods that are not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Nov 18, 2024
1 parent b04a2dc commit 29badeb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions copasi/sbml/SBMLImporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class SBMLImporter : public SBMLUnitSupport
* This function replaces the AST_FUNCTION_POWER ASTNodes in a ASTNode tree
* with the AST_POWER node.
*/
void replacePowerFunctionNodes(ASTNode* node);
//void replacePowerFunctionNodes(ASTNode* node);

/**
* This functions replaces all species nodes for species that are in the substanceOnlySpeciesVector.
Expand All @@ -371,13 +371,13 @@ class SBMLImporter : public SBMLUnitSupport
* Replaces all occurrences of the log function with two arguments by
* a division of two separate calls to log.
*/
void replaceLog(ConverterASTNode* sourceNode);
//void replaceLog(ConverterASTNode* sourceNode);

/**
* Replaces all occurrences of the root function with two arguments by
* a call to the power function with the inverse of the first argument.
*/
void replaceRoot(ConverterASTNode* sourceNode);
//void replaceRoot(ConverterASTNode* sourceNode);

/**
* Replaces the ids of named nodes in an ASTNode tree with
Expand Down Expand Up @@ -616,7 +616,7 @@ class SBMLImporter : public SBMLUnitSupport
/**
* Creates a function definition for the delay function.
*/
void createDelayFunctionDefinition();
//void createDelayFunctionDefinition();

/**
* This method goes through the list of global parameters and tries to find
Expand Down

0 comments on commit 29badeb

Please sign in to comment.