Package org.kigalisim
Interface ProgressReportCallback
public interface ProgressReportCallback
Callback interface for reporting simulation progress during execution.
Progress represents the percent of trials across scenarios completed, where each scenario (ex: "business as usual") may have multiple trials. The progress value ranges from 0.0 (0%) to 1.0 (100%).
-
Method Summary
Modifier and TypeMethodDescriptionvoidreportProgress(double progress) Reports the current progress of the simulation.
-
Method Details
-
reportProgress
void reportProgress(double progress) Reports the current progress of the simulation.- Parameters:
progress- the progress value between 0.0 (0%) and 1.0 (100%), representing the percent of trials across scenarios completed.
-