Refactoring

This commit is contained in:
Michael Schimmel
2025-06-03 18:20:02 +02:00
parent 561a3c6bb5
commit 556690fa5e
12 changed files with 152 additions and 155 deletions
+3 -3
View File
@@ -333,7 +333,7 @@ const
StressTestFutureCount = 100; // Number of futures for the stress test
var
Futures: TArray<TFuture<Integer>>;
doneStates: TArray<IMycState>;
doneStates: TArray<TState>;
combinedStateAll: IMycState;
masterFuture: TFuture<Boolean>;
i: Integer;
@@ -397,8 +397,8 @@ const
QuickFutureIndex = StressTestFutureCount div 3; // Designate one future to be quicker
var
Futures: TArray<TFuture<Integer>>;
doneStates: TArray<IMycState>;
combinedStateAny: IMycState;
doneStates: TArray<TState>;
combinedStateAny: TState;
masterFuture: TFuture<Boolean>;
i: Integer;
isAtLeastOneSet: Boolean;