Changeset b87513c in git
- Timestamp:
- Aug 6, 2001, 10:33:08 AM (22 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- f9aada33010d06acda2bec6c9b188429c57541e2
- Parents:
- e90314894f11eeb9e91dd2e8b38dbaa5f46569d9
- Location:
- libfac
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/ChangeLog
re903148 rb87513c 1 Thu Jun 28 18:27:55 CEST 2001 Hans Schoenemann <hannes@mathematik.uni-kl.de> 2 3 * fixes to resultant, newfactoras, IrrCharSeries, Factorize 4 1 5 Tue Apr 10 15:34:04 CEST 2001 Hans Schoenemann <hannes@mathematik.uni-kl.de> 2 6 … … 5 9 Wed Jun 03 14:42:51 1998 <pohl@FUECHSE> 6 10 7 8 NT will find Factor.h before factor.h 11 * Makefile.in (CPPFLAGS): include paths fixed so that Windows 12 NT will find Factor.h before factor.h 9 13 10 14 1998-05-25 Olaf Bachmann <obachman@mathematik.uni-kl.de> 11 15 12 13 14 15 16 16 * charset/alg_factor.cc: replaced identifiers 'random' by 17 'myrandom' to avoid name conflicts with the built-in (stdlib) 18 library function 'random' which might be a macro -- and, actually 19 is under gcc v 2.6.3 20 17 21 18 22 Wed Apr 22 16:12:16 1998 Jens Schmidt <schmidt@mathematik.uni-kl.de> 19 23 20 21 22 24 * header.tpl, factor.h, factor/version.cc (libfac_name, 25 libgac_version, libfac_date, libfac_athur): defined/declared 26 const 23 27 24 28 Thu Mar 12 14:32:06 1998 Jens Schmidt <schmidt@mathematik.uni-kl.de> 25 29 26 27 30 * charset/csutil.cc, charset/alg_factor.cc: all references to 31 `common_den()' replaced by `bCommonDen()' 28 32 29 33 Fri Feb 27 11:32:02 1998 Jens Schmidt <schmidt@mathematik.uni-kl.de> 30 34 31 32 35 * factor/tmpl_inst.cc: template names adapted (`*.cc' -> 36 `ftmpl_*.cc') 33 37 34 38 Tue May 13 11:32:11 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 35 39 36 37 40 * Makefile.in (uninstall): took out template installation 41 (all): added OPTOBJ target so that the dir is created, if necessary 38 42 39 43 Sun May 25 14:06:12 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 40 44 41 42 45 * configure.in: Fixed handling of CXXFLAGS -- it is not touched if 46 set as env var 43 47 44 48 Fri May 23 11:10:18 1997 Olaf Bachmann <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)> 45 49 46 47 is assigned 50 * configure.in (CXXFLAGS): Check whether they are set before value 51 is assigned 48 52 49 53 Tue May 13 20:09:03 1997 Olaf Bachmann <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)> 50 54 51 52 55 * configure.in: Exit with error if factory.h was not found and 56 --enable-factory option was not explicitely given 53 57 54 58 Tue May 13 11:32:11 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 55 59 56 60 * Makefile.in (uninstall): took out template installation 57 61 58 62 Tue May 6 09:30:51 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 59 63 60 64 * Added ranlib after installing libs -- Suns seem to need it 61 65 62 66 * configure.in: Manuallu put INSTALL into Makefile.in 63 67 64 68 Mon May 5 15:43:58 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 65 69 66 70 * added installation of templates 67 71 68 72 Sat May 3 19:58:53 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 69 73 70 74 * Makefile.in (CPPFLAGS): Put -I. before other CPPFLAGS 71 75 -
libfac/charset/alg_factor.cc
re903148 rb87513c 3 3 // emacs edit mode for this file is -*- C++ -*- 4 4 //////////////////////////////////////////////////////////// 5 static char * rcsid = "$Id: alg_factor.cc,v 1. 7 2001-06-27 13:58:05Singular Exp $";5 static char * rcsid = "$Id: alg_factor.cc,v 1.8 2001-08-06 08:32:53 Singular Exp $"; 6 6 //////////////////////////////////////////////////////////// 7 7 // FACTORY - Includes … … 379 379 else 380 380 { 381 #if 1 381 382 Variable XX; 382 383 CanonicalForm mipo=getMipo(X,XX); 383 384 CFList as(mipo); 384 385 Factorlist = newfactoras(R, as , 1); 386 #else 387 // factor R over k 388 Factorlist = Factorize(R); 389 #endif 385 390 } 386 391 } … … 671 676 /* 672 677 $Log: not supported by cvs2svn $ 678 Revision 1.7 2001/06/27 13:58:05 Singular 679 *hannes/GP: debug newfactoras, char_series, ... 680 673 681 Revision 1.6 2001/06/21 14:57:04 Singular 674 682 *hannes/GP: Factorize, newfactoras, ... -
libfac/charset/charset.cc
re903148 rb87513c 2 2 //////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 static char * rcsid = "$Id: charset.cc,v 1. 7 2001-06-27 13:58:06Singular Exp $";4 static char * rcsid = "$Id: charset.cc,v 1.8 2001-08-06 08:32:53 Singular Exp $"; 5 5 ///////////////////////////////////////////////////////////// 6 6 // FACTORY - Includes … … 581 581 { 582 582 #ifdef SINGULAR 583 WarnS("libfac: Factoring over algebraic function field required!");583 //WarnS("libfac: Factoring over algebraic function field required!"); 584 584 #else 585 585 #ifndef NOSTREAMIO … … 599 599 /* 600 600 $Log: not supported by cvs2svn $ 601 Revision 1.7 2001/06/27 13:58:06 Singular 602 *hannes/GP: debug newfactoras, char_series, ... 603 601 604 Revision 1.6 2000/03/08 12:54:35 obachman 602 605 * comment out warning "libfac: Factoring over algebraic function -
libfac/factor/Factor.cc
re903148 rb87513c 1 1 /* Copyright 1996 Michael Messollen. All rights reserved. */ 2 2 /////////////////////////////////////////////////////////////////////////////// 3 static char * rcsid = "$Id: Factor.cc,v 1. 7 2001-06-21 14:57:05Singular Exp $ ";3 static char * rcsid = "$Id: Factor.cc,v 1.8 2001-08-06 08:32:54 Singular Exp $ "; 4 4 static char * errmsg = "\nYou found a bug!\nPlease inform (Michael Messollen) michael@math.uni-sb.de \nPlease include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you."; 5 5 /////////////////////////////////////////////////////////////////////////////// … … 527 527 degree(getMipo(Extension,'x')) ); 528 528 TIMING_START(evaluate_time); 529 #if 0529 #if 1 530 530 Outputlist = factorize(F,Extension); 531 531 #else … … 637 637 DEBOUTLN(cout, "Univ. Factorization over extension of degree ", 638 638 degree(getMipo(Extension,'x')) ); 639 #if 0639 #if 1 640 640 UnivariateFactorlist = factorize(ffuni,Extension); 641 641 #else … … 823 823 /* 824 824 $Log: not supported by cvs2svn $ 825 Revision 1.7 2001/06/21 14:57:05 Singular 826 *hannes/GP: Factorize, newfactoras, ... 827 825 828 Revision 1.6 2001/06/18 08:44:41 pfister 826 829 * hannes/GP/michael: factory debug, Factorize -
libfac/factor/Truefactor.cc
re903148 rb87513c 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 //static char * rcsid = "@(#) $Id: Truefactor.cc,v 1. 6 2001-06-27 13:58:06Singular Exp $";4 //static char * rcsid = "@(#) $Id: Truefactor.cc,v 1.7 2001-08-06 08:32:54 Singular Exp $"; 5 5 /////////////////////////////////////////////////////////////////////////////// 6 6 // Factory - Includes … … 223 223 //cout << " 1:" << change_poly(factor.factor(),SubstitutionList,1) <<endl; 224 224 c= mydivremt(U,test_f,a,b); 225 if ( c && b == U.genZero() && !hasAlgVar(test_f)) // factor.getFactor() divides U 225 if ( c && b == U.genZero() && !hasAlgVar(test_f)) 226 // factor.getFactor() divides U 226 227 { 227 228 //cout << " teilt:" << test_f <<endl; … … 409 410 /* 410 411 $Log: not supported by cvs2svn $ 412 Revision 1.6 2001/06/27 13:58:06 Singular 413 *hannes/GP: debug newfactoras, char_series, ... 414 411 415 Revision 1.5 2001/06/21 14:57:06 Singular 412 416 *hannes/GP: Factorize, newfactoras, ...
Note: See TracChangeset
for help on using the changeset viewer.