-
Notifications
You must be signed in to change notification settings - Fork 128
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
LieAlgebras: Add Demazure character #4339
base: master
Are you sure you want to change the base?
LieAlgebras: Add Demazure character #4339
Conversation
Just for future reference: @janikapeters is a student assistant at RWTH Aachen under the supervision of @gfourier and me working on project A24, in particular in extending the |
|
||
function demazure_character(R::RootSystem, hw::Vector{<:IntegerUnion}, x::WeylGroupElem) | ||
return demazure_character(WeightLatticeElem(R, hw), x) | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please also add dispatches that take a LieAlgebra
as the first argument (cf. the character
methods in LieAlgebraModule.jl
), and ones that take a word instead of a WeylGroupElem
.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4339 +/- ##
==========================================
+ Coverage 84.48% 84.51% +0.02%
==========================================
Files 641 645 +4
Lines 85427 85679 +252
==========================================
+ Hits 72170 72408 +238
- Misses 13257 13271 +14
|
Co-authored-by: Lars Göttgens <[email protected]>
Implemented by the request of @lgoettgens and @gfourier
I am still writing documentation and tests