Changeset 037df4 in git
- Timestamp:
- Jul 8, 2008, 3:03:18 PM (15 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 9f6d7626974f05a175c63f8e5f63ec9da030c127
- Parents:
- 09d7782fb1cb753a74c67e13bf26476d72ff23d5
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r09d7782 r037df4 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: extra.cc,v 1.27 4 2008-07-07 13:18:56 wienandExp $ */4 /* $Id: extra.cc,v 1.275 2008-07-08 13:03:18 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: general interface to internals of Singular ("system" command) … … 2583 2583 #endif // HAVE_RATGRING 2584 2584 /*==================== freeGB, twosided GB in free algebra =================*/ 2585 #ifdef HAVE_SHIFTBBA 2585 2586 if (strcmp(sys_cmd, "freegb") == 0) 2586 2587 { … … 2609 2610 } 2610 2611 else 2612 #endif 2611 2613 /*==================== shift-test for freeGB =================*/ 2614 #ifdef HAVE_SHIFTBBA 2612 2615 if (strcmp(sys_cmd, "stest") == 0) 2613 2616 { … … 2643 2646 } 2644 2647 else 2648 #endif 2645 2649 /*==================== block-test for freeGB =================*/ 2650 #ifdef HAVE_SHIFTBBA 2646 2651 if (strcmp(sys_cmd, "btest") == 0) 2647 2652 { … … 2664 2669 } 2665 2670 else 2671 #endif 2666 2672 #endif 2667 2673 /*==================== t-rep-GB ==================================*/ -
Singular/mod2.h.in
r09d7782 r037df4 6 6 * DO NOT EDIT! 7 7 * 8 * Version: $Id: mod2.h.in,v 1.13 0 2008-06-24 09:01:25Singular Exp $8 * Version: $Id: mod2.h.in,v 1.131 2008-07-08 13:03:18 Singular Exp $ 9 9 *******************************************************************/ 10 10 #ifndef MOD2_H … … 149 149 /* Define to enable plural */ 150 150 #undef HAVE_PLURAL 151 /* Define to enable shiftbba */ 152 #undef HAVE_SHIFTBBA 151 153 /* Define to enable libsvd */ 152 154 #undef HAVE_SVD -
kernel/kstd1.cc
r09d7782 r037df4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd1.cc,v 1.3 5 2008-06-10 10:17:31 motsakExp $ */4 /* $Id: kstd1.cc,v 1.36 2008-07-08 13:02:21 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 1733 1733 } 1734 1734 1735 #ifdef HAVE_SHIFTBBA 1735 1736 ideal kStdShift(ideal F, ideal Q, tHomog h,intvec ** w, intvec *hilb,int syzComp, 1736 1737 int newIdeal, intvec *vw, int uptodeg, int lV) … … 1824 1825 return r; 1825 1826 } 1827 #endif 1826 1828 1827 1829 //############################################################## -
kernel/kstd2.cc
r09d7782 r037df4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd2.cc,v 1.6 7 2008-07-07 13:18:56 wienandExp $ */4 /* $Id: kstd2.cc,v 1.68 2008-07-08 13:02:21 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: alg. of Buchberger … … 1435 1435 1436 1436 /* shiftgb stuff */ 1437 1437 #ifdef HAVE_SHIFTBBA 1438 1438 1439 1439 … … 1966 1966 } 1967 1967 } 1968 #endif -
kernel/kutil.cc
r09d7782 r037df4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.9 7 2008-07-07 13:18:56 wienandExp $ */4 /* $Id: kutil.cc,v 1.98 2008-07-08 13:02:21 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 6212 6212 // } 6213 6213 6214 #ifdef HAVE_SHIFTBBA 6214 6215 /* including the self pairs */ 6215 6216 void updateSShift(kStrategy strat,int uptodeg,int lV) … … 6975 6976 } 6976 6977 6978 #endif // HAVE_SHIFTBBA 6977 6979 #endif // KUTIL_CC -
kernel/mod2.h.in
r09d7782 r037df4 6 6 * DO NOT EDIT! 7 7 * 8 * Version: $Id: mod2.h.in,v 1.2 1 2008-06-24 09:02:16Singular Exp $8 * Version: $Id: mod2.h.in,v 1.22 2008-07-08 13:02:21 Singular Exp $ 9 9 *******************************************************************/ 10 10 #ifndef MOD2_H … … 149 149 /* Define to enable plural */ 150 150 #undef HAVE_PLURAL 151 /* Define to enable shiftbba */ 152 #undef HAVE_SHIFTBBA 151 153 /* Define to enable libsvd */ 152 154 #undef HAVE_SVD -
kernel/shiftgb.cc
r09d7782 r037df4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: shiftgb.cc,v 1. 7 2008-03-13 19:25:49 levandovExp $ */4 /* $Id: shiftgb.cc,v 1.8 2008-07-08 13:02:21 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for shift GB and free GB … … 9 9 #include "mod2.h" 10 10 11 #ifdef HAVE_ PLURAL11 #ifdef HAVE_SHIFTBBA 12 12 #include "febase.h" 13 13 #include "ring.h" -
kernel/shiftgb.h
r09d7782 r037df4 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: shiftgb.h,v 1. 4 2008-03-13 19:25:49 levandovExp $ */6 /* $Id: shiftgb.h,v 1.5 2008-07-08 13:02:21 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT: kernel: utils for kStd … … 10 10 11 11 #include "structs.h" 12 #ifdef HAVE_SHIFTBBA 12 13 #include "gring.h" 13 14 … … 41 42 42 43 #endif 44 #endif
Note: See TracChangeset
for help on using the changeset viewer.