Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mb706 committed Aug 15, 2024
1 parent 529e082 commit 19134c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/ParamSetCollection.R
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,10 @@ ParamSetCollection = R6Class("ParamSetCollection", inherit = ParamSet,
.sets = NULL,
.translation = data.table(id = character(0), original_id = character(0), owner_ps_index = integer(0), owner_name = character(0), key = "id"),
.children_with_trafos = function() {
which(!map_lgl(map(sets, "extra_trafo"), is.null))
which(!map_lgl(map(private$.sets, "extra_trafo"), is.null))
},
.children_with_constraints = function() {
which(!map_lgl(map(sets, "constraint"), is.null))
which(!map_lgl(map(private$.sets, "constraint"), is.null))
},
.extra_trafo_explicit = function(x) {
children_with_trafos = private$.children_with_trafos()
Expand Down

0 comments on commit 19134c3

Please sign in to comment.