mirror of
https://github.com/Z3Prover/z3
synced 2025-06-12 17:06:14 +00:00
na
This commit is contained in:
parent
c25d710958
commit
ff5d210e81
1 changed files with 4 additions and 4 deletions
|
@ -2112,8 +2112,8 @@ public class Context implements AutoCloseable {
|
||||||
|
|
||||||
public BoolExpr MkStringLt(SeqSort<CharSort> s1, SeqSort<CharSort> s2)
|
public BoolExpr MkStringLt(SeqSort<CharSort> s1, SeqSort<CharSort> s2)
|
||||||
{
|
{
|
||||||
checkContextMatch(s1, s2);
|
checkContextMatch(s1, s2);
|
||||||
return new BoolExpr(this, Native.mkStrLt(nCtx(), s1.getNativeObject(), s2.getNativeObject()));
|
return new BoolExpr(this, Native.mkStrLt(nCtx(), s1.getNativeObject(), s2.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2121,8 +2121,8 @@ public class Context implements AutoCloseable {
|
||||||
*/
|
*/
|
||||||
public BoolExpr MkStringLe(SeqSort<CharSort> s1, SeqSort<CharSort> s2)
|
public BoolExpr MkStringLe(SeqSort<CharSort> s1, SeqSort<CharSort> s2)
|
||||||
{
|
{
|
||||||
checkContextMatch(s1, s2);
|
checkContextMatch(s1, s2);
|
||||||
return new BoolExpr(this, Native.mkStrLe(nCtx(), s1.getNativeObject(), s2.getNativeObject()));
|
return new BoolExpr(this, Native.mkStrLe(nCtx(), s1.getNativeObject(), s2.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue