Skip to content

Commit

Permalink
enlarge options for target (and mask) dimensions (github issue #395)
Browse files Browse the repository at this point in the history
  • Loading branch information
yrosseel committed Nov 23, 2024
1 parent 597ae63 commit 4e956b2
Showing 1 changed file with 4 additions and 4 deletions.
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, 0, 0), oklen = c(0L, 1000L))
elm(c("rotation.args", "target.mask"), matrix(0, 0, 0), oklen = c(0L, 1000L))
elm(c("rotation.args", "rstarts"), 30L, nm = "[0, 1000000]")
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", "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 = "[0, 1000000]")
elm(c("rotation.args", "max.iter"), 10000L, nm = "[0L, 1e07L]")

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

0 comments on commit 4e956b2

Please sign in to comment.