Check to see if context levels array has entries at position 'level'.
| 37 | |
| 38 | // Check to see if context levels array has entries at position 'level'. |
| 39 | static bool _AllPathsCtx_LevelNotEmpty(const AllPathsCtx *ctx, uint level) { |
| 40 | return (level < array_len(ctx->levels) && array_len(ctx->levels[level]) > 0); |
| 41 | } |
| 42 | |
| 43 | void addOutgoingNeighbors |
| 44 | ( |
no test coverage detected