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 4c7a5d0 commit 894f51fCopy full SHA for 894f51f
kore/src/Kore/Rewrite/SMT/Translate.hs
@@ -539,6 +539,12 @@ backTranslateWith
539
, Just koreSym <- Map.lookup fct reverseMetadata = do
540
args <- mapM backTranslate rest
541
pure $ TermLike.mkApplySymbol koreSym args
542
+ | ((Atom "-") : rest) <- xs =
543
+ do
544
+ args <- mapM backTranslate rest
545
+ -- FIXME use the unary minus from reverseMetadata, make sure it's there,
546
+ -- and don't use head
547
+ pure (head args)
548
| otherwise =
549
throwError "backTranslate.List-case: implement me!"
550
backTranslate String{} =
0 commit comments