Skip to content

Commit

Permalink
Don't export new SMT backend by default
Browse files Browse the repository at this point in the history
(Until we figure out how to fix the haddock github workflow)
  • Loading branch information
Matthew Naylor committed May 20, 2024
1 parent 5cf4465 commit dbfc93a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
ghc-version: '9.2.1'
- name: Generate documentation
run: |
cabal install --lib async
haddock --source-module=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/tree/$GITHUB_SHA/%{FILE} \
--source-entity=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/tree/$GITHUB_SHA/%{FILE}#L%{LINE} \
--title=blarney \
Expand Down
13 changes: 7 additions & 6 deletions Haskell/Blarney/Backend.hs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ module Blarney.Backend (
, verifyWith
, verifyToDepth
-- * New, improved SMT backend
, Verbosity(..)
, checkAuto
, checkFixed
, debugAuto
, debugFixed
--Currently not exported by default
--, Verbosity(..)
--, checkAuto
--, checkFixed
--, debugAuto
--, debugFixed
-- * Simulation backend
, module Blarney.Backend.Simulation
, simulate
Expand All @@ -54,7 +55,7 @@ import Blarney.Netlist
import Blarney.Backend.Simulation
import Blarney.Backend.Verilog
import Blarney.Backend.SMT
import Blarney.Backend.NewSMT (Verbosity(..), checkAuto, checkFixed, debugAuto, debugFixed)
--import Blarney.Backend.NewSMT (Verbosity(..), checkAuto, checkFixed, debugAuto, debugFixed)

-- Verilog backend
--------------------------------------------------------------------------------
Expand Down

0 comments on commit dbfc93a

Please sign in to comment.