HnswIndexParam constructor

const HnswIndexParam({
  1. MetricType metricType = MetricType.IP,
  2. int m = 32,
  3. int efConstruction = 200,
  4. QuantizeType quantizeType = QuantizeType.UNDEFINED,
})

Implementation

const HnswIndexParam({
  super.metricType = MetricType.IP,
  this.m = 32,
  this.efConstruction = 200,
  super.quantizeType = QuantizeType.UNDEFINED,
}) : super(IndexType.HNSW);