| 7 | namespace seissol { |
| 8 | |
| 9 | ActorStateStatistics::ActorStateStatistics(unsigned globalClusterId, LoopStatistics& loopStatistics) |
| 10 | : currentSample(time_stepping::ActorState::Synced), globalClusterId(globalClusterId), |
| 11 | loopStatistics(loopStatistics) {} |
| 12 | |
| 13 | void ActorStateStatistics::enter(time_stepping::ActorState actorState) { |
| 14 | if (actorState == currentSample.state) { |
nothing calls this directly
no outgoing calls
no test coverage detected