[Lemon-commits] deba: r3404 - lemon/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Wed Nov 28 19:01:39 CET 2007
Author: deba
Date: Wed Nov 28 19:01:38 2007
New Revision: 3404
Modified:
lemon/trunk/lemon/circulation.h
lemon/trunk/lemon/dinitz_sleator_tarjan.h
lemon/trunk/lemon/edmonds_karp.h
lemon/trunk/lemon/goldberg_tarjan.h
lemon/trunk/lemon/preflow.h
Log:
bug fix
class without constructor error
Modified: lemon/trunk/lemon/circulation.h
==============================================================================
--- lemon/trunk/lemon/circulation.h (original)
+++ lemon/trunk/lemon/circulation.h Wed Nov 28 19:01:38 2007
@@ -231,6 +231,12 @@
/// @}
+ protected:
+
+ Circulation() {}
+
+ public:
+
/// The constructor of the class.
/// The constructor of the class.
Modified: lemon/trunk/lemon/dinitz_sleator_tarjan.h
==============================================================================
--- lemon/trunk/lemon/dinitz_sleator_tarjan.h (original)
+++ lemon/trunk/lemon/dinitz_sleator_tarjan.h Wed Nov 28 19:01:38 2007
@@ -213,6 +213,12 @@
}
};
+ protected:
+
+ DinitzSleatorTarjan() {}
+
+ public:
+
/// \brief The constructor of the class.
///
/// The constructor of the class.
Modified: lemon/trunk/lemon/edmonds_karp.h
==============================================================================
--- lemon/trunk/lemon/edmonds_karp.h (original)
+++ lemon/trunk/lemon/edmonds_karp.h Wed Nov 28 19:01:38 2007
@@ -192,6 +192,12 @@
/// @}
+ protected:
+
+ EdmondsKarp() {}
+
+ public:
+
/// \brief The constructor of the class.
///
/// The constructor of the class.
Modified: lemon/trunk/lemon/goldberg_tarjan.h
==============================================================================
--- lemon/trunk/lemon/goldberg_tarjan.h (original)
+++ lemon/trunk/lemon/goldberg_tarjan.h Wed Nov 28 19:01:38 2007
@@ -272,7 +272,11 @@
}
};
- public:
+ protected:
+
+ GoldbergTarjan() {}
+
+ public:
/// \brief The constructor of the class.
///
Modified: lemon/trunk/lemon/preflow.h
==============================================================================
--- lemon/trunk/lemon/preflow.h (original)
+++ lemon/trunk/lemon/preflow.h Wed Nov 28 19:01:38 2007
@@ -168,6 +168,7 @@
bool _phase;
+
void createStructures() {
_node_num = countNodes(_graph);
@@ -266,6 +267,13 @@
/// @}
+ protected:
+
+ Preflow() {}
+
+ public:
+
+
/// \brief The constructor of the class.
///
/// The constructor of the class.
More information about the Lemon-commits
mailing list