opytimizer.optimizers.science.aig

Algorithm of the Innovative Gunner.

class opytimizer.optimizers.science.aig.AIG(params: Optional[Dict[str, Any]] = None)

An AIG class, inherited from Optimizer.

This is the designed class to define AIG-related variables and methods.

References

P. Pijarski and P. Kacejko. A new metaheuristic optimization method: the algorithm of the innovative gunner (AIG). Engineering Optimization (2019).

__init__(params: Optional[Dict[str, Any]] = None) → None

Initialization method.

Parameters:params – Contains key-value parameters to the meta-heuristics.
alpha

First maximum correction angle.

beta

Second maximum correction angle.

update(space: opytimizer.core.space.Space, function: opytimizer.core.function.Function) → None

Wraps Algorithm of the Innovative Gunner over all agents and variables.

Parameters:
  • space – Space containing agents and update-related information.
  • function – A Function object that will be used as the objective function.