Confidence Interval Reference search broken

See this minimal working example.


library(OpenMx)
data(demoOneFactor)
# ===============================
# = Make and run a 1-factor CFA =
# ===============================

latents = c("G") # the latent factor
manifests = names(demoOneFactor) # manifest variables to be modeled
# ====================
# = Make the MxModel =
# ====================
m1 <- mxModel("One Factor", type = "RAM",
manifestVars = manifests, latentVars = latents,
mxPath(from = latents, to = manifests),
mxPath(from = manifests, arrows = 2),

level 1 warning as first step toward more in-depth search

https://github.com/OpenMx/OpenMx/blob/master/R/MxModelFunctions.R#L127-L137
Add test script checking returning first row behavior?
What is proper behavior for this?
What is the value of submodel.likelihood + submodel. A[1,1] when submodel.A is “data.X”?
It depends on how many rows in are data. If nrow(data) == 1 then data.X is the data in the first row. If nrow(data) > 1 then data.X is set to NaN. (initial compute)
NaN is dangerous because OpenMx matrix algebras are NA/NaN unsafe.