Changeset adfb22 in git


Ignore:
Timestamp:
Nov 6, 2008, 3:47:04 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
8cd64eb888f63d0613de57a2244d263f37cdfc98
Parents:
ec958b6138fb3ed549065544917ade7aec3941d1
Message:
*hannes: newfactoras


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

Legend:

Unmodified
Added
Removed
  • libfac/charset/alg_factor.cc

    rec958b radfb22  
    22// emacs edit mode for this file is -*- C++ -*-
    33////////////////////////////////////////////////////////////
    4 /* $Id: alg_factor.cc,v 1.25 2008-11-06 14:05:51 Singular Exp $ */
     4/* $Id: alg_factor.cc,v 1.26 2008-11-06 14:47:03 Singular Exp $ */
    55////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    487487      CFList as(mipo);
    488488      DEBOUTLN(CERR, "alg_factor: newfactoras( ", R);
    489       Factorlist = newfactoras(R, as , 1);
     489      int success=1;
     490      Factorlist = newfactoras(R, as , success);
    490491      #else
    491492      // factor R over k
     
    828829/*
    829830$Log: not supported by cvs2svn $
     831Revision 1.25  2008/11/06 14:05:51  Singular
     832*hannes: newfactoras
     833
    830834Revision 1.24  2008/06/10 14:49:14  Singular
    831835*hannes: licence stuff
  • libfac/factor/Factor.cc

    rec958b radfb22  
    11///////////////////////////////////////////////////////////////////////////////
    2 /* $Id: Factor.cc,v 1.48 2008-06-10 14:49:15 Singular Exp $ */
     2/* $Id: Factor.cc,v 1.49 2008-11-06 14:47:04 Singular Exp $ */
    33static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\nPlease include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";
    44///////////////////////////////////////////////////////////////////////////////
     
    11841184          d = i.getItem().exp();
    11851185          fac = i.getItem().factor();
    1186           G = newfactoras( fac, as, 1);
     1186          int success=1;
     1187          G = newfactoras( fac, as, success);
    11871188          for ( k = G; k.hasItem(); ++k )
    11881189          {
     
    13341335/*
    13351336$Log: not supported by cvs2svn $
     1337Revision 1.48  2008/06/10 14:49:15  Singular
     1338*hannes: licence stuff
     1339
    13361340Revision 1.47  2008/06/01 17:48:14  Singular
    13371341*hannes: sqrfree etc
Note: See TracChangeset for help on using the changeset viewer.