Skip to content

Commit

Permalink
Merge pull request #103 from ftsrg/arraywrite-bugfix
Browse files Browse the repository at this point in the history
Fixed typo in Z3TermTransformer
  • Loading branch information
mondokm authored Feb 11, 2021
2 parents 9752c06 + 46026e8 commit b1fa367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {

allprojects {
group = "hu.bme.mit.inf.theta"
version = "2.9.2"
version = "2.9.3"

apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ private TriFunction<com.microsoft.z3.Expr, Model, List<Decl<?>>, Expr<?>> exprTe
checkArgument(args.length == 3, "Number of arguments must be three");
final Expr<?> op1 = transform(args[0], model, vars);
final Expr<?> op2 = transform(args[1], model, vars);
final Expr<?> op3 = transform(args[1], model, vars);
final Expr<?> op3 = transform(args[2], model, vars);
return function.apply(op1, op2, op3);
};
}
Expand Down

0 comments on commit b1fa367

Please sign in to comment.