Skip to content

Commit

Permalink
Fixed typo in Z3TermTransformer
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Feb 11, 2021
1 parent 9752c06 commit 020ba19
Showing 1 changed file with 1 addition and 1 deletion.
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 020ba19

Please sign in to comment.