Changeset 1f5d21d in git


Ignore:
Timestamp:
Apr 21, 1998, 3:20:39 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
8e16a6c3a121910925a67405d4a6e125dcd30b6b
Parents:
559a4bf0a3b03fde23553e3ceb0d6c6ff9e2d4e3
Message:
* hannes/jens: gcd in Q(a) retuns "not impl."


git-svn-id: file:///usr/local/Singular/svn/trunk@1410 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/ChangeLog

    r559a4b r1f5d21d  
     1Tue Apr 21 15:19:10 MET DST 1998 hannes/jens
     2  * gdc in Q(a) returns "not implemented" (clapsing.cc)
     3 
     4
    15Fri Apr 17 09:53:53 MET DST 1998 hannes
    26 * fixed a minor but very nasty bug: nlSetMap was resetting npPrimeM
  • Singular/clapsing.cc

    r559a4b r1f5d21d  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: clapsing.cc,v 1.29 1998-04-21 10:42:57 schmidt Exp $
     5// $Id: clapsing.cc,v 1.30 1998-04-21 13:20:39 Singular Exp $
    66/*
    77* ABSTRACT: interface between Singular and factory
     
    7777    if (currRing->minpoly!=NULL)
    7878    {
    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      }
    8390    }
    8491    else
Note: See TracChangeset for help on using the changeset viewer.