add more detailed benchmarks.

This commit is contained in:
2019-12-11 23:16:18 -05:00
parent 19ebb332cd
commit 253a58ed01
2 changed files with 27 additions and 15 deletions

View File

@@ -3,7 +3,10 @@ from solver import Group
def A(n):
""""""
assert 1 <= n
assert 0 <= n
if n == 0:
return Group(0)
return Group.schlafli(*[3] * (n - 1))