edu.nyu.acsys.CVC4.BitVectorExtractHashFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cvc4-turnkey-permissive Show documentation
Show all versions of cvc4-turnkey-permissive Show documentation
A self-unpacking, standalone CVC4 distribution that ships all required native support code and automatically unpacks it at runtime. Permissive-licensed version.
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.1
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package edu.nyu.acsys.CVC4;
public class BitVectorExtractHashFunction {
private transient long swigCPtr;
protected transient boolean swigCMemOwn;
protected BitVectorExtractHashFunction(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(BitVectorExtractHashFunction obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
@SuppressWarnings("deprecation")
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
CVC4JNI.delete_BitVectorExtractHashFunction(swigCPtr);
}
swigCPtr = 0;
}
}
public long apply(BitVectorExtract extract) {
return CVC4JNI.BitVectorExtractHashFunction_apply(swigCPtr, this, BitVectorExtract.getCPtr(extract), extract);
}
public BitVectorExtractHashFunction() {
this(CVC4JNI.new_BitVectorExtractHashFunction(), true);
}
}