| 244 | } |
| 245 | |
| 246 | void exclude_set::update_excluded_points(bool recompute_los) |
| 247 | { |
| 248 | for (iterator it = exclude_roots.begin(); it != exclude_roots.end(); ++it) |
| 249 | { |
| 250 | travel_exclude &ex = it->second; |
| 251 | if (!ex.uptodate) |
| 252 | { |
| 253 | recompute_excluded_points(recompute_los); |
| 254 | return; |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | void exclude_set::recompute_excluded_points(bool recompute_los) |
| 260 | { |
no test coverage detected