Skip to content

Commit

Permalink
Removed import Debug.Trace, and some extra blank lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSheard committed Sep 15, 2020
1 parent df8dff8 commit fdbc43a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

module Control.Iterate.SetAlgebraInternal where

import Debug.Trace
import Codec.CBOR.Decoding(decodeListLenOf)
import Codec.CBOR.Encoding(encodeListLen)
import Cardano.Binary
Expand Down Expand Up @@ -432,7 +431,7 @@ intersectDomP p Tip _ = Tip
intersectDomP p _ Tip = Tip
intersectDomP p t1 t2@(Bin _ k v l2 r2) =
if mb && (p k v)
then link k v l1l2 r1r2
then link k v l1l2 r1r2
else link2 l1l2 r1r2
where
!(l1, mb, r1) = splitMember k t1
Expand Down Expand Up @@ -534,7 +533,7 @@ data Exp t where
-- deriving instance NFData t => NFData(Exp t)

-- =======================================================================================================
-- When we build an Exp, we want to make sure all Sets with one element become (Exp SingleR (SetSingle x))
-- When we build an Exp, we want to make sure all Sets with one element become (SetSingleton x)
-- so we use these 'smart' constructors.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import Test.Tasty
import Test.Tasty.HUnit
import Test.Tasty.QuickCheck(testProperty)
import Test.Tasty(defaultMain)

-- =========================================================
-- Some examples of Exp and tests
-- let's build a few things to test with
Expand Down

0 comments on commit fdbc43a

Please sign in to comment.