@@ -18,7 +18,6 @@ module Kore.Rewrite.RewriteStep (
18
18
import Control.Monad.State.Strict qualified as State
19
19
import Control.Monad.Trans.Class qualified as Monad.Trans
20
20
import Data.Sequence qualified as Seq
21
- import Data.Text qualified as Text
22
21
import Kore.Attribute.Label (
23
22
Label (.. ),
24
23
)
@@ -43,7 +42,6 @@ import Kore.Internal.TermLike as TermLike
43
42
import Kore.Log.DebugAppliedRewriteRules (
44
43
debugAppliedRewriteRules ,
45
44
)
46
- import Kore.Log.DebugContext
47
45
import Kore.Log.DebugCreatedSubstitution (debugCreatedSubstitution )
48
46
import Kore.Log.DebugRewriteRulesRemainder (debugRewriteRulesRemainder )
49
47
import Kore.Log.DebugRewriteTrace (
@@ -87,7 +85,6 @@ import Kore.Simplify.Simplify (
87
85
simplifyCondition ,
88
86
)
89
87
import Kore.Substitute
90
- import Log
91
88
import Logic (
92
89
LogicT ,
93
90
)
@@ -301,7 +298,7 @@ finalizeRulesParallel
301
298
remainderPredicate = Remainder. remainder' unifications
302
299
-- FIXME pass the actual unified rules, rather than their count, to the debug function
303
300
debugRewriteRulesRemainder initial (length unifiedRules) remainderPredicate
304
- inContext " combined-remainder" $ logInfo ( Text. pack $ show remainderPredicate)
301
+ liftIO $ print $ " combined-remainder " <> show remainderPredicate
305
302
-- evaluate the remainder predicate to make sure it is actually satisfiable
306
303
SMT. evalPredicate
307
304
(ErrorDecidePredicateUnknown $ srcLoc Nothing )
0 commit comments