Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
83c40ffa
Commit
83c40ffa
authored
Jul 21, 2020
by
Simone Pagan Griso
Browse files
moved to std::abs
parent
df748f60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Generators/Pythia8_i/src/UserHooks/suep_shower.h
View file @
83c40ffa
...
...
@@ -18,7 +18,7 @@ class tolerance {
_eps
(
eps
)
{
}
bool
operator
()(
double
a
,
double
b
)
{
return
(
f
abs
(
b
-
a
)
<=
_eps
);
return
(
std
::
abs
(
b
-
a
)
<=
_eps
);
}
private:
double
_eps
;
...
...
Write
Preview
Supports
Markdown
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