Skip to content

Commit

Permalink
more minor changes to the oklen= check in lav_options_default.R
Browse files Browse the repository at this point in the history
  • Loading branch information
yrosseel committed Nov 23, 2024
1 parent 4e956b2 commit c8f9df0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: lavaan
Title: Latent Variable Analysis
Version: 0.6-20.2235
Version: 0.6-20.2237
Authors@R: c(person(given = "Yves", family = "Rosseel",
role = c("aut", "cre"),
email = "[email protected]",
Expand Down
8 changes: 4 additions & 4 deletions R/lav_options_default.R
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ lav_options_default <- function() {
elm(c("rotation.args", "cf.gamma"), 0, nm = "[0, 1]")
elm(c("rotation.args", "oblimin.gamma"), 0, nm = "[0, 1000]")
elm(c("rotation.args", "promax.kappa"), 4, nm = "[0, 1000]")
elm(c("rotation.args", "target"), matrix(0, 0L, 0L), oklen = c(0L, 1e07L))
elm(c("rotation.args", "target.mask"), matrix(0, 0L, 0L), oklen = c(0L, 1e07L))
elm(c("rotation.args", "rstarts"), 30L, nm = "[0L, 1e06L]")
elm(c("rotation.args", "target"), matrix(0, 0L, 0L), oklen = c(0, 1e+32))
elm(c("rotation.args", "target.mask"), matrix(0, 0L, 0L), oklen = c(0, 1e+32))
elm(c("rotation.args", "rstarts"), 30L, nm = "[0, 1e+07]")
elm(c("rotation.args", "algorithm"), "gpa", chr = c("gpa", "pairwise"))
elm(c("rotation.args", "reflect"), TRUE, bl = TRUE)
elm(c("rotation.args", "order.lv.by"), "index",
Expand All @@ -240,7 +240,7 @@ lav_options_default <- function() {
elm(c("rotation.args", "warn"), FALSE, bl = TRUE)
elm(c("rotation.args", "verbose"), FALSE, bl = TRUE)
elm(c("rotation.args", "jac.init.rot"), TRUE, bl = TRUE)
elm(c("rotation.args", "max.iter"), 10000L, nm = "[0L, 1e07L]")
elm(c("rotation.args", "max.iter"), 10000L, nm = "[0, 1e+12]")

# full data
elm("std.ov", FALSE, bl = TRUE)
Expand Down

0 comments on commit c8f9df0

Please sign in to comment.