File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ hasportion(::Tunable, ::AbstractArray) = true
2
2
hasportion (:: Constants , :: AbstractArray ) = false
3
3
hasportion (:: Caches , :: AbstractArray ) = false
4
4
hasportion (:: Discrete , :: AbstractArray ) = false
5
+ hasportion (:: Initials , :: AbstractArray ) = false
5
6
6
7
struct ArrayRepack{T}
7
8
x:: T
Original file line number Diff line number Diff line change @@ -111,3 +111,9 @@ struct Discrete <: AbstractPortion end
111
111
The inputs portion of the SciMLStructure.
112
112
"""
113
113
struct Input <: AbstractPortion end
114
+
115
+ """
116
+ The portion of the SciMLStructure used for parameters solely involved in initialization.
117
+ These should be floating point numbers supporting automatic differentiation.
118
+ """
119
+ struct Initials <: AbstractPortion end
You can’t perform that action at this time.
0 commit comments