| 2681 | } |
| 2682 | |
| 2683 | void Engine::updateDirections() |
| 2684 | { |
| 2685 | if ( GlobalConfiguration::USE_POLARITY_BASED_DIRECTION_HEURISTICS ) |
| 2686 | for ( const auto &constraint : _plConstraints ) |
| 2687 | if ( constraint->supportPolarity() && constraint->isActive() && |
| 2688 | !constraint->phaseFixed() ) |
| 2689 | constraint->updateDirection(); |
| 2690 | } |
| 2691 | |
| 2692 | void Engine::decideBranchingHeuristics() |
| 2693 | { |
nothing calls this directly
no test coverage detected