mkAllcharRe with compilation error #7555
Unanswered
yvanlabiche
asked this question in
Q&A
Replies: 1 comment
-
Looking a bit further into it, although the mkAllcharRE() method is part of the documentation |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Good day.
I am using the Java API and I get a compilation error with the provided example, specifically the statement
Expr c = ctx.mkConcat(ctx.mkToRe(ctx.mkString("abc")),
ctx.mkFullRe(ctx.mkReSort(ctx.mkStringSort())),
ctx.mkEmptyRe(ctx.mkReSort(ctx.mkStringSort())),
ctx.mkAllcharRe(ctx.mkReSort(ctx.mkStringSort())),
ctx.mkToRe(ctx.mkString("d")));
in the stringExample function.
Javac complains with the use of mkAllcharRe.
error: cannot find symbol
System.out.println(ctx.mkAllcharRe(ctx.mkReSort(ctx.mkStringSort())));
^
symbol: method mkAllcharRe(ReSort<SeqSort>)
location: variable ctx of type Context
It seems to me all the types match and I do not understand why Javac compains.
Any help will be welcomed.
Yvan.
Beta Was this translation helpful? Give feedback.
All reactions