Changeset 36b7a3 in git


Ignore:
Timestamp:
Mar 18, 2008, 6:46:16 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'c18334b998a8adbf0013b8e1ce0824774019443e')
Children:
85e68dddda98435a9ae0d847d22d075e8b49fbff
Parents:
b731a04fc07c63b1e10dfba82c467ca4a8884227
Message:
*hannes: gcc 4.2


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

Legend:

Unmodified
Added
Removed
  • libfac/charset/alg_factor.cc

    rb731a0 r36b7a3  
    33// emacs edit mode for this file is -*- C++ -*-
    44////////////////////////////////////////////////////////////
    5 static char * rcsid = "$Id: alg_factor.cc,v 1.21 2008-03-17 17:44:15 Singular Exp $";
     5/* $Id: alg_factor.cc,v 1.22 2008-03-18 17:46:14 Singular Exp $ */
    66////////////////////////////////////////////////////////////
    77// FACTORY - Includes
     
    830830/*
    831831$Log: not supported by cvs2svn $
     832Revision 1.21  2008/03/17 17:44:15  Singular
     833*hannes: fact.tst
     834
    832835Revision 1.17  2007/05/15 14:46:48  Singular
    833836*hannes: factorize in Zp(a)[x...]
  • libfac/charset/algfactor.cc

    rb731a0 r36b7a3  
    33// emacs edit mode for this file is -*- C++ -*-
    44////////////////////////////////////////////////////////////
    5 static char * rcsid = "$Id: algfactor.cc,v 1.10 2008-03-17 17:44:16 Singular Exp $";
     5/* $Id: algfactor.cc,v 1.11 2008-03-18 17:46:14 Singular Exp $ */
    66////////////////////////////////////////////////////////////
    77// FACTORY - Includes
     
    450450/*
    451451$Log: not supported by cvs2svn $
     452Revision 1.10  2008/03/17 17:44:16  Singular
     453*hannes: fact.tst
     454
    452455Revision 1.8  2006/06/19 13:37:46  Singular
    453456*hannes: more CS renamed
  • libfac/charset/charset.cc

    rb731a0 r36b7a3  
    22////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 static char * rcsid = "$Id: charset.cc,v 1.12 2006-06-14 15:35:08 Singular Exp $";
     4/* $Id: charset.cc,v 1.13 2008-03-18 17:46:14 Singular Exp $ */
    55/////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    4848
    4949#ifdef HAVE_SINGULAR_ERROR
    50    extern "C" { void WerrorS(char *); }
     50   extern "C" { void WerrorS(const char *); }
    5151   extern "C" { void WarnS(const char *); }
    5252#endif
     
    599599/*
    600600$Log: not supported by cvs2svn $
     601Revision 1.12  2006/06/14 15:35:08  Singular
     602*hannes: CS renamed
     603
    601604Revision 1.11  2006/05/16 14:46:49  Singular
    602605*hannes: gcc 4.1 fixes
  • libfac/charset/csutil.cc

    rb731a0 r36b7a3  
    22////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 static char * rcsid = "$Id: csutil.cc,v 1.16 2008-02-22 12:16:02 Singular Exp $";
     4/* $Id: csutil.cc,v 1.17 2008-03-18 17:46:15 Singular Exp $ */
    55/////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    988988/*
    989989$Log: not supported by cvs2svn $
     990Revision 1.16  2008/02/22 12:16:02  Singular
     991hannes: genZero ->isZero
     992
    990993Revision 1.15  2007/10/16 15:49:49  Singular
    991994SAGE: remove alg content in myfitting
  • libfac/charset/reorder.cc

    rb731a0 r36b7a3  
    1212/////////////////////////////////////////////////////////////
    1313// emacs edit mode for this file is -*- C++ -*-
    14 static char * rcsid = "$Id: reorder.cc,v 1.4 2006-05-16 14:46:49 Singular Exp $";
     14/* $Id: reorder.cc,v 1.5 2008-03-18 17:46:15 Singular Exp $ */
    1515////////////////////////////////////////////////////////////
    1616// FACTORY - Includes
     
    408408/*
    409409$Log: not supported by cvs2svn $
     410Revision 1.4  2006/05/16 14:46:49  Singular
     411*hannes: gcc 4.1 fixes
     412
    410413Revision 1.3  1997/09/12 07:19:44  Singular
    411414* hannes/michael: libfac-0.3.0
  • libfac/factor/Factor.cc

    rb731a0 r36b7a3  
    11/* Copyright 1996 Michael Messollen. All rights reserved. */
    22///////////////////////////////////////////////////////////////////////////////
    3 static char * rcsid = "$Id: Factor.cc,v 1.43 2008-03-18 10:12:21 Singular Exp $ ";
    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.";
     3/* $Id: Factor.cc,v 1.44 2008-03-18 17:46:15 Singular Exp $ */
     4static 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.";
    55///////////////////////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    3838
    3939#ifdef HAVE_SINGULAR_ERROR
    40    extern "C" { void WerrorS(char *); }
     40   extern "C" { void WerrorS(const char *); }
    4141   extern "C" { void WarnS(const char *); }
    4242#endif
     
    13351335/*
    13361336$Log: not supported by cvs2svn $
     1337Revision 1.43  2008/03/18 10:12:21  Singular
     1338*hannes: format
     1339
    13371340Revision 1.42  2008/03/17 17:44:16  Singular
    13381341*hannes: fact.tst
  • libfac/factor/MVMultiHensel.cc

    rb731a0 r36b7a3  
    22///////////////////////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 // static char * rcsid = "$Id: MVMultiHensel.cc,v 1.17 2008-03-17 17:44:16 Singular Exp $";
     4// $Id: MVMultiHensel.cc,v 1.18 2008-03-18 17:46:15 Singular Exp $
    55///////////////////////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    3838   extern "C"
    3939   {
    40      void WerrorS(char *);
     40     void WerrorS(const char *);
    4141     void Werror(const char *fmt, ...);
    4242   }
     
    520520/*
    521521$Log: not supported by cvs2svn $
     522Revision 1.17  2008/03/17 17:44:16  Singular
     523*hannes: fact.tst
     524
    522525Revision 1.14  2007/06/14 14:16:35  Singular
    523526*hannes: Factorize2 etc.
  • libfac/factor/SqrFree.cc

    rb731a0 r36b7a3  
    22///////////////////////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 static char * rcsid = "$Id: SqrFree.cc,v 1.16 2008-03-18 10:12:59 Singular Exp $";
    5 static char * errmsg = "\nYou found a bug!\nPlease inform (Michael Messollen) michael@math.uni-sb.de .\n Please include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";
     4/* $Id: SqrFree.cc,v 1.17 2008-03-18 17:46:15 Singular Exp $ */
     5static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\n Please include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";
    66///////////////////////////////////////////////////////////////////////////////
    77// FACTORY - Includes
     
    3333
    3434#ifdef HAVE_SINGULAR_ERROR
    35    extern "C" { void WerrorS(char *); }
     35   extern "C" { void WerrorS(const char *); }
    3636#endif
    3737
     
    440440/*
    441441$Log: not supported by cvs2svn $
     442Revision 1.16  2008/03/18 10:12:59  Singular
     443*hannes: typo
     444
    442445Revision 1.15  2008/03/17 17:44:16  Singular
    443446*hannes: fact.tst
  • libfac/factor/Truefactor.cc

    rb731a0 r36b7a3  
    22///////////////////////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 //static char * rcsid = "@(#) $Id: Truefactor.cc,v 1.14 2008-03-17 17:44:16 Singular Exp $";
     4// $Id: Truefactor.cc,v 1.15 2008-03-18 17:46:15 Singular Exp $
    55///////////////////////////////////////////////////////////////////////////////
    66// Factory - Includes
     
    3232
    3333#ifdef HAVE_SINGULAR_ERROR
    34    extern "C" { void WerrorS(char *); }
     34   extern "C" { void WerrorS(const char *); }
    3535#endif
    3636
     
    450450/*
    451451$Log: not supported by cvs2svn $
     452Revision 1.14  2008/03/17 17:44:16  Singular
     453*hannes: fact.tst
     454
    452455Revision 1.11  2008/01/07 13:34:56  Singular
    453456*hannes: omse optiomzations(isOne)
  • libfac/factor/class.cc

    rb731a0 r36b7a3  
    22////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 // static char * rcsid = "@(#) $Id: class.cc,v 1.4 2006-05-16 14:58:54 hannes Exp $";
     4// $Id: class.cc,v 1.5 2008-03-18 17:46:15 Singular Exp $
    55////////////////////////////////////////////////////////////
    66
     
    4444/*
    4545$Log: not supported by cvs2svn $
     46Revision 1.4  2006/05/16 14:58:54  hannes
     47*hannes: gcc-4.1 fixes
     48
    4649Revision 1.3  1997/09/12 07:19:53  Singular
    4750* hannes/michael: libfac-0.3.0
  • libfac/factor/helpstuff.cc

    rb731a0 r36b7a3  
    22////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 // static char * rcsid = "$Id: helpstuff.cc,v 1.7 2008-03-17 17:44:17 Singular Exp $";
     4// $Id: helpstuff.cc,v 1.8 2008-03-18 17:46:16 Singular Exp $
    55////////////////////////////////////////////////////////////
    66// FACTORY - Includes
     
    175175/*
    176176$Log: not supported by cvs2svn $
     177Revision 1.7  2008/03/17 17:44:17  Singular
     178*hannes: fact.tst
     179
    177180Revision 1.4  2001/06/19 15:29:04  Singular
    178181*hannes: optim.
  • libfac/factor/homogfactor.cc

    rb731a0 r36b7a3  
    11/* Copyright 1997 Michael Messollen. All rights reserved. */
    22////////////////////////////////////////////////////////////
    3 // static char * rcsid = "$Id: homogfactor.cc,v 1.8 2007-10-25 14:45:41 Singular Exp $ ";
     3// $Id: homogfactor.cc,v 1.9 2008-03-18 17:46:16 Singular Exp $
    44////////////////////////////////////////////////////////////
    55// FACTORY - Includes
     
    201201/*
    202202$Log: not supported by cvs2svn $
     203Revision 1.8  2007/10/25 14:45:41  Singular
     204*hannes: homgfactor for alg.ext of Q
     205
    203206Revision 1.7  2006/05/16 14:46:50  Singular
    204207*hannes: gcc 4.1 fixes
  • libfac/factor/test.cc

    rb731a0 r36b7a3  
    1 //static char rcsid[] = "@(#) $Id: test.cc,v 1.3 2007-05-15 14:46:49 Singular Exp $";
     1// $Id: test.cc,v 1.4 2008-03-18 17:46:16 Singular Exp $
    22///////////////////////////////////////////////////////////////////////////////
    3 // CLAP - Includes
     3// factory - Includes
    44//       (x+y+z)*(x+y-z)*(x-y+z)*(x-y-z)*x*y;
    5 #include <clap.h>
     5#include <factory.h>
    66// Factor - Includes
    77#include "tmpl_inst.h"
  • libfac/factor/version.cc

    rb731a0 r36b7a3  
    22///////////////////////////////////////////////////////////////////////////////
    33// emacs edit mode for this file is -*- C++ -*-
    4 // $Id: version.cc,v 1.8 2005-10-17 16:25:27 Singular Exp $
    5 static char * rcsid = "@(#) libfac version 3.0.1 [Oct 2005] (C) 1996, 1997, 2002 M. Messollen / 2005 Singular group";
     4// $Id: version.cc,v 1.9 2008-03-18 17:46:16 Singular Exp $
    65///////////////////////////////////////////////////////////////////////////////
    76
    87const char * libfac_name = "Factorization and characteristic sets library";
    9 const char * libfac_version = "3.0.1";
    10 const char * libfac_date = "Oct 2005";
     8const char * libfac_version = "3.0.4";
     9const char * libfac_date = "Mar 2008";
    1110const char * libfac_author = "M. Messollen";
    1211
Note: See TracChangeset for help on using the changeset viewer.