Skip to content

Commit b323260

Browse files
Update src/linearmixedmodel.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e52e905 commit b323260

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/linearmixedmodel.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,8 @@ 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{T}) where {T} = [(pm[2] == pm[3]) ? zero(T) : T(-Inf) for pm in m.parmap]
798+
lowerbd(m::LinearMixedModel{T}) where {T} =
799+
[(pm[2] == pm[3]) ? zero(T) : T(-Inf) for pm in m.parmap]
799800

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

0 commit comments

Comments
 (0)