Skip to content

Commit

Permalink
Expose HasSignAndSize through Internals
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed May 26, 2011
1 parent ce7bcd1 commit 57ff77c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Data/SBV/Internals.hs
Expand Up @@ -16,15 +16,15 @@ module Data.SBV.Internals (
-- * Running symbolic programs /manually/
Result, runSymbolic
-- * Other internal structures useful for low-level programming
, SBV(..), CW, mkConstCW, genFree, genFree_
, SBV(..), HasSignAndSize(..), CW, mkConstCW, genFree, genFree_
-- * Compilation to C
, compileToC', compileToCLib', CgPgmBundle(..), CgPgmKind(..)
-- * Integrating with the test framework
-- $testFramework
, module Data.SBV.Utils.SBVTest
) where

import Data.SBV.BitVectors.Data (Result, runSymbolic, SBV(..), CW, mkConstCW)
import Data.SBV.BitVectors.Data (Result, runSymbolic, SBV(..), HasSignAndSize(..), CW, mkConstCW)
import Data.SBV.BitVectors.Model (genFree, genFree_)
import Data.SBV.Compilers.C (compileToC', compileToCLib')
import Data.SBV.Compilers.CodeGen (CgPgmBundle(..), CgPgmKind(..))
Expand Down

0 comments on commit 57ff77c

Please sign in to comment.