COIN-OR::LEMON - Graph Library

Changeset 722:be8712e1fe07 in lemon-0.x for src


Ignore:
Timestamp:
07/21/04 19:39:49 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@976
Message:

For the sake of icc.

Location:
src/hugo
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/full_graph.h

    r713 r722  
    108108    protected:
    109109      int n;
    110       friend int FullGraph::id(Node v) const;
     110      friend int FullGraph::id(Node v);
    111111      Node(int nn) {n=nn;}
    112112    public:
     
    136136    protected:
    137137      int n; //NodeNum*head+tail;
    138       friend int FullGraph::id(Edge e) const;
     138      friend int FullGraph::id(Edge e);
    139139
    140140      Edge(int nn) {n=nn;}
  • src/hugo/list_graph.h

    r713 r722  
    317317    protected:
    318318      int n;
    319       friend int ListGraph::id(Node v) const;
     319      friend int ListGraph::id(Node v);
    320320      Node(int nn) {n=nn;}
    321321    public:
     
    348348    protected:
    349349      int n;
    350       friend int ListGraph::id(Edge e) const;
     350      friend int ListGraph::id(Edge e);
    351351
    352352    public:
  • src/hugo/smart_graph.h

    r713 r722  
    205205    protected:
    206206      int n;
    207       friend int SmartGraph::id(Node v) const;
     207      friend int SmartGraph::id(Node v);
    208208      Node(int nn) {n=nn;}
    209209    public:
     
    236236    protected:
    237237      int n;
    238       friend int SmartGraph::id(Edge e) const;
     238      friend int SmartGraph::id(Edge e);
    239239
    240240    public:
Note: See TracChangeset for help on using the changeset viewer.