COIN-OR::LEMON - Graph Library

Changeset 2527:10f3b3286e63 in lemon-0.x


Ignore:
Timestamp:
11/28/07 19:01:38 (16 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3403
Message:

bug fix
class without constructor error

Location:
lemon
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • lemon/circulation.h

    r2526 r2527  
    231231
    232232    /// @}
     233
     234  protected:
     235
     236    Circulation() {}
     237 
     238  public:
    233239
    234240    /// The constructor of the class.
  • lemon/dinitz_sleator_tarjan.h

    r2522 r2527  
    214214    };
    215215
     216  protected:
     217   
     218    DinitzSleatorTarjan() {}
     219
     220  public:
     221
    216222    /// \brief The constructor of the class.
    217223    ///
  • lemon/edmonds_karp.h

    r2522 r2527  
    193193    /// @}
    194194
     195  protected:
     196   
     197    EdmondsKarp() {}
     198
     199  public:
     200
    195201    /// \brief The constructor of the class.
    196202    ///
  • lemon/goldberg_tarjan.h

    r2522 r2527  
    273273    };
    274274
    275   public:
     275  protected:
     276   
     277    GoldbergTarjan() {}
     278
     279  public:
    276280
    277281    /// \brief The constructor of the class.
  • lemon/preflow.h

    r2525 r2527  
    169169    bool _phase;
    170170
     171
    171172    void createStructures() {
    172173      _node_num = countNodes(_graph);
     
    266267
    267268    /// @}
     269
     270  protected:
     271   
     272    Preflow() {}
     273
     274  public:
     275
    268276
    269277    /// \brief The constructor of the class.
Note: See TracChangeset for help on using the changeset viewer.