mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
add regex power to API and for Java per request
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e1929ca9b9
commit
cb9dcb799f
|
@ -2203,7 +2203,7 @@ public class Context implements AutoCloseable {
|
|||
/**
|
||||
* Create power regular expression.
|
||||
*/
|
||||
public <R extends Sort> ReExpr<R> mkLoop(Expr<ReSort<R>> re, int n)
|
||||
public <R extends Sort> ReExpr<R> mkPower(Expr<ReSort<R>> re, int n)
|
||||
{
|
||||
return (ReExpr<R>) Expr.create(this, Native.mkRePower(nCtx(), re.getNativeObject(), n));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue