From 157559045f477e443a3f965af6a1959f59930eb8 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 1 Feb 2019 19:58:07 +0000 Subject: Fix imports --- src/VeriFuzz/General.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/VeriFuzz/General.hs') diff --git a/src/VeriFuzz/General.hs b/src/VeriFuzz/General.hs index dbd1da0..1d2f183 100644 --- a/src/VeriFuzz/General.hs +++ b/src/VeriFuzz/General.hs @@ -1,5 +1,5 @@ {-| -Module : VeriFuzz.Simulator.General +Module : VeriFuzz.General Description : Class of the simulator. Copyright : (c) 2018-2019, Yann Herklotz Grave License : BSD-3 @@ -10,7 +10,7 @@ Portability : POSIX Class of the simulator and the synthesize tool. -} -module VeriFuzz.Simulator.General where +module VeriFuzz.General where import Data.Bits (shiftL) import Data.ByteString (ByteString) @@ -20,7 +20,7 @@ import qualified Data.Text as T import Prelude hiding (FilePath) import Shelly import System.FilePath.Posix (takeBaseName) -import VeriFuzz.Verilog.AST +import VeriFuzz.AST -- | Simulator class. class Simulator a where -- cgit