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

issue#70
Michel Juillard 2011-05-24 15:51:38 +02:00
parent f9287ac796
commit 330e1acb89
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ SymbolTable::addMultiplierAuxiliaryVar(int index) throw (FrozenException)
{
ostringstream varname;
int symb_id;
varname << "MULT_" << index;
varname << "MULT_" << index+1;
try
{