Ejemplo n.º 1
0
        protected override void ReportResultsOnRunFinish(MatlabRunOutput matlabRunOutput)
        {
            int count = 0;

            while (count < worstCaseHeatMapRegions.Count)
            {
                if (!worstCaseHeatMapRegions[worstCaseHeatMapRegions.ElementAt(count).Key])
                {
                    worstCaseHeatMapRegions[worstCaseHeatMapRegions.ElementAt(count).Key] = true;
                    RunSingleStateSearchInRegion(worstCaseHeatMapRegions.ElementAt(count).Key);
                    return;
                }
                ++count;
            }
            singleStateSearchRunProgressListener.SingleStateSearchFinished(
                matlabRunOutput.CheckOutput(),
                ((SingleStateSearchRunOutput)matlabRunOutput).GetSingleStateSearchResultsFolderPath());
        }
Ejemplo n.º 2
0
 protected override void ReportResultsOnRunFinish(MatlabRunOutput matlabRunOutput)
 {
     singleTestRunProgressListener.TestFinished(matlabRunOutput.CheckOutput());
 }
Ejemplo n.º 3
0
 protected override void ReportResultsOnRunFinish(MatlabRunOutput matlabRunOutput)
 {
     randomExplorationProgressListener.RandomExplorationFinished(
         matlabRunOutput.CheckOutput(),
         ((RandomExplorationRunOutput)matlabRunOutput).GetRandomExplorationResultsFolderPath());
 }