We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f649c0b + 5611fcb commit 5f5c022Copy full SHA for 5f5c022
1 file changed
src/main/scala/viper/silver/ast/Program.scala
@@ -722,7 +722,7 @@ sealed abstract class RelOp(val op: String) extends BoolDomainFunc {
722
case object AddOp extends SumOp("+") with IntBinOp with IntDomainFunc
723
case object SubOp extends SumOp("-") with IntBinOp with IntDomainFunc
724
case object MulOp extends ProdOp("*") with IntBinOp with IntDomainFunc
725
-case object DivOp extends ProdOp("/") with IntBinOp with IntDomainFunc
+case object DivOp extends ProdOp("\\") with IntBinOp with IntDomainFunc
726
case object ModOp extends ProdOp("%") with IntBinOp with IntDomainFunc
727
728
// Arithmetic permission operators
0 commit comments