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

com.stepstone.search.hnswlib.jna.QueryTuple Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package com.stepstone.search.hnswlib.jna;

/**
 * Query Tuple that represents the results of a knn query.
 * It contains two arrays: ids and coefficients.
 */
public class QueryTuple {

	int[] ids;
	float[] coefficients;

	QueryTuple (int k) {
		ids = new int[k];
		coefficients = new float[k];
	}

	public float[] getCoefficients() {
		return coefficients;
	}

	public int[] getIds() {
		return ids;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy