Commit c8c1ac8
committed
Fix Latexify deprecation warnings in ODEProblemLibrary
This commit fixes deprecation warnings that occur when running tests with
`--depwarn=error` by updating all `latexify()` calls to use the new
`mult_symbol=""` parameter instead of the deprecated `cdot=false`.
## Issue Fixed
- **Latexify deprecation**: Changed from deprecated `cdot=false` to `mult_symbol=""`
- Affected 9 `latexify()` calls in `strange_attractors.jl` documentation strings
## Error Message
```
ERROR: Latexify received the deprecated keyword argument cdot = false and
converted it to mult_symbol = "". Pass the latter directly to remove this warning.
```
## Changes Made
- Updated all `$(latexify(system))` calls to `$(latexify(system; mult_symbol=""))`
- Fixed calls for: thomas, lorenz, aizawa, dadras, chen, rossler,
rabinovich_fabrikant, sprott, and hindmarsh_rose attractors
## Verification
- ODEProblemLibrary tests now pass with `--depwarn=error`
- All strange attractor documentation maintains proper LaTeX formatting
- No functional changes to the mathematical representations
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent d2ea4dc commit c8c1ac8
1 file changed
+9
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
| 42 | + | |
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
| 109 | + | |
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| |||
128 | 128 | | |
129 | 129 | | |
130 | 130 | | |
131 | | - | |
| 131 | + | |
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
| |||
151 | 151 | | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
| 154 | + | |
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
| |||
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | | - | |
| 176 | + | |
177 | 177 | | |
178 | 178 | | |
179 | 179 | | |
| |||
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
198 | | - | |
| 198 | + | |
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
| |||
0 commit comments