Skip to content

Commit 6cc6102

Browse files
Merge pull request #1161 from SebastianM-C/fix
fix definitions for has_init and has_step
2 parents 5d95b70 + 66dc851 commit 6cc6102

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SciMLBase"
22
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
3-
version = "2.122.0"
3+
version = "2.122.1"
44
authors = ["Chris Rackauckas <[email protected]> and contributors"]
55

66
[deps]

src/alg_traits.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ supports_opt_cache_interface(alg) = false
310310
311311
Trait for specifying whether the passed algorithm supports `init`. Any `init`ed object can `solve!`.
312312
"""
313-
has_init(a::AbstractSciMLAlgorithm) = false
313+
has_init(a) = false
314314

315315
"""
316316
$(TYPEDSIGNATURES)
317317
318318
Trait for specifying whether the passed algorithm supports `step!`, specifying a more direct control over the internal solver process.
319319
See https://docs.sciml.ai/SciMLBase/stable/interfaces/Init_Solve/#init-and-the-Iterator-Interface for more details.
320320
"""
321-
has_step(a::AbstractSciMLAlgorithm) = false
321+
has_step(a) = false

0 commit comments

Comments
 (0)