Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjusting code in intersection theory #3922

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions experimental/IntersectionTheory/docs/src/AbstractVarieties.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,26 @@ abstract_grassmannian(k::Int, n::Int; bott::Bool = false, weights = :int, base::
abstract_flag_variety(dims::Int...; base::Ring = QQ, symbol::String = "c")
```

## New Varieties From Given Varieties/Bundles
### New Varieties From Given Varieties/Bundles

```@docs
complete_intersection(X::AbstractVariety, degs::Int...)
```

```@docs
zero_locus_section(F::AbstractBundle; class::Bool = false)
abstract_projective_bundle(F::AbstractBundle; symbol::String = "h")
```

```@docs
degeneracy_locus(k::Int, F::AbstractBundle, G::AbstractBundle; class::Bool=false)
abstract_flag_variety(F::AbstractBundle, d::Int; symbol::String="c")
```

```@docs
abstract_projective_bundle(F::AbstractBundle; symbol::String = "h")
zero_locus_section(F::AbstractBundle; class::Bool = false)
```

```@docs
degeneracy_locus(k::Int, F::AbstractBundle, G::AbstractBundle; class::Bool=false)
```

!!! note
Expand Down
52 changes: 40 additions & 12 deletions experimental/IntersectionTheory/src/Main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1079,13 +1079,16 @@
sch = det(matrix(S, M)) # Jacobi-Trudi
R = X.ring
if R isa MPolyQuoRing
StoX = hom(S, R.R.R, [wi.f.f for wi in w])
return AbstractBundle(X, X(R.R(StoX(sch))))
# StoX = hom(S, R.R.R, [wi.f.f for wi in w])
StoX = hom(S, base_ring(R).R, [wi.f.f for wi in w])
# return AbstractBundle(X, X(R.R(StoX(sch))))
return AbstractBundle(X, X(base_ring(R)(StoX(sch))))
else
StoX = hom(S, R.R, [wi.f for wi in w])
return AbstractBundle(X, X(StoX(sch)))
end
end

function giambelli(F::AbstractBundle, λ::Vector{Int})
R = F.parent.ring
M = [chern_class(F, λ[i]-i+j).f for i in 1:length(λ), j in 1:length(λ)]
Expand Down Expand Up @@ -1450,9 +1453,28 @@
@doc raw"""
degeneracy_locus(k::Int, F::AbstractBundle, G::AbstractBundle; class::Bool=false)

Return the `k`-degeneracy locus of a general map from `F` to `G`.
Return the `k`-th degeneracy locus of a general map from `F` to `G`.

Use the argument `class = true` to only compute the class of the degeneracy locus (Porteous' formula).

# Examples
```jldoctest
julia> P4 = abstract_projective_space(4, symbol = "H")
AbstractVariety of dim 4

julia> F = 2*OO(P4, -1)
AbstractBundle of rank 2 on AbstractVariety of dim 4

julia> G = OO(P4)+2*OO(P4, 1)
AbstractBundle of rank 3 on AbstractVariety of dim 4

julia> CZ = degeneracy_locus(1,F, G, class = true)
8*H^2

julia> CZ == chern_class(G-F, 2) # Porteous' formula
true

Use the argument `class = true` to only compute the class of the degeneracy locus.
```
"""
function degeneracy_locus(k::Int, F::AbstractBundle, G::AbstractBundle; class::Bool=false)
F, G = _coerce(F, G)
Expand Down Expand Up @@ -1574,7 +1596,7 @@
@doc raw"""
abstract_projective_bundle(F::AbstractBundle; symbol::String = "h")

Return the projective bundle of 1-dimensional subspaces of `F`.
Return the projective bundle of 1-dimensional subspaces in the fibers of `F`.

# Examples
```jldoctest
Expand Down Expand Up @@ -1746,12 +1768,12 @@
end

@doc raw"""
abstract_flag_variety(d::Int, F::AbstractBundle)
abstract_flag_variety(dims::Vector{Int}, F::AbstractBundle)
abstract_flag_variety(F::AbstractBundle, d::Int; symbol::String="c")
abstract_flag_variety(F::AbstractBundle, dims::Vector{Int}; symbol::String="c")

Construct the relative flag abstract_variety of a bundle $F$, parametrizing
flags of subspaces $V_{d_1}\subset V_{d_2}\subset\cdots\subset V_{d_k}$. The
last dimension (i.e., the rank of $F$) can be omitted.
Given integers, say, $d_1, \dots, d_{k}$ or a vector of such integers, and given an
abstract bundle $F$, return the abstract flag variety (flag bundle) of nested sequences
of subspaces of dimensions $d_1; \dots, d_{k}$ in the fibers of $F$.
"""
function abstract_flag_variety(F::AbstractBundle, d::Int; symbol::String="c") abstract_flag_variety(F, [d], symbol=symbol) end
function abstract_flag_variety(F::AbstractBundle, dims::Vector{Int}; symbol::String="c")
Expand All @@ -1770,11 +1792,17 @@
# FIXME ordering
# construct the ring
R = X.ring
syms = vcat([_parse_symbol(symbol, i, 1:r) for (i,r) in enumerate(ranks)]..., string.(gens(R.R)))
if R isa MPolyQuoRing
PR = base_ring(R)

Check warning on line 1796 in experimental/IntersectionTheory/src/Main.jl

View check run for this annotation

Codecov / codecov/patch

experimental/IntersectionTheory/src/Main.jl#L1796

Added line #L1796 was not covered by tests
else
PR = R
end
# syms = vcat([_parse_symbol(symbol, i, 1:r) for (i,r) in enumerate(ranks)]..., string.(gens(R.R)))
syms = vcat([_parse_symbol(symbol, i, 1:r) for (i,r) in enumerate(ranks)]..., string.(gens(PR)))
# ord = prod(ordering_dp(r) for r in ranks) * ordering(X.ring.R.R)
w = vcat([collect(1:r) for r in ranks]..., gradings(R))
R1 = graded_polynomial_ring(X.base, syms, w)[1]
pback = hom(R, R1, gens(R1)[n+1:end])
pback = hom(R, R1, gens(R1)[n+1:end]) # FIXME should always be well-defined
pfwd = hom(R1, R, vcat(repeat([R()], n), gens(R)))

# compute the relations
Expand Down
Loading