@@ -621,7 +621,7 @@ namespace mt_kahypar {
621621 ((initial_partitioning ? " i-r-rebalancing-rounds" : " r-rebalancing-rounds" ),
622622 po::value<size_t >((!initial_partitioning ? &context.refinement .rebalancing .max_rounds :
623623 &context.initial_partitioning .refinement .rebalancing .max_rounds ))->value_name (
624- " <int>" )->default_value (0 ),
624+ " <int>" )->default_value (10 ),
625625 " Multiconstraint: maximum number of rebalancing rounds." )
626626 ((initial_partitioning ? " i-r-rebalancing-any-progress" : " r-rebalancing-any-progress" ),
627627 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .allow_any_progress :
@@ -671,7 +671,7 @@ namespace mt_kahypar {
671671 ((initial_partitioning ? " i-r-reduced-target-weight-block" : " r-reduced-target-weight-block" ),
672672 po::value<double >((!initial_partitioning ? &context.refinement .rebalancing .reduced_weight_from_block :
673673 &context.initial_partitioning .refinement .rebalancing .reduced_weight_from_block ))->value_name (
674- " <double>" )->default_value (0.0 ),
674+ " <double>" )->default_value (0.0025 ),
675675 " Multiconstraint: factor of block weight for target reduction of L1 metric." )
676676 ((initial_partitioning ? " i-r-rebalancing-use-deadlock-fallback" : " r-rebalancing-use-deadlock-fallback" ),
677677 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .use_deadlock_fallback :
@@ -686,7 +686,7 @@ namespace mt_kahypar {
686686 ((initial_partitioning ? " i-r-rebalancing-use-binpacking-fallback" : " r-rebalancing-use-binpacking-fallback" ),
687687 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .use_binpacking_fallback :
688688 &context.initial_partitioning .refinement .rebalancing .use_binpacking_fallback ))->value_name (
689- " <bool>" )->default_value (true ),
689+ " <bool>" )->default_value (false ),
690690 " Multiconstraint: whether to use a binpacking fallback if rebalancing does not succeed." )
691691 ((initial_partitioning ? " i-r-rebalancing-binpacking-fallback-only-toplevel" : " r-rebalancing-binpacking-fallback-only-toplevel" ),
692692 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .binpacking_fallback_only_toplevel :
@@ -696,7 +696,7 @@ namespace mt_kahypar {
696696 ((initial_partitioning ? " i-r-rebalancing-fallback-use-locking" : " r-rebalancing-fallback-use-locking" ),
697697 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .fallback_use_locking :
698698 &context.initial_partitioning .refinement .rebalancing .fallback_use_locking ))->value_name (
699- " <bool>" )->default_value (true ),
699+ " <bool>" )->default_value (false ),
700700 " Multiconstraint: whether to use locking for the 'deadlock breaking' fallback." )
701701 ((initial_partitioning ? " i-r-rebalancing-binpacking-use-locking" : " r-rebalancing-binpacking-use-locking" ),
702702 po::value<bool >((!initial_partitioning ? &context.refinement .rebalancing .binpacking_use_locking :
@@ -771,7 +771,7 @@ namespace mt_kahypar {
771771 ((initial_partitioning ? " i-r-rebalancing-fallback-rounds" : " r-rebalancing-fallback-rounds" ),
772772 po::value<size_t >((!initial_partitioning ? &context.refinement .rebalancing .fallback_rounds :
773773 &context.initial_partitioning .refinement .rebalancing .fallback_rounds ))->value_name (
774- " <size_t>" )->default_value (3 ),
774+ " <size_t>" )->default_value (1 ),
775775 " Multiconstraint: maximum number of attempted 'deadlock' fallback rounds" )
776776 ((initial_partitioning ? " i-r-rebalancing-binpacking-tasks" : " r-rebalancing-binpacking-tasks" ),
777777 po::value<size_t >((!initial_partitioning ? &context.refinement .rebalancing .bin_packing_tasks :
0 commit comments