Grafalgo
Library of useful data structures and algorithms
/Users/jst/src/grafalgo/cpp/include/maxCap.h
00001 // AugPathMaxcap class. Encapsulates data and routines used by the
00002 // maximum capacity augmenting path algorithm. Use constructor to
00003 // invoke the algorithm.
00004 
00005 #ifndef MAXCAP_H
00006 #define MAXCAP_H
00007 
00008 #include "augPath.h"
00009 
00010 class maxCap : public augPath {
00011 public: 
00012         maxCap(Flograph&,int&);
00013 private:
00014         bool    findPath();
00015 };
00016 
00017 #endif
 All Classes Files Functions Variables Typedefs Friends