ISolver Status ReceiverMessage From Solver 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
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
C#
void MessageFromSolver(
string message,
Solution bestSolution,
Solution currentSolution
)VB
Sub MessageFromSolver (
message As String,
bestSolution As Solution,
currentSolution As Solution
)C++
void MessageFromSolver(
String^ message,
Solution^ bestSolution,
Solution^ currentSolution
)F#
abstract MessageFromSolver :
message : string *
bestSolution : Solution *
currentSolution : Solution -> unit Parameters
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.