COIN-OR::LEMON - Graph Library

Changes between Initial Version and Version 1 of Ticket #203


Ignore:
Timestamp:
01/15/09 08:36:03 (16 years ago)
Author:
Alpar Juttner
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #203 – Description

    initial v1  
    11A new function is requested in lp_base.h:
    22
     3{{{
    34virtual int _addRow(ConstRowIterator, ConstRowIterator, Value, Value) =0;
     5}}}
    46
    5 int this cae the following two function can be replaced in  lp_base.h
    6 1.
     7int this case the following two function can be replaced in  {{{lp_base.h}}}
     8
     9 1.
     10
     11{{{
    712    Row addRow(Value l,const Expr &e, Value u) {
    813      Row r=addRow();
     
    1015      return r;
    1116    }
     17}}}
    1218by
     19{{{
    1320    Row addRow(Value l,const Expr &e, Value u) {
    1421          Row r;
     
    1825      return r;
    1926    }
     27}}}
    2028
    21 2.
     29 2.
     30
     31{{{
    2232    Row addRow(const Constr &c) {
    2333      Row r=addRow();
     
    2535      return r;
    2636    }
     37}}}
    2738by
     39{{{
    2840    Row addRow(const Constr &c) {
    2941      Row r=addRow(c.lowerBounded()?c.lowerBound():-INF,
     
    3143      return r;
    3244    }
     45}}}
    3346
    34 For each solver a new int _addRow(ConstRowIterator, ConstRowIterator, Value, Value) function must be implemented (see also the attached files).
     47For each solver a new {{{int _addRow(ConstRowIterator, ConstRowIterator, Value, Value)}}} function must be implemented (see also the [attachment:lemon_lp_mip.zip attached files]).
    3548