the-algorithm/ann/src/main/java/com/twitter/ann/faiss/swig/IntersectionCriterion.java

56 lines
1.6 KiB
Java

/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.2
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package com.twitter.ann.faiss;
public class IntersectionCriterion extends AutoTuneCriterion {
private transient long swigCPtr;
protected IntersectionCriterion(long cPtr, boolean cMemoryOwn) {
super(swigfaissJNI.IntersectionCriterion_SWIGUpcast(cPtr), cMemoryOwn);
swigCPtr = cPtr;
}
protected static long getCPtr(IntersectionCriterion obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
@SuppressWarnings("deprecation")
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
swigfaissJNI.delete_IntersectionCriterion(swigCPtr);
}
swigCPtr = 0;
}
super.delete();
}
public void setR(long value) {
swigfaissJNI.IntersectionCriterion_R_set(swigCPtr, this, value);
}
public long getR() {
return swigfaissJNI.IntersectionCriterion_R_get(swigCPtr, this);
}
public IntersectionCriterion(long nq, long R) {
this(swigfaissJNI.new_IntersectionCriterion(nq, R), true);
}
public double evaluate(SWIGTYPE_p_float D, LongVector I) {
return swigfaissJNI.IntersectionCriterion_evaluate(swigCPtr, this, SWIGTYPE_p_float.getCPtr(D), SWIGTYPE_p_long_long.getCPtr(I.data()), I);
}
}