Skip to content
Snippets Groups Projects
Commit 99ef7b1f authored by Houtan Bastani's avatar Houtan Bastani
Browse files

preprocessor: make notation accord with the rest of the preprocessor

parent b62e5e8b
Branches
Tags
No related merge requests found
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
#include "SteadyStateModel.hh" #include "SteadyStateModel.hh"
SteadyStateModel::SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg) : SteadyStateModel::SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants_arg, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg) :
DataTree(symbol_table_arg, num_constants, external_functions_table_arg), static_model(static_model_arg) DataTree(symbol_table_arg, num_constants_arg, external_functions_table_arg), static_model(static_model_arg)
{ {
} }
......
...@@ -34,7 +34,7 @@ private: ...@@ -34,7 +34,7 @@ private:
const StaticModel &static_model; const StaticModel &static_model;
public: public:
SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg); SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants_arg, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg);
//! Add an expression of the form "var = expr;" //! Add an expression of the form "var = expr;"
void addDefinition(int symb_id, expr_t expr); void addDefinition(int symb_id, expr_t expr);
//! Add an expression of the form "[ var1, var2, ... ] = expr;" //! Add an expression of the form "[ var1, var2, ... ] = expr;"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment