File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -299,8 +299,15 @@ allows_late_binding_tstops(alg::AbstractODEAlgorithm) = false
299299"""
300300 $(TYPEDSIGNATURES)
301301
302- Trait declaration for whether the optimization algorithm supports the `init` interface.
302+ Trait declaration for whether the optimization algorithm supports the `init` interface.
303303
304304Deprecated as this is not an optimization-specific idea and should use the traits for general caching.
305305"""
306306supports_opt_cache_interface (alg) = false
307+
308+ """
309+ $(TYPEDSIGNATURES)
310+
311+ Trait for specifying whether the passed algorithm supports `init`.
312+ """
313+ has_init (a:: AbstractSciMLAlgorithm ) = false
Original file line number Diff line number Diff line change 569569
570570# ## Integrator traits
571571
572- """
573- has_init(a::AbstractSciMLAlgorithm)
574-
575- Trait for specifying whether the passed algorithm supports `init`.
576- """
577- has_init (a:: AbstractSciMLAlgorithm ) = false
578-
579572has_reinit (i:: DEIntegrator ) = false
580573
581574# ## Display
You can’t perform that action at this time.
0 commit comments