| 1187 | } |
| 1188 | |
| 1189 | static int measure(const std::vector<GeoBlock*> &arena, float threshold) |
| 1190 | { |
| 1191 | int count = 0; |
| 1192 | for (size_t i = 0; i < arena.size(); i++) |
| 1193 | count += arena[i]->measure_placement(threshold); |
| 1194 | return count; |
| 1195 | } |
| 1196 | |
| 1197 | void VeinExtent::link(GeoLayer *layer) |
| 1198 | { |
no test coverage detected