From d922191f19b6a88d6f5d46d5dd5de87f7992f66d Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Thu, 12 Sep 2024 12:44:29 +0000 Subject: [PATCH] thinko --- src/mixedmodel.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixedmodel.jl b/src/mixedmodel.jl index db604d5ae..226d3e86f 100644 --- a/src/mixedmodel.jl +++ b/src/mixedmodel.jl @@ -69,7 +69,7 @@ Equality comparisons are used b/c small non-negative θ values are replaced by 0 β in the case `fast=false`) must be specified if the default is not used. """ function issingular(m::MixedModel, θ=m.θ; atol::Real=0, rtol::Real=atol>0 ? 0 : √eps()) - return _singular(m.lowerbound, θ; atol, rtol) + return _issingular(m.lowerbound, θ; atol, rtol) end function _issingular(v, w; atol, rtol)