diff --git a/ModFile.cc b/ModFile.cc index 9a8816a12d78ac2ddee8ac7ca56daa48d404589d..ce4094f9197254a5b84dafffdd339a117049a56b 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -146,11 +146,8 @@ ModFile::computingPass(bool no_tmp_terms) if (dynamic_model.equation_number() > 0) { // Compute static model and its derivatives - cout << "byte_code=" << byte_code << endl; - cout << "block=" << block << endl; if(byte_code) { - cout << "go in DLL\n"; dynamic_model.toStaticDll(static_dll_model); static_dll_model.computingPass(global_eval_context, no_tmp_terms, block); } diff --git a/StaticModel.cc b/StaticModel.cc index bda4f1ec5d1926989f45de493cd9ecb5b3353384..dc380bb295cd697f1796eb5784c09a628effc929 100644 --- a/StaticModel.cc +++ b/StaticModel.cc @@ -558,7 +558,7 @@ StaticModel::writeOutput(ostream &output, bool block) const { if (!block) return; - + output << "options_.block=" << block << ";" << endl; output << "M_.blocksMFS = cell(" << blocksMFS.size() << ", 1);" << endl; for(int b = 0; b < (int) blocks.size(); b++) {