Skip to content

Commit 94d619f

Browse files
parallel,partitioning: disable by default
Signed-off-by: Norbert Manthey <[email protected]>
1 parent 9bed8ae commit 94d619f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

minisat/parallel/ParSolver.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static BoolOption opt_primary_controlled_sync(_cat, "primary-sync", "sync after
4747
static IntOption
4848
opt_base_sync_accesses(_cat, "init-accesses", "Number of 'memory accesses' before first sync", 32000000, IntRange(0, INT32_MAX));
4949
static IntOption
50-
opt_part_delay_syncs(_cat, "partition-delay", "Number of syncs before starting partitioning", 1000, IntRange(-1, INT32_MAX));
50+
opt_part_delay_syncs(_cat, "partition-delay", "Number of syncs before starting partitioning", -1, IntRange(-1, INT32_MAX));
5151
static IntOption opt_part_per_node(_cat, "splits", "Partition a formula into X new partitions", 8, IntRange(2, INT32_MAX));
5252
static IntOption
5353
opt_thread0_extra_steps(_cat, "thread0-extra", "Number of extra 'memory accesses' for thread 0", 1000, IntRange(0, INT32_MAX));

0 commit comments

Comments
 (0)