Skip to content

Commit 154d197

Browse files
committed
ENH: License blurbage.
1 parent 4a23b2b commit 154d197

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

pcg64.c

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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+
125
#include "pcg64.h"
226

327
extern inline void pcg_setseq_128_step_r(pcg_state_setseq_128* rng);

pcg64.h

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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+
125
#ifndef PCG64_H_INCLUDED
226
#define PCG64_H_INCLUDED 1
327

test-pcg64.c

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
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+
124
#include <stdio.h>
225

326
#include "pcg64.h"

0 commit comments

Comments
 (0)