lemon/lp_base.h
changeset 1439 2c43106bef85
parent 1436 e0beb94d08bf
child 1445 4635352e5524
equal deleted inserted replaced
1:eeb1468cfbad 2:25652e1a440b
   182     public:
   182     public:
   183       typedef Value ExprValue;
   183       typedef Value ExprValue;
   184       typedef True LpSolverRow;
   184       typedef True LpSolverRow;
   185       Row() {}
   185       Row() {}
   186       Row(const Invalid&) : id(-1) {}
   186       Row(const Invalid&) : id(-1) {}
   187       typedef True LpSolverRow;
   187 
   188       bool operator<(Row c) const  {return id<c.id;}
   188       bool operator<(Row c) const  {return id<c.id;}
   189       bool operator==(Row c) const  {return id==c.id;}
   189       bool operator==(Row c) const  {return id==c.id;}
   190       bool operator!=(Row c) const  {return id==c.id;} 
   190       bool operator!=(Row c) const  {return id==c.id;} 
   191    };
   191    };
   192     
   192