You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_v_starts() eagerly computed the inverse-variance and univariate-fit heuristic
candidates (the latter = O(k) inner Frank-Wolfe solves) before truncating to
n_starts, so n_starts=1 still paid the univariate loop. Generate candidates lazily
and stop once `target = max(n_starts, 1)` are collected: n_starts=1 now returns the
uniform start without the univariate loop. Candidate ORDER is unchanged, so any given
n_starts yields the same set as before (default n_starts=4 is identical — Basque Tier-2
parity preserved) — only unused work is skipped. Regression: test_n_starts_one_runs.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 commit comments