From 5c59910001e2910b97c7c9539eb163838450e3a7 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 24 Jul 2015 11:35:23 +0200 Subject: [PATCH] accord variable names and functions with julia programming style --- ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index 6c3ae1fa..9dcd406d 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -1085,7 +1085,7 @@ ModFile::writeExternalFilesJulia(const string &basename, FileOutputType output) << "using Utils" << endl << "export dynamicmodel!, staticmodel!, steadystate!" << endl << "export model__" << endl - << "model__ = Model()" << endl + << "model__ = model()" << endl << "model__.fname = \"" << basename << "\"" << endl; symbol_table.writeJuliaOutput(jlOutputFile);