-
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.
re-added the
ViewObj
method for generic fields
This method had been lost in 2012 (see Commit v4.6.0) when a `ViewString` method had replaced it. Note that other `ViewObj` methods for the objects in question are applicable that have a higher rank than the delegation to `ViewString`. The same happens for many objects, but for the moment I want to fix the behavior for fields. (This could have been noticed in `tst/testbugfix/2012-08-14-t00271.tst`.)
- Loading branch information
1 parent
0672c46
commit 55b1aec
Showing
3 changed files
with
20 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# 2012/08/14 (AK) | ||
gap> R:=PolynomialRing(GF(5),"mu");; | ||
gap> mu:=Indeterminate(GF(5));; | ||
gap> T:=AlgebraicExtension(GF(5),mu^5-mu+1);; | ||
gap> T:=AlgebraicExtension(GF(5),mu^5-mu+1); | ||
<field of size 3125> | ||
gap> A:=PolynomialRing(T,"x"); | ||
<field of size 3125>[x] |
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