From a55f3114b2bc01e60789166f382752098cd52bce Mon Sep 17 00:00:00 2001 From: "Matthew L. Fidler" Date: Sat, 2 Dec 2023 22:13:18 -0600 Subject: [PATCH] Make sure eta values are not bounded --- R/piping-ini.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/R/piping-ini.R b/R/piping-ini.R index d0e7b14bf..9515ffc7e 100644 --- a/R/piping-ini.R +++ b/R/piping-ini.R @@ -477,6 +477,8 @@ .minfo("old initial estimate was negative, changing to positive") .newEta$est <- -.newEta$est } + .newEta$lower <- -Inf + .newEta$upper <- Inf .eta <- rbind(.eta, .newEta) } .ini <- rbind(.theta, .eta)