Exemplo n.º 1
0
 public GLPKInput()
 {
     Variables    = new List <string>( );
     Restrictions = new List <GLPKRestriction>( );
     Objective    = new GLPKObjective();
 }
Exemplo n.º 2
0
 public GLPKInput(List <string> var, List <GLPKRestriction> rest, GLPKObjective obj)
 {
     Variables    = var;
     Restrictions = rest;
     Objective    = obj;
 }