@@ -45,7 +45,8 @@ class SimDart implements SimDartInterface {
45
45
: random = Random (seed),
46
46
_now = now;
47
47
48
- bool _hasRun = false ;
48
+ RunState _runState = RunState .notStarted;
49
+ RunState get runState => _runState;
49
50
50
51
final Map <String , SimNum > _numProperties = {};
51
52
final Map <String , SimCounter > _counterProperties = {};
@@ -113,11 +114,11 @@ class SimDart implements SimDartInterface {
113
114
/// - [until] : The time at which execution should stop. Execution will include events
114
115
/// scheduled at this time (inclusive). If null, execution will continue indefinitely.
115
116
Future <SimResult > run ({int ? until}) async {
116
- if (_hasRun ) {
117
- throw StateError ('The simulation has already been run .' );
117
+ if (runState != RunState .notStarted ) {
118
+ throw StateError ('Simulation has already started .' );
118
119
}
119
120
120
- _hasRun = true ;
121
+ _runState = RunState .running ;
121
122
if (until != null && _now > until) {
122
123
throw ArgumentError ('`now` must be less than or equal to `until`.' );
123
124
}
@@ -139,6 +140,7 @@ class SimDart implements SimDartInterface {
139
140
await _terminator? .future;
140
141
_duration = _now - (_startTime ?? 0 );
141
142
_terminator = null ;
143
+ _runState = RunState .finished;
142
144
return _buildResult ();
143
145
}
144
146
@@ -277,6 +279,8 @@ class SimDart implements SimDartInterface {
277
279
}
278
280
}
279
281
282
+ enum RunState { notStarted, running, finished }
283
+
280
284
typedef StopCondition = bool Function (SimDart sim);
281
285
282
286
/// A helper class to access private members of the [SimDart] class.
0 commit comments