-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
061f3c6
commit 36f2dfc
Showing
3 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import pytest | ||
|
||
from src.problems.AllPaths.algo.tensor.tensor import TensorSimpleAlgo, TensorDynamicAlgo | ||
|
||
|
||
@pytest.fixture(params=[TensorSimpleAlgo, TensorDynamicAlgo]) | ||
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[TensorSimpleAlgo, TensorDynamicAlgo], | ||
# but for these legacy implementations can't be used with SuiteSparse:GraphBLAS 8, | ||
# which we now use by default. | ||
@pytest.fixture(params=[]) | ||
def algo(request): | ||
return request.param |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import pytest | ||
|
||
from src.problems.SinglePath.algo.matrix_shortest_path.matrix_shortest_path_index import MatrixShortestAlgo | ||
|
||
|
||
@pytest.fixture(params=[MatrixShortestAlgo]) | ||
# If you use SuiteSparse:GraphBLAS 7, you can add `params=[MatrixShortestAlgo], | ||
# but for this legacy implementation can't be used with SuiteSparse:GraphBLAS 8, | ||
# which we now use by default. | ||
@pytest.fixture(params=[]) | ||
def algo(request): | ||
return request.param |