mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
replace uint by long
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e4b9080165
commit
87c3b5ee51
|
@ -2026,7 +2026,7 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Take the lower and upper-bounded Kleene star of a regular expression.
|
* Take the lower and upper-bounded Kleene star of a regular expression.
|
||||||
*/
|
*/
|
||||||
public ReExpr mkLoop(ReExpr re, uint lo, uint hi)
|
public ReExpr mkLoop(ReExpr re, long lo, long hi)
|
||||||
{
|
{
|
||||||
return (ReExpr) Expr.create(this, Native.mkReLoop(nCtx(), re.getNativeObject(), lo, hi));
|
return (ReExpr) Expr.create(this, Native.mkReLoop(nCtx(), re.getNativeObject(), lo, hi));
|
||||||
}
|
}
|
||||||
|
@ -2034,7 +2034,7 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Take the lower-bounded Kleene star of a regular expression.
|
* Take the lower-bounded Kleene star of a regular expression.
|
||||||
*/
|
*/
|
||||||
public ReExpr mkLoop(ReExpr re, uint lo)
|
public ReExpr mkLoop(ReExpr re, long lo)
|
||||||
{
|
{
|
||||||
return (ReExpr) Expr.create(this, Native.mkReLoop(nCtx(), re.getNativeObject(), lo, 0));
|
return (ReExpr) Expr.create(this, Native.mkReLoop(nCtx(), re.getNativeObject(), lo, 0));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue