Return the solution as IntArgs
| 154 | } |
| 155 | /// Return the solution as IntArgs |
| 156 | IntArgs solution(void) { |
| 157 | IntArgs a(xs.size()); |
| 158 | for (int i = 0 ; i < a.size() ; ++i) |
| 159 | a[i] = xs[i].val(); |
| 160 | return a; |
| 161 | } |
| 162 | /// Expected solutions |
| 163 | virtual IntArgs* expectedSolutions(void) { return nullptr; } |
| 164 | }; |