Contents:
Abstract module which defines the high level scheduling during the process of optimization.
jinete.dispatchers.abc.
Dispatcher
Bases: abc.ABC
abc.ABC
Dispatch the problem instances.
__init__
Construct a new instance.
loader_cls (Type[Loader]) – Loads problem instances.
algorithm_cls (Type[Algorithm]) – Generates the solution for the problem instance.
storer_cls (Type[Storer]) – Stores problem instances.
run
Start the execution of the dispatcher.
Result
A result object containing the generated solution.