ISolverStatusReceiverMessageFromSolver Method

The Solver will intermittently call this method via its SolverStatusReceiver property.

Definition

Namespace: VRSolver
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
C#
void MessageFromSolver(
	string message,
	Solution bestSolution,
	Solution currentSolution
)

Parameters

message  String
A message containing information about the solver's status (See VRSolverDesktop for an example).
bestSolution  Solution
The best known solution so far.
currentSolution  Solution
The solution in the solver's current iteration.

Remarks

It is recommended to keep this method fast (or run it on another thread) because the solver will be waiting while this method is executing.

See Also