mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 18:15:32 +00:00
JavaAPI: DecRefQueue -- do not use move_limit for now.
This commit is contained in:
parent
26d6c99aac
commit
a914822346
20 changed files with 65 additions and 140 deletions
|
@ -17,20 +17,14 @@ Notes:
|
|||
|
||||
package com.microsoft.z3;
|
||||
|
||||
class GoalDecRefQueue extends IDecRefQueue<Goal>
|
||||
{
|
||||
class GoalDecRefQueue extends IDecRefQueue<Goal> {
|
||||
public GoalDecRefQueue()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
public GoalDecRefQueue(int move_limit)
|
||||
{
|
||||
super(move_limit);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void decRef(Context ctx, long obj) {
|
||||
Native.goalDecRef(ctx.nCtx(), obj);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue