Skip to content

Commit

Permalink
Bump max keys to 2 billion.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpn committed Feb 17, 2020
1 parent bc90107 commit 3b95651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PerfectHash/PerfectHashTableCreate.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Module Name:
#include "stdafx.h"

//
// Cap the maximum key set size we're willing to process to 10 million.
// Cap the maximum key set size we're willing to process to 2 billion.
//

#define MAXIMUM_NUMBER_OF_KEYS 10000000
#define MAXIMUM_NUMBER_OF_KEYS 2000000000

//
// Define the threshold for how many attempts need to be made at finding a
Expand Down

0 comments on commit 3b95651

Please sign in to comment.