1
1
"""
2
- MOInputIsotopicByFeatures(x::AbstractVector, out_dim::Integer )
2
+ MOInputIsotopicByFeatures(x::AbstractVector, out_dim::Int )
3
3
4
4
`MOInputIsotopicByFeatures(x, out_dim)` has length `out_dim * length(x)`.
5
5
@@ -26,11 +26,11 @@ See [Inputs for Multiple Outputs](@ref) in the docs for more info.
26
26
"""
27
27
struct MOInputIsotopicByFeatures{S,T<: AbstractVector{S} } <: AbstractVector{Tuple{S,Int}}
28
28
x:: T
29
- out_dim:: Integer
29
+ out_dim:: Int
30
30
end
31
31
32
32
"""
33
- MOInputIsotopicByOutputs(x::AbstractVector, out_dim::Integer )
33
+ MOInputIsotopicByOutputs(x::AbstractVector, out_dim::Int )
34
34
35
35
`MOInputIsotopicByOutputs(x, out_dim)` has length `length(x) * out_dim`.
36
36
@@ -55,7 +55,7 @@ The first `length(x)` elements represent the inputs for the first output, the se
55
55
"""
56
56
struct MOInputIsotopicByOutputs{S,T<: AbstractVector{S} } <: AbstractVector{Tuple{S,Int}}
57
57
x:: T
58
- out_dim:: Integer
58
+ out_dim:: Int
59
59
end
60
60
61
61
const IsotopicMOInputsUnion = Union{MOInputIsotopicByFeatures,MOInputIsotopicByOutputs}
@@ -87,7 +87,7 @@ function Base.vcat(x::MOInputIsotopicByOutputs, y::MOInputIsotopicByOutputs)
87
87
end
88
88
89
89
"""
90
- MOInput(x::AbstractVector, out_dim::Integer )
90
+ MOInput(x::AbstractVector, out_dim::Int )
91
91
92
92
A data type to accommodate modelling multi-dimensional output data.
93
93
`MOInput(x, out_dim)` has length `length(x) * out_dim`.
0 commit comments