Skip to content

Commit

Permalink
remove duplicate push_back (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschimek authored Oct 25, 2024
1 parent c37de78 commit b7b8b9c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kagen/edgeweight_generators/per_edge_weight_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class PerEdgeWeightGenerator : public EdgeWeightGenerator {
SInt v = adjncy[e];
SSInt weight = static_cast<Derived*>(this)->GenerateEdgeWeight(u, v);
weights.push_back(weight);
weights.push_back(weight);
}
}
}
Expand Down

0 comments on commit b7b8b9c

Please sign in to comment.