Version 2.6.7 of OpenMx now available

The newest release of *OpenMx*, version 2.6.7, is now available through CRAN and through our own repository. The most important change for users to be aware of is that, whereas previously OpenMx defaulted to using one less than the number of cores, it now defaults to using 2 threads. This change was made at the insistence of the CRAN Team to reduce their test-server burden.

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),