Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SciMLBase"
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
version = "2.122.0"
version = "2.122.1"
authors = ["Chris Rackauckas <[email protected]> and contributors"]

[deps]
Expand Down
4 changes: 2 additions & 2 deletions src/alg_traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -310,12 +310,12 @@ 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)

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
Loading