diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-11 12:33:54 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-11 12:33:54 -0800 |
commit | 8cabdcb55d0a390ea45cfed631118af35796dac2 (patch) | |
tree | d99136a3c378b1115daf236b8d272f9deec4b90d /src/misc/util/abc_global.h | |
parent | 72dbdee2023a86006f67b95027fe6acb841328c4 (diff) | |
download | abc-8cabdcb55d0a390ea45cfed631118af35796dac2.tar.gz abc-8cabdcb55d0a390ea45cfed631118af35796dac2.tar.bz2 abc-8cabdcb55d0a390ea45cfed631118af35796dac2.zip |
Adding resource limit switch -C to 'sop'.
Diffstat (limited to 'src/misc/util/abc_global.h')
-rw-r--r-- | src/misc/util/abc_global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/util/abc_global.h b/src/misc/util/abc_global.h index ac7b2bf3..5cf351d4 100644 --- a/src/misc/util/abc_global.h +++ b/src/misc/util/abc_global.h @@ -214,7 +214,7 @@ typedef ABC_INT64_T iword; /// MACRO DEFINITIONS /// //////////////////////////////////////////////////////////////////////// -#define ABC_INFINITY (100000000) +#define ABC_INFINITY (1000000000) #define ABC_SWAP(Type, a, b) { Type t = a; a = b; b = t; } |