We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a39e7 commit 0d864dcCopy full SHA for 0d864dc
src/verbosity.jl
@@ -287,7 +287,7 @@ end
287
mutable struct ODEPerformanceVerbosity
288
alg_switch
289
290
- @add_kwonly function ODEPerformanceVerbosity()
+ @add_kwonly function ODEPerformanceVerbosity(alg_switch)
291
new(alg_switch)
292
end
293
@@ -308,7 +308,7 @@ function ODEPerformanceVerbosity(verbose::Verbosity.Type)
308
Verbosity.Error() => ODEPerformanceVerbosity(fill(
309
Verbosity.Error(), length(fieldnames(ODEPerformanceVerbosity)))...)
310
311
- Verbosity.Default() => ODEPerformanceVerbosity()
+ Verbosity.Default() => ODEPerformanceVerbosity(alg_switch = Verbosity.None())
312
313
_ => @error "Not a valid choice for verbosity."
314
0 commit comments