This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src/sage/features/: Move features depending on optional packages to s…
…eparate files
- Loading branch information
Matthias Koeppe
committed
Oct 7, 2021
1 parent
654d09c
commit f63a7d0
Showing
5 changed files
with
44 additions
and
43 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from . import PythonModule | ||
from .join_feature import JoinFeature | ||
|
||
|
||
class Mcqd(JoinFeature): | ||
|
||
def __init__(self): | ||
# Currently part of sagemath_standard, conditionally built. | ||
# Will be changed to spkg='sagemath_mcqd' later | ||
JoinFeature.__init__(self, 'mcqd', | ||
[PythonModule('sage.graphs.mcqd', spkg='mcqd')]) |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from . import PythonModule | ||
from .join_feature import JoinFeature | ||
|
||
|
||
class Meataxe(JoinFeature): | ||
|
||
def __init__(self): | ||
# Currently part of sagemath_standard, conditionally built. | ||
# Will be changed to spkg='sagemath_meataxe' later | ||
JoinFeature.__init__(self, 'meataxe', | ||
[PythonModule('sage.matrix.matrix_gfpn_dense', spkg='meataxe')]) |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from . import PythonModule | ||
from .join_feature import JoinFeature | ||
|
||
|
||
class Tdlib(JoinFeature): | ||
|
||
def __init__(self): | ||
# Currently part of sagemath_standard, conditionally built. | ||
# Will be changed to spkg='sagemath_tdlib' later | ||
JoinFeature.__init__(self, 'tdlib', | ||
[PythonModule('sage.graphs.graph_decompositions.tdlib', spkg='tdlib')]) |