-
-
Notifications
You must be signed in to change notification settings - Fork 544
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
3b1c99d
commit e3b9006
Showing
113 changed files
with
2,223 additions
and
1,497 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 @@ | ||
indent_by: ' ' |
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
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,19 +1,27 @@ | ||
py.install_sources('all.py', 'free_algebra_element_letterplace.pxd', 'free_algebra_letterplace.pxd', subdir : 'sage/algebras/letterplace') | ||
py.install_sources( | ||
'all.py', | ||
'free_algebra_element_letterplace.pxd', | ||
'free_algebra_letterplace.pxd', | ||
subdir: 'sage/algebras/letterplace', | ||
) | ||
|
||
extension_data_cpp = { | ||
'free_algebra_element_letterplace': files('free_algebra_element_letterplace.pyx'), | ||
'free_algebra_letterplace': files('free_algebra_letterplace.pyx'), | ||
'letterplace_ideal': files('letterplace_ideal.pyx'), | ||
'free_algebra_element_letterplace': files( | ||
'free_algebra_element_letterplace.pyx', | ||
), | ||
'free_algebra_letterplace': files('free_algebra_letterplace.pyx'), | ||
'letterplace_ideal': files('letterplace_ideal.pyx'), | ||
} | ||
|
||
foreach name, pyx : extension_data_cpp | ||
py.extension_module(name, | ||
sources: pyx, | ||
subdir: 'sage/algebras/letterplace', | ||
install: true, | ||
override_options : ['cython_language=cpp'], | ||
include_directories: [inc_cpython, inc_rings], | ||
dependencies: [py_dep, gmp, singular], | ||
) | ||
py.extension_module( | ||
name, | ||
sources: pyx, | ||
subdir: 'sage/algebras/letterplace', | ||
install: true, | ||
override_options: ['cython_language=cpp'], | ||
include_directories: [inc_cpython, inc_rings], | ||
dependencies: [py_dep, gmp, singular], | ||
) | ||
endforeach | ||
|
Oops, something went wrong.