summaryrefslogtreecommitdiff
path: root/fast/hypergraph.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fast/hypergraph.cc')
-rw-r--r--fast/hypergraph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/fast/hypergraph.cc b/fast/hypergraph.cc
index d24713e..125f6e4 100644
--- a/fast/hypergraph.cc
+++ b/fast/hypergraph.cc
@@ -140,7 +140,7 @@ read(Hypergraph& hg, string fn)
} else if (i > 1 && i <= nn) {
Node* n = new Node;
o.convert(n);
- hg.nodes.push_front(n); // FIXME
+ hg.nodes.push_back(n);
hg.nodes_by_id[n->id] = n;
} else if (i > nn && i <= nn+ne+1) {
Edge* e = new Edge;