COIN-OR::LEMON - Graph Library

Changeset 447:3c0d39b6388c in lemon-1.2 for lemon


Ignore:
Timestamp:
12/12/08 22:09:29 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Avoid warning in adaptors.h (#67)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/adaptors.h

    r446 r447  
    22062206    void first(Arc& i) const { _graph->first(i); }
    22072207    void firstIn(Arc& i, const Node& n) const {
    2208       bool d;
     2208      bool d = true;
    22092209      _graph->firstInc(i, d, n);
    22102210      while (i != INVALID && d == (*_direction)[i]) _graph->nextInc(i, d);
    22112211    }
    22122212    void firstOut(Arc& i, const Node& n ) const {
    2213       bool d;
     2213      bool d = true;
    22142214      _graph->firstInc(i, d, n);
    22152215      while (i != INVALID && d != (*_direction)[i]) _graph->nextInc(i, d);
Note: See TracChangeset for help on using the changeset viewer.