From 5916768bddda72b49a7d7306cade57bb2474c274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Tue, 1 Jul 2014 17:41:37 +0200 Subject: [PATCH] More explicit error message when using the derivative of an external function in the model block. Closes #678 --- ParsingDriver.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ParsingDriver.cc b/ParsingDriver.cc index 517b0d88..000bd644 100644 --- a/ParsingDriver.cc +++ b/ParsingDriver.cc @@ -2476,7 +2476,8 @@ ParsingDriver::add_model_var_or_external_function(string *function_name, bool in { // e.g. this function has already been referenced (either ad hoc or through the external_function() statement // => check that the information matches previously declared info int symb_id = mod_file->symbol_table.getID(*function_name); - assert(mod_file->external_functions_table.exists(symb_id)); + if (!mod_file->external_functions_table.exists(symb_id)) + error("Using a derivative of an external function (" + *function_name + ") in the model block is currently not allowed."); if (in_model_block) if (mod_file->external_functions_table.getNargs(symb_id) == eExtFunNotSet)