Changeset b98018 in git


Ignore:
Timestamp:
Apr 30, 1999, 12:39:54 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
96ec6c911e996190b7c0b34100afcdb3f73fedbd
Parents:
743c32dc08581746b2c57c945380207d94af8d91
Message:
* redFirst exit on h->p == NULL


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

Legend:

Unmodified
Added
Removed
  • Singular/kstd1.cc

    r743c32 rb98018  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kstd1.cc,v 1.33 1999-04-29 16:57:14 Singular Exp $ */
     4/* $Id: kstd1.cc,v 1.34 1999-04-30 10:39:53 obachman Exp $ */
    55/*
    66* ABSTRACT:
     
    403403  int j = 0;
    404404
     405  if (h->p == NULL) return;
    405406  if (TEST_OPT_CANCELUNIT) cancelunit(h);
    406407  d = pFDeg((*h).p)+(*h).ecart;
  • Singular/polys.cc

    r743c32 rb98018  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys.cc,v 1.36 1998-12-02 08:41:56 obachman Exp $ */
     4/* $Id: polys.cc,v 1.37 1999-04-30 10:39:54 obachman Exp $ */
    55
    66/*
     
    799799int pWTotaldegree(poly p)
    800800{
     801  assume(p != NULL);
    801802  int i, k;
    802803  int j =0;
Note: See TracChangeset for help on using the changeset viewer.