removed early exit from main loop

This commit is contained in:
2025-11-25 13:09:33 -08:00
parent 59805dff72
commit 352d2ed1de
2 changed files with 2 additions and 16 deletions

View File

@@ -14,7 +14,6 @@ classdef miSim
sensorPerformanceMinimum = 1e-6; % minimum sensor performance to allow assignment of a point in the domain to a partition
partitioning = NaN;
performance = NaN; % current cumulative sensor performance
oldMeanTotalPerf = 0;
fPerf; % performance plot figure
end
@@ -55,4 +54,4 @@ classdef miSim
methods (Access = private)
[v] = setupVideoWriter(obj);
end
end
end