Skip to content

Commit

Permalink
address @standage comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jun 27, 2016
1 parent 3f34079 commit 36584ea
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sandbox/extract-compact-dbg.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# graph settings
DEFAULT_KSIZE=31
NODEGRAPH_SIZE=8e8 # small, big is 2e8
NODEGRAPH_SIZE=8e8

# minhash settings
MH_SIZE_DIVISOR=50
Expand Down Expand Up @@ -72,9 +72,8 @@ def main():
parser.add_argument('-o', '--output', default=None)
parser.add_argument('-k', '--ksize', default=DEFAULT_KSIZE, type=int)
parser.add_argument('-x', '--tablesize', default=NODEGRAPH_SIZE,
type=float)
type=float)
parser.add_argument('--force', action='store_true')
#parser.add_argument('--gml', action='store_true')
args = parser.parse_args()

assert args.ksize % 2, "ksize must be odd"
Expand Down

0 comments on commit 36584ea

Please sign in to comment.