partial list of integer matrices

This commit is contained in:
Carl Pearson
2021-11-25 05:58:48 -08:00
parent 54204ea086
commit 19590a9f21
3 changed files with 497 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ def ensure_matrix_link(downDir, linkDir, mat):
files = os.listdir(downDir / mat.name)
for f in files:
if f == mat.name + ".mtx":
src = downDir / f
src = downDir / mat.name / f
dst = linkDir / (mat.name + ".mtx")
print(f"{src} <- {dst}")
try: