Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
501f7f60
Commit
501f7f60
authored
Jun 05, 2012
by
Yukihiro Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stop introducing Math::TORELANCE
parent
114168a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/math.c
src/math.c
+3
-3
test/assert.rb
test/assert.rb
+2
-2
No files found.
src/math.c
View file @
501f7f60
...
@@ -10,10 +10,11 @@
...
@@ -10,10 +10,11 @@
#define domain_error(msg) \
#define domain_error(msg) \
mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg);
mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg);
#define MATH_TOLERANCE 1E-12
/* math functions not provided under Microsoft Visual C++ */
/* math functions not provided under Microsoft Visual C++ */
#ifdef _MSC_VER
#ifdef _MSC_VER
#define MATH_TOLERANCE 1E-12
#define asinh(x) log(x + sqrt(pow(x,2.0) + 1))
#define asinh(x) log(x + sqrt(pow(x,2.0) + 1))
#define acosh(x) log(x + sqrt(pow(x,2.0) - 1))
#define acosh(x) log(x + sqrt(pow(x,2.0) - 1))
#define atanh(x) (log(1+x) - log(1-x))/2.0
#define atanh(x) (log(1+x) - log(1-x))/2.0
...
@@ -631,7 +632,6 @@ mrb_init_math(mrb_state *mrb)
...
@@ -631,7 +632,6 @@ mrb_init_math(mrb_state *mrb)
struct
RClass
*
mrb_math
;
struct
RClass
*
mrb_math
;
mrb_math
=
mrb_define_module
(
mrb
,
"Math"
);
mrb_math
=
mrb_define_module
(
mrb
,
"Math"
);
mrb_define_const
(
mrb
,
mrb_math
,
"TOLERANCE"
,
mrb_float_value
(
MATH_TOLERANCE
));
#ifdef M_PI
#ifdef M_PI
mrb_define_const
(
mrb
,
mrb_math
,
"PI"
,
mrb_float_value
(
M_PI
));
mrb_define_const
(
mrb
,
mrb_math
,
"PI"
,
mrb_float_value
(
M_PI
));
#else
#else
...
...
test/assert.rb
View file @
501f7f60
...
@@ -74,12 +74,12 @@ end
...
@@ -74,12 +74,12 @@ end
# Performs fuzzy check for equality on methods returning floats
# Performs fuzzy check for equality on methods returning floats
# on the basis of the Math::TOLERANCE constant.
# on the basis of the Math::TOLERANCE constant.
def
check_float
(
a
,
b
)
def
check_float
(
a
,
b
)
tolerance
=
1e-12
a
=
a
.
to_f
a
=
a
.
to_f
b
=
b
.
to_f
b
=
b
.
to_f
if
a
.
finite?
and
b
.
finite?
if
a
.
finite?
and
b
.
finite?
(
a
-
b
).
abs
<
Math
::
TOLERANCE
(
a
-
b
).
abs
<
tolerance
else
else
true
true
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment