| 2529 | } |
| 2530 | |
| 2531 | void Engine::preContextPushHook() |
| 2532 | { |
| 2533 | struct timespec start = TimeUtils::sampleMicro(); |
| 2534 | _boundManager.storeLocalBounds(); |
| 2535 | if ( _produceUNSATProofs ) |
| 2536 | _groundBoundManager.storeLocalBounds(); |
| 2537 | struct timespec end = TimeUtils::sampleMicro(); |
| 2538 | |
| 2539 | _statistics.incLongAttribute( Statistics::TIME_CONTEXT_PUSH_HOOK, |
| 2540 | TimeUtils::timePassed( start, end ) ); |
| 2541 | } |
| 2542 | |
| 2543 | void Engine::postContextPopHook() |
| 2544 | { |
no test coverage detected