Skip to content

Commit c80bc60

Browse files
committed
More deprecation fixes
1 parent a55154c commit c80bc60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

experimental/IntersectionTheory/src/blowup.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function present_finite_extension_ring(F::Oscar.AffAlgHom)
169169
y -= q * gensB_lift[i]
170170
end; ans)
171171

172-
FM = FreeModule(R, g)
172+
FM = free_module(R, g)
173173
gB = elem_type(FM)[FM(push!([j == i ? R(1) : R() for j in 1:g-1], -gensB_lift[i])) for i in 1:g-1]
174174
gJ = elem_type(FM)[FM([j==i ? x : R() for j in 1:g]) for x in gens(J) for i in 1:g]
175175
U = vcat(gB, gJ)

src/Modules/UngradedModules/FreeMod.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ free_module(R::MPolyLocRing, p::Int, name::VarName = :e; cached::Bool = false) =
7777
free_module(R::MPolyQuoLocRing, p::Int, name::VarName = :e; cached::Bool = false) = FreeMod(R, p, name, cached = cached)
7878

7979
#=XXX this cannot be as it is inherently ambiguous
80-
- FreeModule(R, n)
80+
- free_module(R, n)
8181
- direct sum of rings, ie. a ring
8282
- set of n-th powers of R
8383
thus the "category" needs to be set explicitly

0 commit comments

Comments
 (0)