Skip to content

Commit

Permalink
Further trimming of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed Nov 6, 2024
1 parent f5fe211 commit 8cc319a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Data/SBV/Control/Query.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ module Data.SBV.Control.Query (
send, ask, retrieveResponse
, CheckSatResult(..), checkSat, checkSatUsing, checkSatAssuming, checkSatAssumingWithUnsatisfiableSet
, getUnsatCore, getProof, getInterpolantMathSAT, getInterpolantZ3, getAbduct, getAbductNext, getAssignment, getOption
, freshVar, freshVar_
, push, pop, getAssertionStackDepth
, inNewAssertionStack, echo, caseSplit, resetAssertions, exit, getAssertions, getValue, getUninterpretedValue, getModel, getSMTResult
, inNewAssertionStack, echo, caseSplit, resetAssertions, exit, getAssertions, getUninterpretedValue, getModel, getSMTResult
, getLexicographicOptResults, getIndependentOptResults, getParetoOptResults, getAllSatResult, getUnknownReason, getObservables, ensureSat
, SMTOption(..), SMTInfoFlag(..), SMTErrorBehavior(..), SMTReasonUnknown(..), SMTInfoResponse(..), getInfo
, Logic(..), Assignment(..)
Expand Down
5 changes: 1 addition & 4 deletions Data/SBV/Trans/Control.hs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@ module Data.SBV.Trans.Control (
-- * User queries
ExtractIO(..), MonadQuery(..), QueryT, Query, query

-- * Create a fresh variable
, freshVar_, freshVar

-- * Checking satisfiability
, CheckSatResult(..), checkSat, ensureSat, checkSatUsing, checkSatAssuming, checkSatAssumingWithUnsatisfiableSet

-- * Querying the solver
-- ** Extracting values
, getValue, getFunction, getUninterpretedValue, getModel, getAssignment, getSMTResult, getUnknownReason, getObservables
, getFunction, getUninterpretedValue, getModel, getAssignment, getSMTResult, getUnknownReason, getObservables

-- ** Extracting the unsat core
, getUnsatCore
Expand Down
2 changes: 2 additions & 0 deletions Documentation/SBV/Examples/Transformers/SymbolicEval.hs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

module Documentation.SBV.Examples.Transformers.SymbolicEval where

import Data.SBV (getValue)

import Control.Monad.Except (Except, ExceptT, MonadError, mapExceptT, runExceptT, throwError)
import Control.Monad.Identity (Identity(runIdentity))
import Control.Monad.IO.Class (MonadIO)
Expand Down

0 comments on commit 8cc319a

Please sign in to comment.