()
| 766 | |
| 767 | @pytest.fixture(scope="module") |
| 768 | def bfs_result(): |
| 769 | ret = {} |
| 770 | ret["directed"] = np.loadtxt( |
| 771 | "{}/ldbc/p2p-31-BFS-directed".format(property_dir), dtype=int |
| 772 | ) |
| 773 | ret["undirected"] = np.loadtxt(f"{property_dir}/ldbc/p2p-31-BFS", dtype=int) |
| 774 | yield ret |
| 775 | |
| 776 | |
| 777 | @pytest.fixture(scope="module") |