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 c585b61 commit f8d4e15Copy full SHA for f8d4e15
src/solutions.jl
@@ -3,7 +3,7 @@
3
4
Supertype for solutions of dynamic functions.
5
6
-Concrete subtypes must implement [`(::AbstractDynamicSolution)(t::Real)`](@ref).
+Concrete subtypes must implement the method [`AbstractDynamicSolution(::Real)`](@ref).
7
"""
8
abstract type AbstractDynamicSolution end
9
@@ -12,4 +12,6 @@ abstract type AbstractDynamicSolution end
12
13
Evaluates a dynamic solution at `τ`.
14
15
-(::AbstractDynamicSolution)(::Real) = nothing
+function (::AbstractDynamicSolution)(::Real)
16
+ return nothing
17
+end
0 commit comments