[commit: ghc] wip/ext-solver: Fix definition of `push`; add a TcS wrapper form `extSolProve`. (bb9486f)
git at git.haskell.org
git at git.haskell.org
Tue Apr 29 06:33:14 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/ext-solver
Link : http://ghc.haskell.org/trac/ghc/changeset/bb9486f1c4aa74431796b510863301404a93ae3a/ghc
>---------------------------------------------------------------
commit bb9486f1c4aa74431796b510863301404a93ae3a
Author: Iavor S. Diatchki <iavor.diatchki at gmail.com>
Date: Mon Apr 28 23:31:37 2014 -0700
Fix definition of `push`; add a TcS wrapper form `extSolProve`.
>---------------------------------------------------------------
bb9486f1c4aa74431796b510863301404a93ae3a
compiler/typecheck/TcSMonad.lhs | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/compiler/typecheck/TcSMonad.lhs b/compiler/typecheck/TcSMonad.lhs
index 6a43511..2c2c93c 100644
--- a/compiler/typecheck/TcSMonad.lhs
+++ b/compiler/typecheck/TcSMonad.lhs
@@ -83,7 +83,8 @@ module TcSMonad (
Untouchables, isTouchableMetaTyVarTcS, isFilledMetaTyVar_maybe,
zonkTyVarsAndFV,
- TN.ExtSolRes(..), extSolSend, extSolPush, extSolPop, extSolCheck,
+ TN.ExtSolRes(..), extSolAssume, extSolProve, extSolCheck,
+ extSolPush, extSolPop,
getDefaultInfo, getDynFlags, getGlobalRdrEnvTcS,
@@ -1069,9 +1070,8 @@ runTcSWithEvBinds ev_binds_var tcs
; step_count <- TcM.newTcRef 0
; inert_var <- TcM.newTcRef is
- ; extSol <- liftIO $
- TN.newExternalSolver "cvc4" [ "--incremental"
- , "--lang=smtlib2" ]
+ ; extSol <- liftIO $ TN.newExternalSolver "cvc4"
+ [ "--incremental", "--lang=smtlib2" ]
; let env = TcSEnv { tcs_ev_binds = ev_binds_var
, tcs_ty_binds = ty_binds_var
@@ -1924,11 +1924,14 @@ Interaction with an External SMT Solver
---------------------------------------
\begin{code}
-extSolSend :: Ct -> TcS Bool
-extSolSend ct = withExtSol (\s -> TN.extSolSend s ct)
+extSolAssume :: Ct -> TcS Bool
+extSolAssume ct = withExtSol (\s -> TN.extSolAssume s ct)
+
+extSolProve :: Ct -> TcS Bool
+extSolProve ct = withExtSol (\s -> TN.extSolProve s ct)
extSolPush :: TcS ()
-extSolPush = withExtSol TN.extSolPop
+extSolPush = withExtSol TN.extSolPush
extSolPop :: TcS ()
extSolPop = withExtSol TN.extSolPop
More information about the ghc-commits
mailing list