Come back to multicore process

This commit is contained in:
2020-12-16 11:38:25 +01:00
parent 5aa2ea8984
commit 6ad226fe84
7 changed files with 95 additions and 5 deletions

18
scripts/gennotcore.py Normal file
View File

@@ -0,0 +1,18 @@
f = open("core.txt", "r")
core = f.read().splitlines()
f.close()
f = open("hardCore.txt", "r")
hardCore = f.read().splitlines()
f.close()
f = open("all.txt", "r")
notCore_tmp = f.read().splitlines()
f.close()
notCore = list()
a = 0
f = open("notCore.txt", "w")
for name in notCore_tmp:
if name not in core and name not in hardCore:
a += 1
print(a, name)
print(name, file=f)
f.close()