Changeset 3645fc in git for Singular/misc_ip.cc


Ignore:
Timestamp:
Jun 8, 2011, 6:45:40 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
b9a4477dffa95152122f8354bb7633b5a708918e
Parents:
ac8e1a6fb7da54fe20dd3b5cb75e2f2cdd68dc06
Message:
init via siInit

git-svn-id: file:///usr/local/Singular/svn/trunk@14268 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    rac8e1a r3645fc  
    2121#include <kernel/longrat.h>
    2222#include <Singular/misc_ip.h>
    23 #ifdef LIBSINGULAR
     23#include <Singular/feOpt.h>
    2424#include <Singular/silink.h>
    25 #include <Singular/feOpt.h>
    26 #endif
    2725
    2826void number2mpz(number n, mpz_t m)
     
    11261124}
    11271125
    1128 #ifdef LIBSINGULAR
    11291126int siInit(char *name)
    11301127{
    1131 
     1128#ifdef HAVE_FACTORY
     1129  On(SW_USE_NTL);
     1130  Off(SW_USE_GCD_P);
     1131  On(SW_USE_NTL_GCD_0); // On -> seg11 in Old/algnorm, Old/factor...
     1132  On(SW_USE_NTL_GCD_P); // On -> cyle in Short/brnoeth_s: fixed
     1133  On(SW_USE_EZGCD);
     1134  On(SW_USE_CHINREM_GCD);
     1135  //On(SW_USE_FF_MOD_GCD);
     1136  //On(SW_USE_fieldGCD);
     1137  On(SW_USE_EZGCD_P);
     1138  On(SW_USE_QGCD);
     1139  Off(SW_USE_NTL_SORT); // may be changed by an command line option
     1140#endif
     1141
     1142#ifdef INIT_BUG
     1143  jjInitTab1();
     1144#endif
     1145  /* initialize components */
     1146  factoryError=WerrorS;
     1147  siRandomStart=inits();
     1148  feOptSpec[FE_OPT_RANDOM].value = (void*) ((long)siRandomStart);
     1149
     1150  // Don't worry: ifdef OM_NDEBUG, then all these calls are undef'ed
    11321151  // hack such that all shared' libs in the bindir are loaded correctly
    11331152  feInitResources(name);
     
    11351154  iiInitArithmetic();
    11361155
    1137 #if 0
    1138   SingularBuilder::Ptr SingularInstance = SingularBuilder::instance();
    1139 #else
    11401156  basePack=(package)omAlloc0(sizeof(*basePack));
    11411157  currPack=basePack;
     
    11491165  slStandardInit();
    11501166  myynest=0;
    1151 #endif
     1167
    11521168  if (! feOptValue(FE_OPT_NO_STDLIB))
    11531169  {
     
    11591175  errorreported = 0;
    11601176}
    1161 #endif
    1162 
     1177
Note: See TracChangeset for help on using the changeset viewer.