3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-25 23:19:32 +00:00

Allow different parsing strategies (#4205)

* modifiers

* modifiers and function

* revert

* .
This commit is contained in:
Imran Settuba 2020-05-04 21:28:50 +02:00 committed by GitHub
parent 39fb44fe09
commit be998c308c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 266 additions and 266 deletions

View file

@ -91,12 +91,12 @@ public class ASTVector extends Z3Object {
return Native.astVectorToString(getContext().nCtx(), getNativeObject());
}
ASTVector(Context ctx, long obj)
public ASTVector(Context ctx, long obj)
{
super(ctx, obj);
}
ASTVector(Context ctx)
public ASTVector(Context ctx)
{
super(ctx, Native.mkAstVector(ctx.nCtx()));
}