Changeset adfb22 in git
- Timestamp:
- Nov 6, 2008, 3:47:04 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 8cd64eb888f63d0613de57a2244d263f37cdfc98
- Parents:
- ec958b6138fb3ed549065544917ade7aec3941d1
- Location:
- libfac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/charset/alg_factor.cc
rec958b radfb22 2 2 // emacs edit mode for this file is -*- C++ -*- 3 3 //////////////////////////////////////////////////////////// 4 /* $Id: alg_factor.cc,v 1.2 5 2008-11-06 14:05:51Singular Exp $ */4 /* $Id: alg_factor.cc,v 1.26 2008-11-06 14:47:03 Singular Exp $ */ 5 5 //////////////////////////////////////////////////////////// 6 6 // FACTORY - Includes … … 487 487 CFList as(mipo); 488 488 DEBOUTLN(CERR, "alg_factor: newfactoras( ", R); 489 Factorlist = newfactoras(R, as , 1); 489 int success=1; 490 Factorlist = newfactoras(R, as , success); 490 491 #else 491 492 // factor R over k … … 828 829 /* 829 830 $Log: not supported by cvs2svn $ 831 Revision 1.25 2008/11/06 14:05:51 Singular 832 *hannes: newfactoras 833 830 834 Revision 1.24 2008/06/10 14:49:14 Singular 831 835 *hannes: licence stuff -
libfac/factor/Factor.cc
rec958b radfb22 1 1 /////////////////////////////////////////////////////////////////////////////// 2 /* $Id: Factor.cc,v 1.4 8 2008-06-10 14:49:15Singular Exp $ */2 /* $Id: Factor.cc,v 1.49 2008-11-06 14:47:04 Singular Exp $ */ 3 3 static 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."; 4 4 /////////////////////////////////////////////////////////////////////////////// … … 1184 1184 d = i.getItem().exp(); 1185 1185 fac = i.getItem().factor(); 1186 G = newfactoras( fac, as, 1); 1186 int success=1; 1187 G = newfactoras( fac, as, success); 1187 1188 for ( k = G; k.hasItem(); ++k ) 1188 1189 { … … 1334 1335 /* 1335 1336 $Log: not supported by cvs2svn $ 1337 Revision 1.48 2008/06/10 14:49:15 Singular 1338 *hannes: licence stuff 1339 1336 1340 Revision 1.47 2008/06/01 17:48:14 Singular 1337 1341 *hannes: sqrfree etc
Note: See TracChangeset
for help on using the changeset viewer.