Skip to content

Commit 0257e79

Browse files
committed
Add Singular.jl extension and tests
- Implement Singular-backed methods for HomalgMatrix, syzygies (rows/columns and relative), bases, zero-decision, and left/right division (2- and 3-arg). - Add singular-ext-test.jl and include in test runner.
1 parent e87f9ab commit 0257e79

6 files changed

Lines changed: 1018 additions & 5 deletions

File tree

Project.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
name = "MatricesForHomalg"
22
uuid = "29b9b1b6-efa6-450e-8188-a5a2c25df071"
33
authors = ["Mohamed Barakat <mohamed.barakat@uni-siegen.de>", "Johanna Knecht <johanna.knecht@student.uni-siegen.de>"]
4-
version = "0.1.6"
4+
version = "0.1.7"
55

66
[deps]
77
Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"
88

9+
[weakdeps]
10+
Singular = "bcd08a7b-43d2-5ff7-b6d4-c458787f915c"
11+
12+
[extensions]
13+
MatricesForHomalgSingularExt = "Singular"
14+
915
[compat]
10-
Nemo = "0.48.0, 0.49, 0.50, 0.51, 0.52, 0.53"
16+
Nemo = "0.48.0, 0.49, 0.50, 0.51, 0.52, 0.53, 0.54"
17+
Singular = "0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28"
1118
julia = "1.9, 1.10, 1.11"
1219

1320
[extras]
1421
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
22+
Singular = "bcd08a7b-43d2-5ff7-b6d4-c458787f915c"
1523
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1624

1725
[targets]
18-
test = ["Test", "Documenter"]
26+
test = ["Test", "Documenter", "Singular"]

0 commit comments

Comments
 (0)