diff options
Diffstat (limited to 'src/exhaustive/exhaustive.c')
| -rw-r--r-- | src/exhaustive/exhaustive.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/exhaustive/exhaustive.c b/src/exhaustive/exhaustive.c index f2c555b..5c50a71 100644 --- a/src/exhaustive/exhaustive.c +++ b/src/exhaustive/exhaustive.c @@ -87,12 +87,16 @@ static void exhaustive_ginit(gen_t *generators, const config_t *cfg) { case POINTS_PRIME: generators[OFFSET_POINTS] = &points_gen_prime; break; + case POINTS_NONPRIME: + generators[OFFSET_POINTS] = &points_gen_nonprime; + break; case POINTS_ALL: generators[OFFSET_POINTS] = &points_gen_allgroups; break; case POINTS_NONE: generators[OFFSET_POINTS] = &gen_skip; break; + } } |
