refactor group representation

This commit is contained in:
2019-12-11 21:50:40 -05:00
parent 65077e0312
commit 0917801e97
4 changed files with 269 additions and 198 deletions

16
tests.py Normal file
View File

@@ -0,0 +1,16 @@
import time
import groups
if __name__ == '__main__':
g = groups.T(100)
s = time.time()
table = g.solve()
e = time.time()
print(f'elapsed = {e - s:.3g}s')
print(len(table))
if len(table) < 20:
print(table)