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
fix(analysis): fixed-point classification, nullcline selection, GD batch count, plot kwargs
- 2D star vs degenerate-node stability classification was inverted and the STAR
branch was unreachable dead code; correctly distinguish star (scalar*I) from
defective node (Critical)
- phase-plane select_candidates='nullclines' tested the fy condition twice,
silently dropping all fx-nullcline candidate points; test fx OR fy (High)
- slow_points num_opt_loops = int(num_opt/num_batch) was 0 when num_opt<num_batch
-> empty losses -> concatenate crash; use max(1, ceil(...)) (Medium)
- streamplot used plot_style.get('linewidth') (not pop), passing linewidth twice
-> TypeError; use pop (Medium)
- set_markersize wrote to a typo local, leaving the module global stale (Medium)
Findings recorded in docs/issues-found-20260619-analysis.md
0 commit comments