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
# example 1optimize(f, [0.1, 0.3, -1.5], OPTIMIZER)
# example 2optimize(f, StartingSolution([0.1, 0.3, -1.5]), OPTIMIZER)
Search Space
# current implementationoptimize(f, bounds, OPTIMIZER)
# newoptimize(f, SearchSpace(...), OPTIMIZER)
The search space can be defined as follows:
SearchSpace(bounds)
SearchSpace(Bool, 10) # Bit arrays with size 10SearchSpace(integer_variables=bounds_int, real_variables=bounds_float) # for mixed-integer problems. SearchSpace(:x=> [-1.0, 1.0], :y=> [0, 100]) # other possible application
The text was updated successfully, but these errors were encountered:
It could be an extension for implementing newer optimizers solving different problems (e.g., dynamic optimization, mixed-integer optimization, etc). There are no plans to remove the current optimize API but extended it.
The
optimize
API will be extended mainly to:Starting Solutions
Search Space
The search space can be defined as follows:
The text was updated successfully, but these errors were encountered: