Description
Some of the default values in parameter sets can currently not be expressed because they contain expressions. E.g. a parameter seed
might be an integer()
but the default is sample.int(100)
. It is currently not possible to specify the default.
Currently people address this differently when implementing learners. A common solution to the above problem is then to say that the parameter has no default, which is not correct. We came to the agreement that we want to specify this using something like a Cmplx_Default
token that is also visible in the rd_info
output that is shown e.g. in the learner's help page. This then communicates to the user that one has to look in the help page of the upstream function to learn about the parameter's default behaviour.