| 40 | namespace Gecode { |
| 41 | |
| 42 | void |
| 43 | sequence(Home home, const SetVarArgs& xa) { |
| 44 | if (xa.size()==0) |
| 45 | throw TooFewArguments("Set::seq"); |
| 46 | GECODE_POST; |
| 47 | ViewArray<SetView> x(home,xa); |
| 48 | GECODE_ES_FAIL(Sequence::Seq::post(home, x)); |
| 49 | } |
| 50 | |
| 51 | void |
| 52 | sequence(Home home, const SetVarArgs& xa, SetVar y) { |
no test coverage detected