Changeset 8d14d67 in git for factory


Ignore:
Timestamp:
Dec 8, 2008, 9:59:27 AM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
18ef40f42eafb26bcadfdbf8f8f70a8a0de137d6
Parents:
f41347f0d401c803dc2f636974ccdd1d7f48dac6
Message:
*** empty log message ***


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

Legend:

Unmodified
Added
Removed
  • factory/winnt/factory.h

    rf41347f r8d14d67  
    11/* winnt/factory.h automatically generated by makeheader from factory.template */
    22/* emacs edit mode for this file is -*- C++ -*- */
    3 /* $Id: factory.h,v 1.6 2007-11-20 10:08:03 Singular Exp $ */
     3/* $Id: factory.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */
    44
    55#ifndef INCL_FACTORY_H
     
    106106const int SW_FAC_QUADRATICLIFT = 5;
    107107const int SW_USE_EZGCD = 6;
    108 const int SW_USE_SPARSEMOD = 7;
    109 const int SW_USE_NTL=8;
    110 const int SW_USE_NTL_GCD_0=9;
    111 const int SW_USE_NTL_GCD_P=10;
    112 const int SW_USE_NTL_SORT=11;
    113 const int SW_USE_CHINREM_GCD=12;
    114 const int SW_USE_GCD_P=13;
     108const int SW_USE_EZGCD_P = 7;
     109const int SW_USE_SPARSEMOD = 8;
     110const int SW_USE_NTL=9;
     111const int SW_USE_NTL_GCD_0=10;
     112const int SW_USE_NTL_GCD_P=11;
     113const int SW_USE_NTL_SORT=12;
     114const int SW_USE_CHINREM_GCD=13;
     115const int SW_USE_GCD_P=14;
     116const int SW_USE_QGCD=15;
     117const int SW_USE_fieldGCD=16;
    115118//}}}
    116119
     
    178181
    179182CanonicalForm getMipo( const Variable & alpha, const Variable & x );
     183bool hasMipo( const Variable & alpha );
    180184
    181185char getDefaultVarName();
     
    359363CanonicalForm gcd ( const CanonicalForm&, const CanonicalForm& );
    360364
     365CanonicalForm gcd_poly ( const CanonicalForm & f, const CanonicalForm & g );
     366
    361367CanonicalForm extgcd ( const CanonicalForm&, const CanonicalForm&, CanonicalForm&, CanonicalForm& );
    362368
     
    542548CFFList factorize ( const CanonicalForm & f, const Variable & alpha );
    543549
    544 CFFList sqrFree ( const CanonicalForm & f, bool sort = false );
     550CFFList sqrFree ( const CanonicalForm & f );
    545551
    546552bool isSqrFree ( const CanonicalForm & f );
     
    592598    // direct comparison `f < 0', it is faster, too
    593599    if ( sign( f ) < 0 )
    594         return -f;
     600        return -f;
    595601    else
    596         return f;
     602        return f;
    597603}
    598604//}}}
     
    781787    int n;
    782788    AlgExtRandomF();
    783     AlgExtRandomF( const AlgExtRandomF & );
    784789    AlgExtRandomF( const Variable & v, CFRandom * g, int nn );
    785790    AlgExtRandomF& operator= ( const AlgExtRandomF & );
    786791public:
     792    AlgExtRandomF( const AlgExtRandomF & );
    787793    AlgExtRandomF( const Variable & v );
    788794    AlgExtRandomF( const Variable & v1, const Variable & v2 );
     
    943949class REvaluation : public Evaluation
    944950{
    945 private:
     951protected: // neeeded in FFREvaluation
    946952    CFRandom * gen;
    947953public:
     
    953959    void nextpoint();
    954960};
     961
     962
     963/* stuff included from ./fac_sqrfree.h */
    955964
    956965
  • factory/winnt/factoryconf.h

    rf41347f r8d14d67  
    11/* winnt/factoryconf.h automatically generated by makeheader from factoryconf.template */
    22/* emacs edit mode for this file is -*- C -*- */
    3 /* $Id: factoryconf.h,v 1.6 2007-11-20 10:08:03 Singular Exp $ */
     3/* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */
    44
    55#ifndef INCL_FACTORYCONF_H
     
    2323
    2424/* emacs edit mode for this file is -*- C -*- */
    25 /* $Id: factoryconf.h,v 1.6 2007-11-20 10:08:03 Singular Exp $ */
     25/* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */
    2626
    2727#ifndef INCL_CONFIG_H
     
    105105
    106106/* emacs edit mode for this file is -*- C -*- */
    107 /* $Id: factoryconf.h,v 1.6 2007-11-20 10:08:03 Singular Exp $ */
     107/* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */
    108108
    109109/* This is for compatibility with standard assert.h */
     
    134134/* }}} */
    135135
     136#ifdef HAVE_CSTDIO
     137#include <cstdio>
     138#else
    136139#ifdef __cplusplus
    137140extern "C" {
     
    143146#ifdef __cplusplus
    144147}
     148#endif
    145149#endif
    146150
Note: See TracChangeset for help on using the changeset viewer.