File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/org/sosy_lab/java_smt/solvers/mathsat5 Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 3737import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_BV_UREM ;
3838import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_BV_XOR ;
3939import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_BV_ZEXT ;
40+ import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_DIVIDE ;
4041import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_EQ ;
4142import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_FLOOR ;
4243import static org .sosy_lab .java_smt .solvers .mathsat5 .Mathsat5NativeApi .MSAT_TAG_FP_ABS ;
@@ -405,6 +406,8 @@ private FunctionDeclarationKind getDeclarationKind(long pF) {
405406
406407 case MSAT_TAG_TIMES :
407408 return FunctionDeclarationKind .MUL ;
409+ case MSAT_TAG_DIVIDE :
410+ return FunctionDeclarationKind .DIV ;
408411 case MSAT_TAG_PLUS :
409412 return FunctionDeclarationKind .ADD ;
410413 case MSAT_TAG_LEQ :
You can’t perform that action at this time.
0 commit comments