Commit 84d79a2
Fix Van der Pol Jacobian calculation
The partial derivative ∂f₂/∂x was incorrect. For the Van der Pol equation:
f₂ = μ * ((1 - x²) * y - x)
The correct partial derivative is:
∂f₂/∂x = μ * (-2xy - 1)
The previous implementation was missing the y term in the derivative.
This fixes the failing test in OrdinaryDiffEq.jl CI.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent c35dd8b commit 84d79a2
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments