Changeset 2072126 in git


Ignore:
Timestamp:
May 19, 2011, 5:22:56 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
b5cd25f4f43ce3d4a37ddaab1030082d1f09c0b1
Parents:
55608a78dc5f45276e2138266996767392a31c2c
Message:
add missing HAVE_NTL

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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r55608a7 r2072126  
    35093509  /*==================== HNF =================*/
    35103510  #ifdef HAVE_FACTORY
     3511  #ifdef HAVE_NTL
    35113512      if (strcmp(sys_cmd, "HNF") == 0)
    35123513      {
     
    35493550      }
    35503551      else
     3552      #endif
    35513553  /*================= factoras =========================*/
    35523554      if (strcmp (sys_cmd, "factoras") == 0)
  • factory/cfNewtonPolygon.cc

    r55608a7 r2072126  
    375375}
    376376
     377#ifdef HAVE_NTL
    377378void convexDense(int** points, int sizePoints, mat_ZZ& M, vec_ZZ& A)
    378379{
     
    675676  return result/Lc (result); //normalize
    676677}
    677 
     678#endif
  • factory/cf_gcd.cc

    r55608a7 r2072126  
    1313#include "cf_primes.h"
    1414#include "cf_algorithm.h"
     15#include "cf_factory.h"
    1516#include "fac_util.h"
    1617#include "templates/ftmpl_functions.h"
     
    560561      return fieldGCD(f,g);
    561562    }
     563    #ifdef HAVE_NTL
    562564    else if ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P )))
    563565    {
     
    579581      fc= EZGCD_P (fc, gc);
    580582    }
     583    #endif
    581584    else if (isOn(SW_USE_GCD_P))
    582585    {
    583586      fc=newGCD(fc,gc);
    584587    }
     588    #ifdef HAVE_NTL
    585589    else if (isOn(SW_USE_FF_MOD_GCD) && !fc_and_gc_Univariate)
    586590    {
     
    596600      fc=GCD_small_p (fc, gc);
    597601    }
     602    #endif
    598603    else if ( p1 == fc.level() )
    599604      fc = gcd_poly_p( fc, gc );
  • kernel/clapsing.cc

    r55608a7 r2072126  
    15611561  return res;
    15621562}
     1563#ifdef HAVE_NTL
    15631564matrix singntl_HNF(matrix  m )
    15641565{
     
    16781679  return mm;
    16791680}
     1681#endif
    16801682
    16811683napoly singclap_alglcm ( napoly f, napoly g )
  • kernel/clapsing.h

    r55608a7 r2072126  
    4040matrix singclap_irrCharSeries ( ideal I);
    4141
     42#ifdef HAVE_NTL
    4243matrix singntl_HNF(matrix A);
    4344intvec* singntl_HNF(intvec* A);
    4445matrix singntl_LLL(matrix A);
    4546intvec* singntl_LLL(intvec* A);
     47#endif
    4648
    4749BOOLEAN singclap_isSqrFree(poly f);
Note: See TracChangeset for help on using the changeset viewer.