Skip to content

Commit

Permalink
add regex power to API and for Java per request
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 16, 2022
1 parent e1929ca commit cb9dcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/java/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -2203,7 +2203,7 @@ public <R extends Sort> ReExpr<R> mkStar(Expr<ReSort<R>> re)
/**
* 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));
}
Expand Down

0 comments on commit cb9dcb7

Please sign in to comment.