| 2565 | } |
| 2566 | |
| 2567 | void Engine::resetStatistics() |
| 2568 | { |
| 2569 | Statistics statistics; |
| 2570 | _statistics = statistics; |
| 2571 | _smtCore.setStatistics( &_statistics ); |
| 2572 | _tableau->setStatistics( &_statistics ); |
| 2573 | _rowBoundTightener->setStatistics( &_statistics ); |
| 2574 | _preprocessor.setStatistics( &_statistics ); |
| 2575 | _activeEntryStrategy->setStatistics( &_statistics ); |
| 2576 | |
| 2577 | _statistics.stampStartingTime(); |
| 2578 | } |
| 2579 | |
| 2580 | void Engine::clearViolatedPLConstraints() |
| 2581 | { |
nothing calls this directly
no test coverage detected