Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
92732853
Commit
92732853
authored
Feb 06, 2019
by
Folkert Nobels
Browse files
Code formatting random.h
parent
57a0fa4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/random.h
View file @
92732853
...
...
@@ -56,7 +56,9 @@ INLINE static double random_unit_interval(const long long int id,
static
const
double
RAND_MAX_inv
=
1
.
/
((
double
)
RAND_MAX
);
/* Calculate the seed */
unsigned
int
seed
=
((
937LL
*
id
+
1109LL
)
%
2147987LL
+
(
ti_current
-
1
)
%
1514917LL
+
(
long
long
)
type
)
%
seed_range
;
unsigned
int
seed
=
((
937LL
*
id
+
1109LL
)
%
2147987LL
+
(
ti_current
-
1
)
%
1514917LL
+
(
long
long
)
type
)
%
seed_range
;
/* Generate a random number between 0 and 1. */
return
rand_r
(
&
seed
)
*
RAND_MAX_inv
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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