From 40c3e402c7f14fd50896aed43db99635c52efa59 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 25 Sep 2024 17:29:20 -0700 Subject: [PATCH] Removed todo [skip ci] --- src/hnsw.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hnsw.c b/src/hnsw.c index 68b67e4..6b0fdc1 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -198,8 +198,6 @@ hnswcostestimate(PlannerInfo *root, IndexPath *path, double loop_count, layer0Selectivity = (scalingFactor * log(path->indexinfo->tuples + 1)) / (log(m) * (1 + log(ef))); - /* TODO incorporate ef_stream */ - costs.numIndexTuples = (entryLevel * m) + (layer0TuplesMax * layer0Selectivity);