From 1817992f452a9e41eb031be98880111ec7f91d05 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Tue, 19 May 2015 16:31:50 +0200 Subject: [PATCH] preprocessor: remove unnecessary reindexing --- ModFile.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ModFile.cc b/ModFile.cc index 0592c620..a206a930 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -316,11 +316,6 @@ ModFile::transformPass(bool nostrict) dynamic_model.reindex(orig_symbol_table); dynamic_model.reindexStaticOnlyEquations(orig_symbol_table); - SymbolTable *exp_tree_symbol_table = expressions_tree.getSymbolTable(); - exp_tree_symbol_table->rmExo(unusedExo, orig_symbol_table); - - SymbolTable *ssm_tree_symbol_table = steady_state_model.getSymbolTable(); - ssm_tree_symbol_table->rmExo(unusedExo, orig_symbol_table); vector orig_statements = statements; statements.clear();