Skip to content

Commit e52e905

Browse files
committed
missing type parameter
1 parent 4ca4386 commit e52e905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linearmixedmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ Return the vector of _canonical_ lower bounds on the parameters, `θ`.
795795
Note that this method does not distinguish between constrained optimization and
796796
unconstrained optimization with post-fit canonicalization.
797797
"""
798-
lowerbd(m::LinearMixedModel) = [(pm[2] == pm[3]) ? zero(T) : T(-Inf) for pm in m.parmap]
798+
lowerbd(m::LinearMixedModel{T}) where {T} = [(pm[2] == pm[3]) ? zero(T) : T(-Inf) for pm in m.parmap]
799799

800800
function mkparmap(reterms::Vector{<:AbstractReMat{T}}) where {T}
801801
parmap = NTuple{3,Int}[]

0 commit comments

Comments
 (0)