mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
add java Optimize context
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d7b3aaffbd
commit
92f731e51c
1 changed files with 6 additions and 0 deletions
|
@ -3671,6 +3671,7 @@ public class Context extends IDisposable
|
||||||
private StatisticsDecRefQueue m_Statistics_DRQ = new StatisticsDecRefQueue(10);
|
private StatisticsDecRefQueue m_Statistics_DRQ = new StatisticsDecRefQueue(10);
|
||||||
private TacticDecRefQueue m_Tactic_DRQ = new TacticDecRefQueue(10);
|
private TacticDecRefQueue m_Tactic_DRQ = new TacticDecRefQueue(10);
|
||||||
private FixedpointDecRefQueue m_Fixedpoint_DRQ = new FixedpointDecRefQueue(10);
|
private FixedpointDecRefQueue m_Fixedpoint_DRQ = new FixedpointDecRefQueue(10);
|
||||||
|
private OptimizeDecRefQueue m_Optimize_DRQ = new OptimizeDecRefQueue(10);
|
||||||
|
|
||||||
public IDecRefQueue getASTDRQ()
|
public IDecRefQueue getASTDRQ()
|
||||||
{
|
{
|
||||||
|
@ -3747,6 +3748,11 @@ public class Context extends IDisposable
|
||||||
return m_Fixedpoint_DRQ;
|
return m_Fixedpoint_DRQ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public IDecRefQueue getOptimizeDRQ()
|
||||||
|
{
|
||||||
|
return m_Optimize_DRQ;
|
||||||
|
}
|
||||||
|
|
||||||
protected long m_refCount = 0;
|
protected long m_refCount = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue