Changeset b39d4d in git for Singular/omSingularConfig.h
- Timestamp:
- Dec 18, 2000, 4:44:42 PM (23 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e3dc1cc75eb8813142d38ad4d5b8638f5748228a
- Parents:
- 6a9b5a892f6ba5ac58be777a540985149140afae
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/omSingularConfig.h
r6a9b5a rb39d4d 8 8 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 9 9 * Created: 8/00 10 * Version: $Id: omSingularConfig.h,v 1. 2 2000-08-24 14:42:42 obachman Exp $10 * Version: $Id: omSingularConfig.h,v 1.3 2000-12-18 15:44:42 obachman Exp $ 11 11 *******************************************************************/ 12 12 #ifndef OM_SINGULAR_CONFIG_H … … 34 34 #endif 35 35 36 /* number of bytes for difference to report */37 #define SING_REPORT_THRESHOLD 100 *102436 /* number of bytes for difference to report: every 1 MByte */ 37 #define SING_REPORT_THRESHOLD 1000*1024 38 38 #define OM_SINGULAR_HOOK \ 39 39 do \ … … 48 48 if (_diff >= SING_REPORT_THRESHOLD) \ 49 49 { \ 50 fprintf(stdout, "[% dk]", (_current_bytes + 1023)/1024); \50 fprintf(stdout, "[%ldk]", (_current_bytes + 1023)/1024); \ 51 51 fflush(stdout); \ 52 52 om_sing_last_reported_size = _current_bytes; \
Note: See TracChangeset
for help on using the changeset viewer.