Changeset 5e0035 in git
- Timestamp:
- Jun 14, 2011, 3:06:49 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- f59722f94f8a42963b69fe4389c1ce3850e4f87e
- Parents:
- d2f64e31dedf7422b6328bc539b8ac5d708e7d24
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-06-14 15:06:49+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:09+01:00
- Location:
- libpolys/polys/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/templates/p_Procs.h
rd2f64e r5e0035 68 68 #endif 69 69 // if set, then dynamic p_procs are used, otherwise static 70 extern BOOLEAN p_procs_dynamic;70 extern const BOOLEAN p_procs_dynamic; 71 71 72 72 #endif /* ! P_PROCS_H */ -
libpolys/polys/templates/p_Procs_Dynamic.cc
rd2f64e r5e0035 24 24 25 25 #ifdef HAVE_DL 26 BOOLEAN p_procs_dynamic = TRUE;26 const BOOLEAN p_procs_dynamic = TRUE; 27 27 28 28 #define WARN_MSG "Singular will work properly, but much slower." -
libpolys/polys/templates/p_Procs_Static.cc
rd2f64e r5e0035 21 21 #include <reporter/reporter.h> 22 22 23 BOOLEAN p_procs_dynamic = FALSE;23 const BOOLEAN p_procs_dynamic = FALSE; 24 24 25 25 #define LINKAGE
Note: See TracChangeset
for help on using the changeset viewer.