Commit ad88e0c
Fix v7 build: use DEFAULT_VERBOSE instead of Bool in solve/init defaults (#3448)
The v7 rebase onto master re-introduced `verbose = true` (Bool) as the
default in DiffEqBase's `init` and `solve` entrypoints. But v7's
`_process_verbose_param(::Bool)` throws an `ArgumentError` (added by
f73c2f5 to enforce the v7 breaking change to DEVerbosity). Every
`solve(prob, alg)` call — including precompile workloads — hits this
throw, failing the `build` step and cascading to all 160+ sublibrary
and integration tests.
Replace `verbose = true` with `verbose = DEFAULT_VERBOSE` in both
function signatures. `DEFAULT_VERBOSE` is `DEVerbosity()` (the Standard
preset), which is the v7-native equivalent of `verbose = true`.
Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 51b177a commit ad88e0c
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
| |||
590 | 590 | | |
591 | 591 | | |
592 | 592 | | |
593 | | - | |
| 593 | + | |
594 | 594 | | |
595 | 595 | | |
596 | 596 | | |
| |||
0 commit comments