File tree 3 files changed +71
-0
lines changed
3 files changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * PCG64 Random Number Generation for C.
3
+ *
4
+ * Copyright 2014 Melissa O'Neill <[email protected] >
5
+ * Copyright 2015 Robert Kern <[email protected] >
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * For additional information about the PCG random number generation scheme,
20
+ * including its license and other licensing options, visit
21
+ *
22
+ * http://www.pcg-random.org
23
+ */
24
+
1
25
#include "pcg64.h"
2
26
3
27
extern inline void pcg_setseq_128_step_r (pcg_state_setseq_128 * rng );
Original file line number Diff line number Diff line change
1
+ /*
2
+ * PCG64 Random Number Generation for C.
3
+ *
4
+ * Copyright 2014 Melissa O'Neill <[email protected] >
5
+ * Copyright 2015 Robert Kern <[email protected] >
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * For additional information about the PCG random number generation scheme,
20
+ * including its license and other licensing options, visit
21
+ *
22
+ * http://www.pcg-random.org
23
+ */
24
+
1
25
#ifndef PCG64_H_INCLUDED
2
26
#define PCG64_H_INCLUDED 1
3
27
Original file line number Diff line number Diff line change
1
+ /*
2
+ * PCG64 Random Number Generation for C.
3
+ *
4
+ * Copyright 2015 Robert Kern <[email protected] >
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * For additional information about the PCG random number generation scheme,
19
+ * including its license and other licensing options, visit
20
+ *
21
+ * http://www.pcg-random.org
22
+ */
23
+
1
24
#include <stdio.h>
2
25
3
26
#include "pcg64.h"
You can’t perform that action at this time.
0 commit comments