Skip to content

Commit fedec33

Browse files
committed
Merge pull request #36 from bashtage/rename-shim
REF: Rename shim to interface
2 parents 95a354f + 3c1a899 commit fedec33

31 files changed

+30
-30
lines changed

randomstate/distributions.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ typedef int bool;
2323
#endif
2424

2525
#if defined(RS_PCG32)
26-
#include "shims/pcg-32/pcg-32-shim.h"
26+
#include "interface/pcg-32/pcg-32-shim.h"
2727
#elif defined(RS_PCG64)
28-
#include "shims/pcg-64/pcg-64-shim.h"
28+
#include "interface/pcg-64/pcg-64-shim.h"
2929
#elif defined(RS_RANDOMKIT)
30-
#include "shims/random-kit/random-kit-shim.h"
30+
#include "interface/random-kit/random-kit-shim.h"
3131
#elif defined(RS_XORSHIFT128)
32-
#include "shims/xorshift128/xorshift128-shim.h"
32+
#include "interface/xorshift128/xorshift128-shim.h"
3333
#elif defined(RS_XORSHIFT1024)
34-
#include "shims/xorshift1024/xorshift1024-shim.h"
34+
#include "interface/xorshift1024/xorshift1024-shim.h"
3535
#elif defined(RS_MRG32K3A)
36-
#include "shims/mrg32k3a/mrg32k3a-shim.h"
36+
#include "interface/mrg32k3a/mrg32k3a-shim.h"
3737
#elif defined(RS_MLFG_1279_861)
38-
#include "shims/mlfg-1279-861/mlfg-1279-861-shim.h"
38+
#include "interface/mlfg-1279-861/mlfg-1279-861-shim.h"
3939
#elif defined(RS_DSFMT)
40-
#include "shims/dSFMT/dSFMT-shim.h"
40+
#include "interface/dSFMT/dSFMT-shim.h"
4141
#else
4242
#error Unknown RNG!!! Unknown RNG!!! Unknown RNG!!!
4343
#endif
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)