mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 18:15:32 +00:00
Java API: split incRef into incRef and addToReferenceQueue
One method should do one thing only, it's easy to mix things up otherwise.
This commit is contained in:
parent
2a347f04bf
commit
22ffd65d1e
20 changed files with 150 additions and 87 deletions
|
@ -22,8 +22,7 @@ import com.microsoft.z3.enumerations.Z3_param_kind;
|
|||
/**
|
||||
* A ParamDescrs describes a set of parameters.
|
||||
**/
|
||||
public class ParamDescrs extends Z3Object
|
||||
{
|
||||
public class ParamDescrs extends Z3Object {
|
||||
/**
|
||||
* validate a set of parameters.
|
||||
**/
|
||||
|
@ -92,8 +91,12 @@ public class ParamDescrs extends Z3Object
|
|||
}
|
||||
|
||||
@Override
|
||||
void incRef(long o) {
|
||||
Native.paramDescrsIncRef(getContext().nCtx(), o);
|
||||
void incRef() {
|
||||
Native.paramDescrsIncRef(getContext().nCtx(), getNativeObject());
|
||||
}
|
||||
|
||||
@Override
|
||||
void addToReferenceQueue() {
|
||||
getContext().getParamDescrsDRQ().storeReference(getContext(), this);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue