equal
deleted
inserted
replaced
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 |