Closed elshize closed 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.
last_level
Fixes #525
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