@@ -98,7 +98,7 @@ test_evaluateFunction =
98
98
unsafePerformIO
99
99
. runNoLoggingT
100
100
. (fst <$> )
101
- . evaluateTerm NoCollectEquationTraces direction funDef Nothing Nothing
101
+ . evaluateTerm direction funDef Nothing Nothing
102
102
103
103
isTooManyIterations (Left (TooManyIterations _n _ _)) = pure ()
104
104
isTooManyIterations (Left err) = assertFailure $ " Unexpected error " <> show err
@@ -129,7 +129,7 @@ test_simplify =
129
129
unsafePerformIO
130
130
. runNoLoggingT
131
131
. (fst <$> )
132
- . evaluateTerm NoCollectEquationTraces direction simplDef Nothing Nothing
132
+ . evaluateTerm direction simplDef Nothing Nothing
133
133
a = var " A" someSort
134
134
135
135
test_simplifyPattern :: TestTree
@@ -159,7 +159,7 @@ test_simplifyPattern =
159
159
unsafePerformIO
160
160
. runNoLoggingT
161
161
. (fst <$> )
162
- . evaluatePattern NoCollectEquationTraces simplDef Nothing Nothing mempty
162
+ . evaluatePattern simplDef Nothing Nothing mempty
163
163
a = var " A" someSort
164
164
165
165
test_simplifyConstraint :: TestTree
@@ -229,7 +229,7 @@ test_simplifyConstraint =
229
229
unsafePerformIO
230
230
. runNoLoggingT
231
231
. (fst <$> )
232
- . simplifyConstraint NoCollectEquationTraces testDefinition Nothing Nothing mempty
232
+ . simplifyConstraint testDefinition Nothing Nothing mempty
233
233
234
234
test_errors :: TestTree
235
235
test_errors =
@@ -242,7 +242,7 @@ test_errors =
242
242
loopTerms =
243
243
[f $ app con1 [a], f $ app con2 [a], f $ app con3 [a, a], f $ app con1 [a]]
244
244
isLoop loopTerms . unsafePerformIO . runNoLoggingT $
245
- fst <$> evaluateTerm NoCollectEquationTraces TopDown loopDef Nothing Nothing subj
245
+ fst <$> evaluateTerm TopDown loopDef Nothing Nothing subj
246
246
]
247
247
where
248
248
isLoop ts (Left (EquationLoop ts')) = ts @?= ts'
0 commit comments