lemon/cplex.cc
changeset 877 141f9c0db4a3
parent 746 e4554cd6b2bf
child 956 4764031c082c
     1.1 --- a/lemon/cplex.cc	Wed Mar 17 12:35:52 2010 +0100
     1.2 +++ b/lemon/cplex.cc	Sat Mar 06 14:35:12 2010 +0000
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2009
     1.8 + * Copyright (C) 2003-2010
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -111,7 +111,7 @@
    1.13      return i;
    1.14    }
    1.15  
    1.16 -  int CplexBase::_addRow(Value lb, ExprIterator b, 
    1.17 +  int CplexBase::_addRow(Value lb, ExprIterator b,
    1.18                           ExprIterator e, Value ub) {
    1.19      int i = CPXgetnumrows(cplexEnv(), _prob);
    1.20      if (lb == -INF) {
    1.21 @@ -489,7 +489,7 @@
    1.22    }
    1.23  
    1.24    void CplexBase::_applyMessageLevel() {
    1.25 -    CPXsetintparam(cplexEnv(), CPX_PARAM_SCRIND, 
    1.26 +    CPXsetintparam(cplexEnv(), CPX_PARAM_SCRIND,
    1.27                     _message_enabled ? CPX_ON : CPX_OFF);
    1.28    }
    1.29