Changeset 1f5d21d in git
- Timestamp:
- Apr 21, 1998, 3:20:39 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 8e16a6c3a121910925a67405d4a6e125dcd30b6b
- Parents:
- 559a4bf0a3b03fde23553e3ceb0d6c6ff9e2d4e3
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ChangeLog
r559a4b r1f5d21d 1 Tue Apr 21 15:19:10 MET DST 1998 hannes/jens 2 * gdc in Q(a) returns "not implemented" (clapsing.cc) 3 4 1 5 Fri Apr 17 09:53:53 MET DST 1998 hannes 2 6 * fixed a minor but very nasty bug: nlSetMap was resetting npPrimeM -
Singular/clapsing.cc
r559a4b r1f5d21d 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 // $Id: clapsing.cc,v 1. 29 1998-04-21 10:42:57 schmidtExp $5 // $Id: clapsing.cc,v 1.30 1998-04-21 13:20:39 Singular Exp $ 6 6 /* 7 7 * ABSTRACT: interface between Singular and factory … … 77 77 if (currRing->minpoly!=NULL) 78 78 { 79 CanonicalForm mipo=convSingTrClapP(((lnumber)currRing->minpoly)->z); 80 Variable a=rootOf(mipo); 81 CanonicalForm F( convSingAPClapAP( f,a ) ), G( convSingAPClapAP( g,a ) ); 82 res= convClapAPSingAP( gcd( F, G ) ); 79 if ( nGetChar()==1 ) /* Q(a) */ 80 { 81 WerrorS( feNotImplemented ); 82 } 83 else 84 { 85 CanonicalForm mipo=convSingTrClapP(((lnumber)currRing->minpoly)->z); 86 Variable a=rootOf(mipo); 87 CanonicalForm F( convSingAPClapAP( f,a ) ), G( convSingAPClapAP( g,a ) ); 88 res= convClapAPSingAP( gcd( F, G ) ); 89 } 83 90 } 84 91 else
Note: See TracChangeset
for help on using the changeset viewer.