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 896b21a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 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
3 changes: 0 additions & 3 deletions microbench/edit_scalability_large.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,6 @@ int main(int argc, char const* argv[]) {
algo_threads ? algo_threads
: galois::substrate::getThreadPool().getMaxThreads());
{
if (algo_output.is_open()) {
}

BENCHMARK_SCOPE("Algorithm for Batch " + std::to_string(batch_number));
if (algo_output.is_open()) {
algo_output << "==== running " << algo_name << " after batch "
Expand Down

0 comments on commit 896b21a

Please sign in to comment.