Changeset 1367:a490662291b9 in lemon-0.x for src/lemon/dfs.h
- Timestamp:
- 04/18/05 16:59:24 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1812
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/dfs.h
r1359 r1367 87 87 ///\param G is the graph, to which 88 88 ///we would like to define the \ref ProcessedMap 89 static ProcessedMap *createProcessedMap(const GR & G)89 static ProcessedMap *createProcessedMap(const GR &) 90 90 { 91 91 return new ProcessedMap(); … … 777 777 ///\param G is the graph, to which we would like to define the PredMap. 778 778 ///\todo The graph alone may be insufficient to initialize 779 static PredMap *createPredMap(const GR & G)779 static PredMap *createPredMap(const GR &) 780 780 { 781 781 return new PredMap(); … … 810 810 ///\param G is the graph, to which 811 811 ///we would like to define the \ref ProcessedMap 812 static ProcessedMap *createProcessedMap(const GR & G)812 static ProcessedMap *createProcessedMap(const GR &) 813 813 { 814 814 return new ProcessedMap(); … … 839 839 ///This function instantiates a \ref DistMap. 840 840 ///\param G is the graph, to which we would like to define the \ref DistMap 841 static DistMap *createDistMap(const GR & G)841 static DistMap *createDistMap(const GR &) 842 842 { 843 843 return new DistMap(); … … 995 995 struct DefPredMapBase : public Base { 996 996 typedef T PredMap; 997 static PredMap *createPredMap(const Graph & G) { return 0; };997 static PredMap *createPredMap(const Graph &) { return 0; }; 998 998 DefPredMapBase(const TR &b) : TR(b) {} 999 999 }; … … 1016 1016 struct DefReachedMapBase : public Base { 1017 1017 typedef T ReachedMap; 1018 static ReachedMap *createReachedMap(const Graph & G) { return 0; };1018 static ReachedMap *createReachedMap(const Graph &) { return 0; }; 1019 1019 DefReachedMapBase(const TR &b) : TR(b) {} 1020 1020 }; … … 1037 1037 struct DefProcessedMapBase : public Base { 1038 1038 typedef T ProcessedMap; 1039 static ProcessedMap *createProcessedMap(const Graph & G) { return 0; };1039 static ProcessedMap *createProcessedMap(const Graph &) { return 0; }; 1040 1040 DefProcessedMapBase(const TR &b) : TR(b) {} 1041 1041 }; … … 1078 1078 struct DefDistMapBase : public Base { 1079 1079 typedef T DistMap; 1080 static DistMap *createDistMap(const Graph & G) { return 0; };1080 static DistMap *createDistMap(const Graph &) { return 0; }; 1081 1081 DefDistMapBase(const TR &b) : TR(b) {} 1082 1082 };
Note: See TracChangeset
for help on using the changeset viewer.