Skip to content

Commit

Permalink
HYP-177 Reorg entityset tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bonicim committed Oct 25, 2023
1 parent e8a3a89 commit a249417
Show file tree
Hide file tree
Showing 5 changed files with 706 additions and 628 deletions.
18 changes: 9 additions & 9 deletions hypernetx/classes/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,27 @@ def __init__(self, static=False):
)
self.labels = OrderedDict(
[
("edges", ["P", "R", "S", "L", "O", "I"]),
("nodes", ["A", "C", "E", "K", "T1", "T2", "V"]),
("edges", [p, r, s, l, o, i]),
("nodes", [a, c, e, k, t1, t2, v]),
]
)

self.data = np.array(
[
[0, 0],
[0, 1],
[0, 2],
[0, 3],
[1, 0],
[1, 2],
[1, 3],
[2, 0],
[2, 2],
[2, 4],
[2, 3],
[2, 5],
[2, 6],
[3, 1],
[3, 3],
[3, 2],
[4, 4],
[4, 5],
[4, 6],
[5, 0],
[5, 3],
[5, 5],
]
)
Expand Down
Loading

0 comments on commit a249417

Please sign in to comment.