Changeset 81845eb in git
- Timestamp:
- Dec 14, 2011, 6:16:38 PM (11 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- f0168a594d5a00a74dd169a3d0189411e29989f4
- Parents:
- 67c1dcaf5b5069c5df300f7898cff740290bf5f1
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-12-14 18:16:38+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/claptmpl.cc
r67c1dc r81845eb 64 64 // place here your own template stuff, not instantiated by factory 65 65 // libfac: 66 #include <libfac/factor.h> 66 #ifdef HAVE_LIBFAC 67 # include <factory/libfac/factor.h> 68 #endif 67 69 68 70 // class.h: … … 135 137 template class ListIterator<int>; 136 138 139 #ifdef HAVE_LIBFAC 137 140 template class List<IntList>; 138 141 template class ListIterator<IntList>; 142 #endif 139 143 140 144 template class Substitution<CanonicalForm>; -
Singular/misc_ip.cc
r67c1dc r81845eb 743 743 StringAppendS("\t"); 744 744 #ifdef HAVE_FACTORY 745 StringAppend("factory(%s) ,", factoryVersion);745 StringAppend("factory(%s)", factoryVersion); 746 746 #ifdef HAVE_LIBFAC 747 747 // libfac: 748 extern const char * libfac_version;749 extern const char * libfac_date;750 StringAppend(" libfac(%s,%s),\n\t",libfac_version,libfac_date);748 // extern const char * libfac_version; 749 // extern const char * libfac_date; 750 StringAppend("+libfac"); 751 751 #endif // #ifdef HAVE_LIBFAC 752 StringAppend(","); 752 753 #endif 753 754 -
kernel/misc.cc
r67c1dc r81845eb 13 13 /* libfac version strings */ 14 14 #ifdef HAVE_LIBFAC 15 extern const char * libfac_version;16 extern const char * libfac_date;15 // extern const char * libfac_version; 16 // extern const char * libfac_date; 17 17 #endif // #ifdef HAVE_LIBFAC 18 18 #endif -
libpolys/polys/clapsing.cc
r67c1dc r81845eb 16 16 #include <factory/factory.h> 17 17 #ifdef HAVE_LIBFAC 18 #include < libfac/factor.h>18 #include <factory/libfac/factor.h> 19 19 #endif 20 20 #endif
Note: See TracChangeset
for help on using the changeset viewer.