Skip to content

Commit

Permalink
reorder members to fix compiler warnings (artifact of master merge)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgottesbueren committed Sep 28, 2023
1 parent 74c1b99 commit e06ee02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class DeterministicLabelPropagationRefiner final : public IRefiner {
const HyperedgeID num_hyperedges,
const Context& context) :
context(context),
cumulative_node_weights(num_hypernodes),
compute_gains(context),
cumulative_node_weights(num_hypernodes),
moves(num_hypernodes),
sorted_moves(num_hypernodes),
prng(context.partition.seed),
Expand Down Expand Up @@ -130,8 +130,8 @@ class DeterministicLabelPropagationRefiner final : public IRefiner {

const Context& context;
tbb::enumerable_thread_specific<Km1GainComputer> compute_gains;
ds::BufferedVector<Move> moves;
vec<HypernodeWeight> cumulative_node_weights;
ds::BufferedVector<Move> moves;
vec<Move> sorted_moves;

std::mt19937 prng;
Expand Down

0 comments on commit e06ee02

Please sign in to comment.