grisette-0.11.0.0: src/Grisette/Internal/Core/Data/Class/EvalSym.hs
{-# OPTIONS_GHC -Wno-missing-import-lists #-}
-- |
-- Module : Grisette.Internal.Core.Data.Class.EvalSym
-- Copyright : (c) Sirui Lu 2021-2024
-- License : BSD-3-Clause (see the LICENSE file)
--
-- Maintainer : siruilu@cs.washington.edu
-- Stability : Experimental
-- Portability : GHC only
module Grisette.Internal.Core.Data.Class.EvalSym
( -- * Evaluating symbolic values with model
EvalSym (..),
evalSymToCon,
EvalSym1 (..),
evalSym1,
evalSymToCon1,
EvalSym2 (..),
evalSym2,
evalSymToCon2,
-- * Generic 'EvalSym'
EvalSymArgs (..),
GEvalSym (..),
genericEvalSym,
genericLiftEvalSym,
)
where
import Grisette.Internal.Internal.Decl.Core.Data.Class.EvalSym
import Grisette.Internal.Internal.Impl.Core.Data.Class.EvalSym ()