Skip to content

Commit

Permalink
Merge PR coq#18469: Delay the lookup of csdp until the tool is actual…
Browse files Browse the repository at this point in the history
…ly needed.

Reviewed-by: ppedrot
Co-authored-by: ppedrot <[email protected]>
  • Loading branch information
coqbot-app[bot] and ppedrot authored Jan 9, 2024
2 parents 26d0505 + 8eb6ef7 commit 1d4d5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/micromega/coq_micromega.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2194,7 +2194,7 @@ end)
*)

let require_csdp =
if System.is_in_system_path "csdp" then lazy () else lazy (raise CsdpNotFound)
lazy (if System.is_in_system_path "csdp" then () else raise CsdpNotFound)

let really_call_csdpcert :
provername -> micromega_polys -> Sos_types.positivstellensatz option =
Expand Down

0 comments on commit 1d4d5c8

Please sign in to comment.