| 169 | } |
| 170 | |
| 171 | void VISIBILITY_HIDDEN |
| 172 | assertImageStep(SolutionStep *wholeStep, ListHead *doneSubsteps) |
| 173 | { |
| 174 | SolArea area; |
| 175 | |
| 176 | area.offsetM = SIZE_MAX; |
| 177 | area.M = 0; |
| 178 | area.offsetN = SIZE_MAX; |
| 179 | area.N = 0; |
| 180 | listDoForEachPriv(doneSubsteps, accProcessed, &area); |
| 181 | assert((area.offsetM == wholeStep->args.offsetM) && |
| 182 | (area.M == wholeStep->args.M) && |
| 183 | (area.offsetM ==wholeStep->args.offsetM) && |
| 184 | (area.N == wholeStep->args.N)); |
| 185 | } |
| 186 | |
| 187 | void VISIBILITY_HIDDEN |
| 188 | releaseImageAssertion(ListHead *doneSubsteps) |
no test coverage detected