Skip to content

Commit

Permalink
cryptol-remote-api: Don't use verbose SBV settings (#1379)
Browse files Browse the repository at this point in the history
We should try to match Cryptol's default settings when invoking the remote API,
but the `pcVerbose` value (`True`) didn't match the defaults. Changing this to
`False` should fix #1378. There is a separate question of whether remote API
users should be able to change this default, but for the time being, let's at
least be consistent between Cryptol's settings and the remote API's settings.
  • Loading branch information
RyanGlScott authored Jul 8, 2022
1 parent c6a795c commit 69f07cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptol-remote-api/src/CryptolServer/Sat.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ proveSat (ProveSatParams queryType (ProverName proverName) jsonExpr hConsing) =
ProverCommand
{ pcQueryType = queryType
, pcProverName = proverName
, pcVerbose = True
, pcVerbose = False
, pcProverStats = timing
, pcExtraDecls = decls
, pcSmtFile = Nothing
Expand Down

0 comments on commit 69f07cc

Please sign in to comment.