pisa-engine / pisa

PISA: Performant Indexes and Search for Academia
https://pisa-engine.github.io/pisa/book
Apache License 2.0
942 stars 65 forks source link

Pass last_level by value #529

Closed elshize closed 1 year ago

elshize commented 1 year ago

In network BP algorithm, last_level was passed by value to one lambda, but by reference in the inner lambda, which meant it was dropped before it was used. Passing it by value both times fixes the issue.

Fixes #525