Skip to content

Commit

Permalink
minor changes to the packages ExteriorIdeals and ExteriorModules to g…
Browse files Browse the repository at this point in the history
…et them working with Complexes
  • Loading branch information
mikestillman committed Oct 16, 2024
1 parent 0eefb20 commit 7a7ed25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions M2/Macaulay2/packages/ExteriorIdeals.m2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ newPackage(
"version at publication" => "1.0",
"volume number" => "8",
"volume URI" => "https://msp.org/jsag/2018/8-1/"
}
},
PackageExports => {"Complexes"}
)

export {
Expand Down Expand Up @@ -370,7 +371,7 @@ stableIdeal Ideal := I -> (
-- Computes the minimal Betti numbers of a graded ideal
----------------------------------------------------------------------------------------------
minimalBettiNumbers = method(Options => {LengthLimit => infinity})
minimalBettiNumbers Ideal := BettiTally => opts -> I -> betti res(ideal flatten entries mingens I, opts)
minimalBettiNumbers Ideal := BettiTally => opts -> I -> betti freeResolution(ideal flatten entries mingens I, opts)


-------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions M2/Macaulay2/packages/ExteriorModules.m2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ newPackage(
},
Headline => "monomial modules over exterior algebras",
DebuggingMode => false,
PackageExports=>{"ExteriorIdeals"},
PackageExports=>{"ExteriorIdeals", "Complexes"},
Keywords => {"Commutative Algebra"},
Certification => {
"journal name" => "The Journal of Software for Algebra and Geometry",
Expand Down Expand Up @@ -459,7 +459,7 @@ O
-------------------------------------------------------------------------------------------
-- compute the (minimal) Betti numbers of M
----------------------------------------------------------------------------------------------
minimalBettiNumbers Module := opts -> M -> betti res(image mingens M, opts)
minimalBettiNumbers Module := opts -> M -> betti freeResolution(image mingens M, opts)


-------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 7a7ed25

Please sign in to comment.