The actual problem
| 376 | public: |
| 377 | /// The actual problem |
| 378 | DistinctLinear(int n, int s) : x(*this,n,1,9) { |
| 379 | distinct(*this, x); |
| 380 | linear(*this, x, IRT_EQ, s); |
| 381 | branch(*this, x, INT_VAR_NONE(), INT_VAL_SPLIT_MIN()); |
| 382 | } |
| 383 | /// Constructor for cloning \a s |
| 384 | DistinctLinear(DistinctLinear& s) : Space(s) { |
| 385 | x.update(*this, s.x); |
nothing calls this directly
no test coverage detected