Skip to content

Commit

Permalink
i am going to kill the pre-commit system
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerzinn committed Apr 21, 2024
1 parent 2371a41 commit f730817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/scea/algo/tc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class TriangleCounting : public Algo {
void operator()(scea::graph::MutableGraph& g) override { compute(g); }

void operator()(scea::graph::MutableGraph& g, std::ostream& output) override {
auto ans = compute(g);
output << "Number of triangles: " << ans << std::endl;
auto answer = compute(g);
output << "Number of triangles: " << answer << std::endl;
}
};

Expand Down

0 comments on commit f730817

Please sign in to comment.