From 5feeabfda710cbebf1820f5a5677ae2e9c84aeb2 Mon Sep 17 00:00:00 2001 From: Michel Juillard Date: Wed, 1 Aug 2012 10:01:59 +0200 Subject: [PATCH] removing preprocessor check about pruning at 3rd order --- ComputingTasks.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index a3b260fe..3a3451d5 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -135,14 +135,6 @@ StochSimulStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsoli || mod_file_struct.order_option >= 3) mod_file_struct.k_order_solver = true; - // Check that option "pruning" is not used with k-order - it = options_list.num_options.find("pruning"); - if ((it != options_list.num_options.end() && it->second == "1") - && mod_file_struct.k_order_solver) - { - cerr << "ERROR: in 'stoch_simul', you cannot use option 'pruning' with 'k_order_solver' option or with 3rd order approximation" << endl; - exit(EXIT_FAILURE); - } } void