-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluator crash #1377
Comments
Still crashing as of |
After def ++$2(A$124: (Object$0) => Boolean, B$80: (x$122: Object$0) => { b$20: Boolean | ((A$124(x$122) ==> b$20)): @dropConjunct }, thiss$4: { x$123: Object$0 | (isList$0(x$123, A$124)): @dropConjunct }, that$19: { x$125: Object$0 | (isList$0(x$125, B$80)): @dropConjunct }): { x$127: Object$0 | (isList$0(x$127, B$80)): @dropConjunct } = {
thiss$4 match {
case Nil$2() =>
that$19
case Cons$2(a$24, as$1) =>
::$3(B$80, B$80, ++$2(A$124, B$80, as$1, that$19), a$24)
}
} ensuring {
// This postcondition is added by TypeEncoding relating ++$2 (this definition) with ++$3 (choose variant)
(res$44: { x$127: Object$0 | (isList$0(x$127, B$80)): @dropConjunct }) =>
((res$44 == thiss$4 ++$3 that$19)): @dropConjunct
// ^^^^
// choose variant
}
@derived(++$2)
def ++$3(thiss$8: Object$0, that$20: Object$0): Object$0 = choose$3(thiss$8, that$20)
@derived(++$3)
@DropVCs
def choose$3(thiss$13: Object$0, that$21: Object$0): Object$0 = choose(((res$49: Object$0) @DropVCs) => true) When However, since the postcondition is only there to help verification and is not supposed to be verified (due to being annotated with |
The
--eval
crashes onlist2
evaluation inside the++
method.The text was updated successfully, but these errors were encountered: