mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 18:36:41 +00:00
add simplifier to java API
This commit is contained in:
parent
2e068e3f56
commit
4143c54257
5 changed files with 207 additions and 1 deletions
31
src/api/java/SimplifierDecRefQueue.java
Normal file
31
src/api/java/SimplifierDecRefQueue.java
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
Copyright (c) 2012-2014 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
SimplifierDecRefQueue.java
|
||||
|
||||
Abstract:
|
||||
|
||||
Author:
|
||||
|
||||
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
||||
|
||||
Notes:
|
||||
|
||||
**/
|
||||
|
||||
package com.microsoft.z3;
|
||||
|
||||
class SimplifierDecRefQueue extends IDecRefQueue<Simplifier> {
|
||||
public SimplifierDecRefQueue()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void decRef(Context ctx, long obj)
|
||||
{
|
||||
Native.simplifierDecRef(ctx.nCtx(), obj);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue