All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.nyu.acsys.CVC4.BitVectorExtractHashFunction Maven / Gradle / Ivy

Go to download

A self-unpacking, standalone CVC4 distribution that ships all required native support code and automatically unpacks it at runtime. Permissive-licensed version.

There is a newer version: 1.8
Show newest 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);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy