We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TooManyIterations
1 parent 1103673 commit 49516fcCopy full SHA for 49516fc
booster/library/Booster/Pattern/Rewrite.hs
@@ -761,6 +761,9 @@ performRewrite doTracing def mLlvmLibrary mSolver mbMaxDepth cutLabels terminalL
761
Left r@UndefinedTerm{} -> do
762
emitRewriteTrace $ RewriteSimplified (Just r)
763
pure Nothing
764
+ Left r@(TooManyIterations _ _ end) -> do
765
+ emitRewriteTrace $ RewriteSimplified (Just r)
766
+ pure $ Just p{term = end}
767
Left other -> do
768
emitRewriteTrace $ RewriteSimplified (Just other)
769
pure $ Just p
0 commit comments