COIN-OR::LEMON - Graph Library

Changeset 1995:c1fc2c14a3ae in lemon-0.x


Ignore:
Timestamp:
03/02/06 15:22:03 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2598
Message:

Bugfix in bpugraph

Location:
lemon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • lemon/full_graph.h

    r1993 r1995  
    607607      return node.id >> 1;
    608608    }
    609     static Node fromANodeId(int id, Node) {
     609    static Node fromANodeId(int id) {
    610610      return Node(id << 1);
    611611    }
  • lemon/list_graph.h

    r1991 r1995  
    812812      return node.id >> 1;
    813813    }
    814     static Node fromANodeId(int id, Node) {
     814    static Node fromANodeId(int id) {
    815815      return Node(id << 1);
    816816    }
  • lemon/smart_graph.h

    r1993 r1995  
    505505      return node.id >> 1;
    506506    }
    507     static Node fromANodeId(int id, Node) {
     507    static Node fromANodeId(int id) {
    508508      return Node(id << 1);
    509509    }
Note: See TracChangeset for help on using the changeset viewer.