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.
1 parent df05038 commit 8304ec1Copy full SHA for 8304ec1
kore/src/Kore/Rewrite/SMT/Translate.hs
@@ -563,8 +563,11 @@ backTranslateWith
563
. Map.map AST.symbolData
564
$ Map.filter (not . isBuiltin . AST.symbolDeclaration) symbols
565
566
- isBuiltin :: AST.KoreSymbolDeclaration a b -> Bool
567
- isBuiltin AST.SymbolBuiltin{} = True
+ isBuiltin :: AST.KoreSymbolDeclaration SExpr SExpr -> Bool
+ isBuiltin (AST.SymbolBuiltin (AST.IndirectSymbolDeclaration{name})) =
568
+ case name of
569
+ Atom "-" -> False
570
+ _ -> True
571
isBuiltin _other = False
572
573
symbolFrom :: Id -> Symbol
0 commit comments