-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69b21d4
commit 82afa0c
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# zero-dimensional hom_components #4245 | ||
gap> l := FreeLieAlgebra(Integers,1); | ||
<free left module over Integers, and ring, with 1 generators> | ||
gap> List([0..2],Grading(l).hom_components); | ||
[ <free left module over Integers, with 0 generators>, | ||
<free left module over Integers, with 1 generators>, | ||
<free left module over Integers, with 0 generators> ] | ||
gap> a := FreeAssociativeAlgebra(Integers,2); | ||
<free left module over Integers, and ring, with 2 generators> | ||
gap> List([0..2],Grading(a).hom_components); | ||
[ <free left module over Integers, with 0 generators>, | ||
<free left module over Integers, with 2 generators>, | ||
<free left module over Integers, with 4 generators> ] |