From c62e1ac5feb1108b332d52c76475d53cf4896945 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 15 Apr 2011 16:37:48 +0000 Subject: [PATCH] Fixed fence, fixed nodecounting --- Util/GraphLoader.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Util/GraphLoader.h b/Util/GraphLoader.h index d1d4e3fde..c67ed63f5 100644 --- a/Util/GraphLoader.h +++ b/Util/GraphLoader.h @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or see http://www.gnu.org/licenses/agpl.txt. */ -#ifndef CREATEGRAPH_H +#ifndef GRAPHLOADER_H #define GRAPHLOADER_H #include @@ -325,19 +325,17 @@ NodeID readDDSGGraphFromStream(istream &in, vector& edgeList, vector(edgeList.begin(), edgeList.end()).swap(edgeList); //remove excess candidates. cout << "ok" << endl; std::cout << "imported " << numberOfNodes << " nodes and " << edgeList.size() << " edges" << std::endl; @@ -390,4 +388,4 @@ unsigned readHSGRFromStream(istream &in, vector * edgeList) { } return numberOfNodes+1; } -#endif // CREATEGRAPH_H +#endif // GRAPHLOADER_H