diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-08-01 01:23:34 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-08-01 01:23:34 +0900 |
| commit | 883b97ab05ac8e509ff575c0c8533066f7e900c7 (patch) | |
| tree | c4274a2af986c42fc1f586816d27fa10f95a05d6 /src | |
| parent | 34cf05679c5ce9ee40be6bd4ccace0ec94fcebdf (diff) | |
| download | mruby-883b97ab05ac8e509ff575c0c8533066f7e900c7.tar.gz mruby-883b97ab05ac8e509ff575c0c8533066f7e900c7.zip | |
some test requires double precision
Diffstat (limited to 'src')
| -rw-r--r-- | src/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math.c b/src/math.c index fe10848c3..9aae87acd 100644 --- a/src/math.c +++ b/src/math.c @@ -647,7 +647,7 @@ mrb_init_math(mrb_state *mrb) #endif #ifdef MRB_USE_FLOAT - mrb_define_const(mrb, mrb_math, "TOLERANCE", mrb_float_value(1e-6)); + mrb_define_const(mrb, mrb_math, "TOLERANCE", mrb_float_value(1e-5)); #else mrb_define_const(mrb, mrb_math, "TOLERANCE", mrb_float_value(1e-12)); #endif |
