| 201 | //bool important(df::coord pos, map<df::coord, set<Edge> >& edges, df::coord prev, set<df::coord>& importantPoints, set<Edge>& importantEdges); |
| 202 | |
| 203 | void newInvasionHandler(color_ostream& out, void* ptr) { |
| 204 | if ( activeDigging ) |
| 205 | return; |
| 206 | activeDigging = true; |
| 207 | findAndAssignInvasionJob(out, (void*)0); |
| 208 | } |
| 209 | |
| 210 | command_result diggingInvadersCommand(color_ostream& out, std::vector<std::string>& parameters) { |
| 211 | for ( size_t a = 0; a < parameters.size(); a++ ) { |
nothing calls this directly
no test coverage detected