diff --git a/Project.toml b/Project.toml index af644251a..1d5970bbd 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "SciMLBase" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" -version = "2.122.0" +version = "2.122.1" authors = ["Chris Rackauckas and contributors"] [deps] diff --git a/src/alg_traits.jl b/src/alg_traits.jl index 8b96ef7fb..e1bfb4817 100644 --- a/src/alg_traits.jl +++ b/src/alg_traits.jl @@ -310,7 +310,7 @@ supports_opt_cache_interface(alg) = false Trait for specifying whether the passed algorithm supports `init`. Any `init`ed object can `solve!`. """ -has_init(a::AbstractSciMLAlgorithm) = false +has_init(a) = false """ $(TYPEDSIGNATURES) @@ -318,4 +318,4 @@ has_init(a::AbstractSciMLAlgorithm) = false Trait for specifying whether the passed algorithm supports `step!`, specifying a more direct control over the internal solver process. See https://docs.sciml.ai/SciMLBase/stable/interfaces/Init_Solve/#init-and-the-Iterator-Interface for more details. """ -has_step(a::AbstractSciMLAlgorithm) = false +has_step(a) = false