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

BasisLieHighestWeight: Rename some variables in doctests #4461

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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: 6 additions & 6 deletions experimental/BasisLieHighestWeight/src/UserFunctions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ If this is a weighted ordering, the height of the corresponding root is used as

# Examples
```jldoctest
julia> bases = basis_coordinate_ring_kodaira(:G, 2, [1,0], 6; monomial_ordering = :invlex)
julia> mon_bases = basis_coordinate_ring_kodaira(:G, 2, [1,0], 6; monomial_ordering = :invlex)
6-element Vector{Tuple{MonomialBasis, Vector{ZZMPolyRingElem}}}:
(Monomial basis of a highest weight module with highest weight [1, 0] over Lie algebra of type G2, [1, x1, x3, x1*x3, x1^2*x3, x3*x4, x1*x3*x4])
(Monomial basis of a highest weight module with highest weight [2, 0] over Lie algebra of type G2, [x4, x1*x4, x4^2, x3*x4^2, x1*x3*x4^2])
Expand All @@ -418,7 +418,7 @@ julia> bases = basis_coordinate_ring_kodaira(:G, 2, [1,0], 6; monomial_ordering
(Monomial basis of a highest weight module with highest weight [5, 0] over Lie algebra of type G2, [x1^2*x4^6, x4^7, x1*x4^7, x2*x4^3*x5, x1*x2*x4^3*x5, x2*x3*x4^3*x5, x1*x2*x3*x4^3*x5, x1^2*x2*x3*x4^3*x5, x2*x3^2*x4^3*x5, x1*x2*x3^2*x4^3*x5, x1^2*x2*x3^2*x4^3*x5, x2*x4^4*x5])
(Monomial basis of a highest weight module with highest weight [6, 0] over Lie algebra of type G2, [x4^9, x1*x3*x4^4*x5, x2*x4^5*x5, x3*x4^5*x5, x3^2*x4^5*x5, x2*x3^2*x4^5*x5, x1*x2*x3^2*x4^5*x5, x3^4*x4*x5^2])

julia> [length(basis[2]) for basis in bases]
julia> [length(mon_basis[2]) for mon_basis in mon_bases]
6-element Vector{Int64}:
7
5
Expand All @@ -427,7 +427,7 @@ julia> [length(basis[2]) for basis in bases]
12
8

julia> bases[end][1]
julia> mon_bases[end][1]
Monomial basis of a highest weight module
of highest weight [6, 0]
of dimension 714
Expand Down Expand Up @@ -512,7 +512,7 @@ The monomial ordering is fixed to `degrevlex`.

# Examples
```jldoctest
julia> bases = basis_coordinate_ring_kodaira_ffl(:G, 2, [1,0], 6)
julia> mon_bases = basis_coordinate_ring_kodaira_ffl(:G, 2, [1,0], 6)
6-element Vector{Tuple{MonomialBasis, Vector{ZZMPolyRingElem}}}:
(Monomial basis of a highest weight module with highest weight [1, 0] over Lie algebra of type G2, [1, x6, x4, x3, x2, x1, x1*x6])
(Monomial basis of a highest weight module with highest weight [2, 0] over Lie algebra of type G2, [])
Expand All @@ -521,7 +521,7 @@ julia> bases = basis_coordinate_ring_kodaira_ffl(:G, 2, [1,0], 6)
(Monomial basis of a highest weight module with highest weight [5, 0] over Lie algebra of type G2, [])
(Monomial basis of a highest weight module with highest weight [6, 0] over Lie algebra of type G2, [])

julia> [length(basis[2]) for basis in bases]
julia> [length(mon_basis[2]) for mon_basis in mon_bases]
6-element Vector{Int64}:
7
0
Expand All @@ -530,7 +530,7 @@ julia> [length(basis[2]) for basis in bases]
0
0

julia> bases[end][1]
julia> mon_bases[end][1]
Monomial basis of a highest weight module
of highest weight [6, 0]
of dimension 714
Expand Down
Loading