You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search (a part of) a search space and returns a pair of vector of configurations: `(solutions, non_solutions)`. If the search space size is over `search_limit`, then both `solutions` and `non_solutions` are limited to `solutions_limit`.
166
+
Search (a part of) a search space and return a pair of vectors of configurations: `(solutions, non_solutions)`. The exploration behavior is determined based on the `settings`.
159
167
160
-
Beware that if the density of the solutions in the search space is low, `solutions_limit` needs to be reduced. This process will be automatic in the future (simple reinforcement learning).
168
+
# Arguments
169
+
- `domains`: A collection of domains to be explored.
170
+
- `concept`: The concept representing the constraint to be targeted.
171
+
- `settings`: An optional `ExploreSettings` object to configure the exploration. Default is `ExploreSettings(domains)`.
172
+
- `parameters...`: Additional parameters for the `concept`.
161
173
162
-
# Arguments:
163
-
- `domains`: a collection of domains
164
-
- `concept`: the concept of the targeted constraint
165
-
- `param`: an optional parameter of the constraint
166
-
- `sol_number`: the required number of solutions (half of the number of configurations), default to `100`
0 commit comments