extremize {evoper} | R Documentation |
extremize
Description
Entry point for optimization functions
Usage
extremize(type, objective, options = NULL)
Arguments
type |
The optimization method (aco,pso,saa,sda) |
objective |
An instance of ObjectiveFunction (or subclass) class ObjectiveFunction |
options |
An apropiate instance from a sublclass of Options class |
Examples
## Not run:
f<- PlainFunction$new(f0.rosenbrock2)
f$Parameter(name="x1",min=-100,max=100)
f$Parameter(name="x2",min=-100,max=100)
extremize("pso", f)
## End(Not run)
[Package evoper version 0.5.0 Index]