Skip to content

Commit e250672

Browse files
Fix merge artifact with option check
1 parent f85eea0 commit e250672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/maingoblint.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ let check_arguments () =
164164
"trans.activated: to increase the precision of 'remove_dead_code' transform, disable "
165165
^ String.concat " and " @@ List.map (fun s -> "'" ^ s ^ "'") imprecise_options)
166166
);
167-
if get_bool "solvers.td3.space" && get_bool "solvers.td3.narrow-globs.enabled" then fail "solvers.td3.space is incompatible with solvers.td3.narrow-globs.enabled";
167+
if get_bool "solvers.td3.space" && get_bool "solvers.td3.remove-wpoint" then fail "solvers.td3.space is incompatible with solvers.td3.remove-wpoint";
168168
if get_bool "solvers.td3.space" && get_string "solvers.td3.side_widen" = "sides-local" then fail "solvers.td3.space is incompatible with solvers.td3.side_widen = 'sides-local'";
169169
if get_bool "solvers.td3.space" && get_bool "solvers.td3.narrow-globs.enabled" then fail "solvers.td3.space is incompatible with solvers.td3.narrow-globs.enabled";
170170
if (get_bool "incremental.load" || get_bool "incremental.save") && get_bool "solvers.td3.narrow-globs.enabled" then (

0 commit comments

Comments
 (0)