Skip to content
Snippets Groups Projects
Commit 8c9127ad authored by MichelJuillard's avatar MichelJuillard
Browse files

numbering names of Lagrange multipliers from 1 instead of 0: MULT_1, MULT_2,...

parent 075837b2
Branches
No related tags found
No related merge requests found
......@@ -377,7 +377,7 @@ SymbolTable::addMultiplierAuxiliaryVar(int index) throw (FrozenException)
{
ostringstream varname;
int symb_id;
varname << "MULT_" << index;
varname << "MULT_" << index+1;
try
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment