Changeset cc94b0a in git for Singular/clapsing.cc


Ignore:
Timestamp:
Mar 31, 1998, 11:00:50 AM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
bc82d60fa171675a0c23a3e2051318500187aa39
Parents:
c9ea817ef59b4d9f8adaa507840ddb8ff4d4a945
Message:
Tue Mar 31 10:47:06 MET DST 1998 hannes
        * feread.cc: fixed handling of empty history
	* clapsing.cc: fixed gcd(0,..) and gcd(..,0) -> pOne()
	* febase.h/febase.inc: renaming of scanner variables
	  ( yy_blocklineno, yy_noeof)
	* febase.inc: increased speed in feReadLine
	* minor changes in scanner/grammar/iparith.cc (example)


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

Legend:

Unmodified
Added
Removed
  • Singular/clapsing.cc

    rc9ea817 rcc94b0a  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: clapsing.cc,v 1.25 1998-02-17 15:07:51 obachman Exp $
     5// $Id: clapsing.cc,v 1.26 1998-03-31 09:00:43 Singular Exp $
    66/*
    77* ABSTRACT: interface between Singular and factory
     
    2626poly singclap_gcd ( poly f, poly g )
    2727{
     28  if ((f==NULL)||(g==NULL))
     29    return pOne();
     30
    2831  poly res=NULL;
    2932 
Note: See TracChangeset for help on using the changeset viewer.