C# Класс SwarmOps.Optimizers.RND

Samples the search-space completely at random. Used for comparing other optimizers to 'worst-case' performance.
Наследование: Optimizer
Показать файл Открыть проект

Открытые методы

Метод Описание
Optimize ( double parameters ) : Result

Perform one optimization run and return the best found solution.

RND ( )

Construct the object.

RND ( Problem problem )

Construct the object.

Описание методов

Optimize() публичный Метод

Perform one optimization run and return the best found solution.
public Optimize ( double parameters ) : Result
parameters double Control parameters for the optimizer.
Результат Result

RND() публичный Метод

Construct the object.
public RND ( )

RND() публичный Метод

Construct the object.
public RND ( Problem problem )
problem Problem Problem to optimize.