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 01732d2 commit 40bea36Copy full SHA for 40bea36
src/org/sosy_lab/java_smt/basicimpl/parserInterpreter/Visitor.java
@@ -968,7 +968,7 @@ public Object visitMultiterm(MultitermContext ctx) {
968
return Objects.requireNonNull(imgr).distinct(integerOperands);
969
}
970
} catch (Exception e) {
971
- throw new ParserException("Operands for " + operator + " need to be of numeral type");
+ throw new UnsupportedOperationException("JavaSMT support distinct only for numeral types!");
972
973
} else {
974
throw new ParserException(operator + " takes at least one numeral operand as input. ");
0 commit comments