Skip to content

Commit

Permalink
Backport PR #18469: Delay the lookup of csdp until the tool is actual…
Browse files Browse the repository at this point in the history
…ly needed.
  • Loading branch information
SkySkimmer committed May 13, 2024
2 parents 8cf7d4e + 0da7e0b commit ca44371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/micromega/coq_micromega.ml
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 ca44371

Please sign in to comment.