File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ struct ControlSystem <: AbstractControlSystem
52
52
eqs:: Vector{Equation}
53
53
""" Independent variable."""
54
54
iv:: Sym
55
- """ Dependent (state) variables."""
55
+ """ Dependent (state) variables. Must not contain the independent variable. """
56
56
states:: Vector
57
57
""" Control variables."""
58
58
controls:: Vector
59
- """ Parameter variables."""
59
+ """ Parameter variables. Must not contain the independent variable. """
60
60
ps:: Vector
61
61
observed:: Vector{Equation}
62
62
"""
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ struct ODESystem <: AbstractODESystem
27
27
eqs:: Vector{Equation}
28
28
""" Independent variable."""
29
29
iv:: Sym
30
- """ Dependent (state) variables."""
30
+ """ Dependent (state) variables. Must not contain the independent variable. """
31
31
states:: Vector
32
- """ Parameter variables."""
32
+ """ Parameter variables. Must not contain the independent variable. """
33
33
ps:: Vector
34
34
observed:: Vector{Equation}
35
35
"""
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ struct SDESystem <: AbstractODESystem
33
33
noiseeqs:: AbstractArray
34
34
""" Independent variable."""
35
35
iv:: Sym
36
- """ Dependent (state) variables."""
36
+ """ Dependent (state) variables. Must not contain the independent variable. """
37
37
states:: Vector
38
- """ Parameter variables."""
38
+ """ Parameter variables. Must not contain the independent variable. """
39
39
ps:: Vector
40
40
observed:: Vector
41
41
"""
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ struct DiscreteSystem <: AbstractSystem
26
26
eqs:: Vector{Equation}
27
27
""" Independent variable."""
28
28
iv:: Sym
29
- """ Dependent (state) variables."""
29
+ """ Dependent (state) variables. Must not contain the independent variable. """
30
30
states:: Vector
31
- """ Parameter variables."""
31
+ """ Parameter variables. Must not contain the independent variable. """
32
32
ps:: Vector
33
33
observed:: Vector{Equation}
34
34
"""
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ struct JumpSystem{U <: ArrayPartition} <: AbstractSystem
33
33
eqs:: U
34
34
""" The independent variable, usually time."""
35
35
iv:: Any
36
- """ The dependent variables, representing the state of the system."""
36
+ """ The dependent variables, representing the state of the system. Must not contain the independent variable. """
37
37
states:: Vector
38
- """ The parameters of the system."""
38
+ """ The parameters of the system. Must not contain the independent variable. """
39
39
ps:: Vector
40
40
observed:: Vector{Equation}
41
41
""" The name of the system. . These are required to have unique names."""
Original file line number Diff line number Diff line change @@ -140,9 +140,9 @@ struct ReactionSystem <: AbstractSystem
140
140
eqs:: Vector{Reaction}
141
141
""" Independent variable (usually time)."""
142
142
iv:: Any
143
- """ Dependent (state) variables representing amount of each species."""
143
+ """ Dependent (state) variables representing amount of each species. Must not contain the independent variable. """
144
144
states:: Vector
145
- """ Parameter variables."""
145
+ """ Parameter variables. Must not contain the independent variable. """
146
146
ps:: Vector
147
147
observed:: Vector{Equation}
148
148
""" The name of the system"""
You can’t perform that action at this time.
0 commit comments