Skip to content

Commit

Permalink
mon
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterLuschny committed Jan 16, 2024
1 parent dd4788a commit 1d5e4d0
Show file tree
Hide file tree
Showing 4 changed files with 987 additions and 91 deletions.
2 changes: 1 addition & 1 deletion src/LabeledGraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def LabeledGraphs(n: int, k: int) -> int:
if __name__ == "__main__":
from _tabltest import TablTest

TablTest(LabeledGraphs)
TablTest(LabeledGraphs, short=True)
4 changes: 2 additions & 2 deletions src/_tablsinglemake.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ def SingleMake(fun: tgen) -> None:
"""
SaveTraitsToDB(fun)
ConvertDBtoCSVandMD(GetDataPath(fun.id, "db"), fun.id)
#CsvToHtml(fun)
CsvToHtml(fun)
SingleStatistic(fun)
PrintSummary(fun.id)


if __name__ == "__main__":
from B import B as triangle
from Abel import Abel as triangle
SingleMake(triangle)
2 changes: 1 addition & 1 deletion src/_tabltest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def TablTest(T: tgen, dim: int = 8, short: bool = False) -> None:
print(f"py> tabl[{arg}][{a2}] =")
print(gen(arg)[arg // 2])
except ValueError:
print("Exceeds the limit for integer string conversion.")
print("ValueError: Exceeds the limit for integer string conversion.")

V = InvertTabl(T.tab(8))
if V == []:
Expand Down
Loading

0 comments on commit 1d5e4d0

Please sign in to comment.