v0.2.2
GenericCharacterTables v0.2.2
Merged pull requests:
- Add CI tests (#1) (@fingolfin)
- Use quadratic_field where possible (#8) (@fingolfin)
- Deploy documentation (#9) (@fingolfin)
- CI: enable cache management (#10) (@fingolfin)
- CI: don't test in Julia 1.6 for now (#11) (@fingolfin)
- Frac -> FracFieldElem (#19) (@fingolfin)
- Split gentab into two methods (#20) (@fingolfin)
- Return id of new characters (#21) (@fingolfin)
- Fix Oscar dependency (#22) (@fingolfin)
- Add
order
method for tables (#35) (@fingolfin) - Add show method for character tables (#37) (@fingolfin)
- Fix isgen -> is_gen (#38) (@fingolfin)
- nf_elem -> AbsSimpleNumFieldElem (#39) (@fingolfin)
- added
irrchars
andclasses
methods for tables (#40) (@SoongNoonien) - Comparing to 'nothing' should be done with === (#43) (@fingolfin)
- Remove some redundancy from the data tables (#44) (@fingolfin)
- Add setcongruence for a table (#45) (@fingolfin)
- Some nicer printing (#46) (@fingolfin)
- Add myself to authors list (#48) (@fingolfin)
- renamed
normalize
tonormal_form
(#49) (@SoongNoonien) - fixed some indentations (#50) (@SoongNoonien)
- reworked
nesum
(#51) (@SoongNoonien) - improved printing of
Cyclotomic
(#53) (@SoongNoonien) - fixed nesum for
lower > 1
(#56) (@SoongNoonien) - move
ParameterExceptions
toCycloFrac
to improve printing (#58) (@SoongNoonien) - fixed
CycloFrac
printing (#59) (@SoongNoonien) - moved tables out of
src
(#62) (@SoongNoonien) - Update CI settings (might restore Codecov) (#63) (@fingolfin)
- add
AbstractGenericCharacter
type (#64) (@SoongNoonien) - Remove ExtendableMatrix references from data/ (#65) (@SoongNoonien)
- add
norm
andscalar
functions forAbstractGenericCharacter
(#66) (@SoongNoonien) - remove unneeded char and class info (#67) (@SoongNoonien)
- add import name to tables (#68) (@SoongNoonien)
- add optional io paramenters and use Indent (#69) (@SoongNoonien)
- Character printing improvement (#70) (@SoongNoonien)
- use
@doc raw
in every docstring (#71) (@SoongNoonien) - improve information strings (#72) (@SoongNoonien)
- implement OSCAR's 2+1 printing for tables and chars (#74) (@SoongNoonien)
- move conversion and latex scripts out of src directory (#75) (@SoongNoonien)
- Delete tables_info.txt (#76) (@fingolfin)
- get rid of
e2p
(#77) (@SoongNoonien) - CI: test against 1.11, too (#78) (@fingolfin)
- adjust ring restrictions for Cyclo (#79) (@SoongNoonien)
- fixed usage of modulusring (#80) (@SoongNoonien)
- Revert exponent rationalization efforts (#81) (@SoongNoonien)
- Update UnivPolyRing usage (#84) (@lgoettgens)
- Update TagBot.yml (#86) (@lgoettgens)
- More updates for universal polynomials (#87) (@lgoettgens)
- [Backport 0.2] Make compatible with Abstractalgebra 0.42 (#91) (@lgoettgens)
- Update CI.yml (#92) (@lgoettgens)
Closed issues:
- Rewrite
information
strings using raw triple quoted Julia strings (#2) - Replace
number_field(polynomial(QQ,[-2,0,1]), "sqrt(2)")
byquadratic_field(2)
and so on (#5) - Adjust to OSCAR renamings, e.g.
PolyElem
->PolyRingElem
(#6) - Rename
normalize
tonormal_form
(#12) - Add
show
method forCharTable
(#14) - Getting the number of classes / characters? (#16)
- Find a better name for
e2p
(#18) - Ensure parameter exceptions of e.g. scalar products are printed nicer? (#24)
- Add a struct for representing "character types", say
GenericCharacter
orCharacterTypes
or so (#29) - Add
order
to get the order of a table (#30) - Add a
degree
method for characters (#31) isgen
not defined (#32)- TagBot trigger issue (#33)
- Store the name of the table in the table (for printing, debugging, reproducibility etc.) (#34)
- All
print*
methods should take an optionalio::IO
as first argument, and useIndent()
/Dedent()
(#42) - Improve printing of certain expressions (e.g. omit trivial coefficients, avoid redundant parenthesis etc.) (#47)
nesum
is broken forlower > 1
(#55)- Move
Tables
andGreenfunctions
outside ofsrc
, e.g. into newdata
ortables
subdirectory or so (#60)