Skip to content

Commit

Permalink
Fix: init ICtx in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecsFerra committed Sep 27, 2024
1 parent 3f079da commit 7db0376
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/tasty/SimplifyPLE.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ simplify' = PLE.simplify emptyKnowledge emptyICtx
emptyICtx :: PLE.ICtx
emptyICtx =
ICtx
{ icAssms = S.empty, -- S.HashSet Pred
icCands = S.empty, -- :: S.HashSet Expr
icEquals = S.empty, -- :: EvAccum
icSimpl = SM.empty, -- :: !ConstMap
icSubcId = Nothing, -- :: Maybe SubcId
icANFs = [] -- :: [[(Symbol, SortedReft)]]
{ icAssms = S.empty, -- S.HashSet Pred
icCands = S.empty, -- :: S.HashSet Expr
icEquals = S.empty, -- :: EvAccum
icSimpl = SM.empty, -- :: !ConstMap
icSubcId = Nothing, -- :: Maybe SubcId
icANFs = [], -- :: [[(Symbol, SortedReft)]]
icSMTRewrites = mempty -- :: M.HashMap Symbol Expr
}

0 comments on commit 7db0376

Please sign in to comment.