Tweaking.

This commit is contained in:
Daniel Lemire 2018-12-27 20:36:23 -05:00
parent 90d04fa60f
commit 97e20fb684
4 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -11,7 +11,7 @@ answer = []
for file in os.listdir(ourdir): for file in os.listdir(ourdir):
if file.endswith(".table"): if file.endswith(".table"):
fullpath = os.path.join(ourdir, file) fullpath = os.path.join(ourdir, file)
answer.append([file[:-6]]+getdata(fullpath)) answer.append([file[:-11]]+getdata(fullpath))
print("#simdjson RapidJSON sajson") print("#simdjson RapidJSON sajson")
answer.sort() answer.sort()
for l in answer: for l in answer:

Binary file not shown.

View File

@ -11,7 +11,7 @@ answer = []
for file in os.listdir(ourdir): for file in os.listdir(ourdir):
if file.endswith(".table"): if file.endswith(".table"):
fullpath = os.path.join(ourdir, file) fullpath = os.path.join(ourdir, file)
answer.append([file[:-6]]+getdata(fullpath)) answer.append([file[:-11]]+getdata(fullpath))
print("#simdjson RapidJSON sajson") print("#simdjson RapidJSON sajson")
answer.sort() answer.sort()
for l in answer: for l in answer: