Changeset ad8e1b in git for factory/cf_gcd.cc


Ignore:
Timestamp:
Aug 6, 2008, 3:53:15 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
e8a0aaf34722c3d93f882019f7622c3419ed764d
Parents:
69b66ef25238d635e8046b0a178b0552b57b23c3
Message:
*hannes: QGCD, fieldGCD, etc


git-svn-id: file:///usr/local/Singular/svn/trunk@10949 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_gcd.cc

    r69b66ef rad8e1b  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_gcd.cc,v 1.64 2008-07-01 16:54:34 Singular Exp $ */
     2/* $Id: cf_gcd.cc,v 1.65 2008-08-06 13:53:15 Singular Exp $ */
    33
    44#include <config.h>
     
    519519    && (getCharacteristic() >100))
    520520    {
    521       fc=fieldGCD(fc,gc);
     521      return fieldGCD(f,g);
    522522    }
    523523    else if (isOn( SW_USE_EZGCD_P ) && (!fc_and_gc_Univariate))
     
    779779          )
    780780          {
    781             if ((f.level()==g.level()) && f.isUnivariate() && g.isUnivariate())
    782               return univarQGCD(f,g);
    783             else
     781            //if ((f.level()==g.level()) && f.isUnivariate() && g.isUnivariate())
     782            //  return univarQGCD(f,g);
     783            //else
    784784              return QGCD(f,g);
    785785          }
Note: See TracChangeset for help on using the changeset viewer.