Skip to content

Commit

Permalink
parallel,partitioning: disable by default
Browse files Browse the repository at this point in the history
Signed-off-by: Norbert Manthey <[email protected]>
  • Loading branch information
conp-solutions committed Apr 28, 2023
1 parent 077d618 commit 9534f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minisat/parallel/ParSolver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static BoolOption opt_primary_controlled_sync(_cat, "primary-sync", "sync after
static IntOption
opt_base_sync_accesses(_cat, "init-accesses", "Number of 'memory accesses' before first sync", 32000000, IntRange(0, INT32_MAX));
static IntOption
opt_part_delay_syncs(_cat, "partition-delay", "Number of syncs before starting partitioning", 1000, IntRange(-1, INT32_MAX));
opt_part_delay_syncs(_cat, "partition-delay", "Number of syncs before starting partitioning", -1, IntRange(-1, INT32_MAX));
static IntOption opt_part_per_node(_cat, "splits", "Partition a formula into X new partitions", 8, IntRange(2, INT32_MAX));
static IntOption
opt_thread0_extra_steps(_cat, "thread0-extra", "Number of extra 'memory accesses' for thread 0", 1000, IntRange(0, INT32_MAX));
Expand Down

0 comments on commit 9534f3d

Please sign in to comment.