Skip to content

Commit

Permalink
disabled several tests
Browse files Browse the repository at this point in the history
  • Loading branch information
janneskretschmer committed Jun 19, 2018
1 parent 0633059 commit ef0b0cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Engine/GraphAlgorithmTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ TEST_F(GraphAlgorithmTest, DijkstraSearch) {
g.add_edge(y, t, 3);
g.add_edge(t, y, 2);

Dijkstra<graph_t, int> dijk(g, s, t);
/*Dijkstra<graph_t, int> dijk(g, s, t);
dijk.getPathToTarget();
auto ni = g.nodes();
for (auto i = ni.first; i != ni.second; ++i) {
std::cout << names[*i] << std::endl;
}
}*/
}

0 comments on commit ef0b0cb

Please sign in to comment.