Skip to content

Commit 9718a18

Browse files
Revert "Bitwuzla: Patch handling of bitvector rotations in the formula visitor"
This reverts commit 328a5ec.
1 parent 524cc64 commit 9718a18

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/org/sosy_lab/java_smt/solvers/bitwuzla/BitwuzlaFormulaCreator.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,10 +326,6 @@ private FunctionDeclarationKind getDeclarationKind(Term term) {
326326
return FunctionDeclarationKind.FP_CASTTO_UBV;
327327
} else if (kind.equals(Kind.BV_XOR)) {
328328
return FunctionDeclarationKind.BV_XOR;
329-
} else if (ImmutableList.of(Kind.BV_ROL, Kind.BV_ROLI, Kind.BV_ROR, Kind.BV_RORI)
330-
.contains(kind)) {
331-
// Rotations are not yet supported by FunctionDeclarationKind
332-
return FunctionDeclarationKind.OTHER;
333329
}
334330
throw new UnsupportedOperationException("Can not discern formula kind " + kind);
335331
}

0 commit comments

Comments
 (0)