Adding cut
| 136 | |
| 137 | /// Adding cut |
| 138 | static void cut(Space& home, const BoolExpr& expr) { |
| 139 | BoolVar o(home,0,1); |
| 140 | rel(home, o == expr); |
| 141 | when(home, o, &gf_success, &gf_dummy); |
| 142 | } |
| 143 | |
| 144 | template <int N> |
| 145 | struct c4Heuristic { |
no test coverage detected