ISolverCallerUpdateSolverStatus Method |
If a Solver's SolverCaller property is set to an object which implements
this interface then the Solver will call this method whenever it has something new
to report.
Namespace:
ASAP.NRP.Solvers
Assembly:
NRP (in NRP.dll) Version: 3.49.0+539d3dcf73518163e952c8abb92256bf56ba5029
Syntaxvoid UpdateSolverStatus(
string message,
Roster roster
)
Sub UpdateSolverStatus (
message As String,
roster As Roster
)
void UpdateSolverStatus(
String^ message,
Roster^ roster
)
abstract UpdateSolverStatus :
message : string *
roster : Roster -> unit
Parameters
- message
- Type: SystemString
A message from the solver on its progress. - roster
- Type: ASAP.NRP.CoreRoster
The best roster found so far.
RemarksThe solver will be waiting while this method is
executing so it is important to keep it fast and/or only
execute more time-consuming functions in this method every
1000 millisecs or so.
See Also