Hoogle Search

Within LTS Haskell 24.26 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. KBool :: Kind

    sbv Data.SBV.Internals

    No documentation available.

  2. PseudoBoolean :: PBOp -> Op

    sbv Data.SBV.Internals

    No documentation available.

  3. QuantifiedBool :: String -> Op

    sbv Data.SBV.Internals

    No documentation available.

  4. class QuantifiedBool a

    sbv Data.SBV.Internals

    A value that can be used as a quantified boolean

  5. type SBool = SBV Bool

    sbv Data.SBV.Internals

    A symbolic boolean/bit

  6. cvToBool :: CV -> Bool

    sbv Data.SBV.Internals

    Convert a CV to a Haskell boolean (NB. Assumes input is well-kinded)

  7. fromBool :: Bool -> SBool

    sbv Data.SBV.Internals

    Conversion from Bool to SBool

  8. isBoolean :: HasKind a => a -> Bool

    sbv Data.SBV.Internals

    No documentation available.

  9. quantifiedBool :: QuantifiedBool a => a -> SBool

    sbv Data.SBV.Internals

    Turn a quantified boolean into a regular boolean. That is, this function turns an exists/forall quantified formula to a simple boolean that can be used as a regular boolean value. An example is:

    quantifiedBool $ \(Forall x) (Exists y) -> y .> (x :: SInteger)
    
    is equivalent to sTrue. You can think of this function as performing quantifier-elimination: It takes a quantified formula, and reduces it to a simple boolean that is equivalent to it, but has no quantifiers.

  10. supportsPseudoBooleans :: SolverCapabilities -> Bool

    sbv Data.SBV.Internals

    Supports pseudo-boolean operations?

Page 136 of many | Previous | Next