OptimizationModelSolver<T> Class

Provides a uniform interface for external solvers of optimization problems.

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public abstract class OptimizationModelSolver<T> : IImplementation, 
	IParallelized
where T : OptimizationModel
Inheritance
Object  →  OptimizationModelSolver<T>
Derived
Implements
IParallelized, IImplementation

Type Parameters

T
The type of the optimization model handled by the solver.

Constructors

OptimizationModelSolver<T> Constructs a new solver object.

Properties

HasSharedDegreeOfParallelism Gets whether all instances of the solver have the same degree of parallelism.
MaxDegreeOfParallelism Gets or sets the maximum degree of parallelism the solver should use.
Name Gets the name of the solver.
Platform Gets the platform the solver supports.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
SetSolution Called by implementations to set basic properties of the solution.
Solve Solves an optimization model.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also