-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add test example to PR #3412 as requested by @thofma * docu invariants tori * readd algebraic.md * typo * Update docs/doc.main * add one more functions and corrections * correction * correction * addressing review * forgot to add corrected file --------- Co-authored-by: Lars Göttgens <[email protected]>
- Loading branch information
1 parent
222c200
commit 3c5f7fe
Showing
6 changed files
with
293 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
```@meta | ||
CurrentModule = Oscar | ||
``` | ||
|
||
# Invariants of Tori | ||
In this section, with notation as in the introduction to this chapter, $T =(K^{\ast})^m$ will be a torus of rank $m$ | ||
over a field $K$. To compute invariants of diagonal torus actions, OSCAR makes use of Algorithm 4.3.1 in [DK15](@cite) which, | ||
in particular, relies on algorithmic means from polyhedral geometry. | ||
|
||
## Creating Invariant Rings | ||
|
||
### How Tori and Their Representations are Given | ||
|
||
```@docs | ||
torus_group(F::Field, n::Int) | ||
``` | ||
|
||
```@docs | ||
rank(T::TorusGroup) | ||
``` | ||
|
||
```@docs | ||
field(T::TorusGroup) | ||
``` | ||
|
||
```@docs | ||
representation_from_weights(T::TorusGroup, W::Union{ZZMatrix, Matrix{<:Integer}, Vector{<:Int}}) | ||
``` | ||
|
||
```@docs | ||
group(r::RepresentationTorusGroup) | ||
``` | ||
|
||
### Constructor for Invariant Rings | ||
|
||
```@docs | ||
invariant_ring(r::RepresentationTorusGroup) | ||
``` | ||
|
||
|
||
## Fundamental Systems of Invariants | ||
|
||
```@docs | ||
fundamental_invariants(RT::TorGrpInvRing) | ||
``` | ||
|
||
|
||
## Invariant Rings as Affine Algebras | ||
|
||
```@docs | ||
affine_algebra(RT::TorGrpInvRing) | ||
``` |
Oops, something went wrong.