mirror of
https://github.com/Z3Prover/z3
synced 2026-02-28 19:01:29 +00:00
Fix congruence closure API naming in Python and Java bindings
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
9ef917c20d
commit
a3ea31cb42
2 changed files with 6 additions and 6 deletions
|
|
@ -472,7 +472,7 @@ public class Solver extends Z3Object {
|
|||
* @return The root expression of the congruence class
|
||||
* @throws Z3Exception
|
||||
**/
|
||||
public Expr<?> getCongruenceRoot(Expr<?> t)
|
||||
public Expr<?> congruenceRoot(Expr<?> t)
|
||||
{
|
||||
getContext().checkContextMatch(t);
|
||||
return Expr.create(getContext(),
|
||||
|
|
@ -487,7 +487,7 @@ public class Solver extends Z3Object {
|
|||
* @return The next expression in the congruence class
|
||||
* @throws Z3Exception
|
||||
**/
|
||||
public Expr<?> getCongruenceNext(Expr<?> t)
|
||||
public Expr<?> congruenceNext(Expr<?> t)
|
||||
{
|
||||
getContext().checkContextMatch(t);
|
||||
return Expr.create(getContext(),
|
||||
|
|
@ -502,7 +502,7 @@ public class Solver extends Z3Object {
|
|||
* @return An expression explaining the congruence between a and b
|
||||
* @throws Z3Exception
|
||||
**/
|
||||
public Expr<?> getCongruenceExplain(Expr<?> a, Expr<?> b)
|
||||
public Expr<?> congruenceExplain(Expr<?> a, Expr<?> b)
|
||||
{
|
||||
getContext().checkContextMatch(a);
|
||||
getContext().checkContextMatch(b);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue