资源简介
mt_rand() 产生随机数
随机数种子一样,随机数序列则会完全一相同。
所以知道随机数种子后,就能知道所有随机数序列。(随机数种子 => 随机数序列)
知道随机数后,也能推出随机数种子。(随机数 => 随机数种子 => 随机数序列)
代码片段和文件信息
/*
* Copyright (c) 20122013 Solar Designer
*
* Redistribution and use in source and binary forms with or without
* modification are permitted.
*
* There‘s ABSOLUTELY NO WARRANTY express or implied.
*/
#include
#include
#include
#include
#include /* sysconf() */
#include
#include
#ifdef __MIC__
#include
typedef __m512i vtype;
/* hack */
#define _mm_set1_epi32(x) _mm512_set1_epi32(x)
#define _mm_add_epi32(x y) _mm512_add_epi32(x y)
#define _mm_macc_epi32(x y z) _mm512_fmadd_epi32(x y z)
#define _mm_slli_epi32(x i) _mm512_slli_epi32(x i)
#define _mm_srli_epi32(x i) _mm512_srli_epi32(x i)
#define _mm_and_si128(x y) _mm512_and_epi32(x y)
#define _mm_or_si128(x y) _mm512_or_epi32(x y)
#define _mm_xor_si128(x y) _mm512_xor_epi32(x y)
#elif defined(__AVX2__)
#include
typedef __m256i vtype;
/* hack */
#define _mm_set1_epi32(x) _mm256_set1_epi32(x)
#define _mm_add_epi32(x y) _mm256_add_epi32(x y)
#define _mm_macc_epi32(x y z) \
_mm256_add_epi32(_mm256_mullo_epi32((x) (y)) (z))
#define _mm_slli_epi32(x i) _mm256_slli_epi32(x i)
#define _mm_srli_epi32(x i) _mm256_srli_epi32(x i)
#define _mm_and_si128(x y) _mm256_and_si256(x y)
#define _mm_or_si128(x y) _mm256_or_si256(x y)
#define _mm_xor_si128(x y) _mm256_xor_si256(x y)
#define _mm_cmpeq_epi32(x y) _mm256_cmpeq_epi32(x y)
#define _mm_testz_si128(x y) _mm256_testz_si256(x y)
#elif defined(__SSE4_1__)
#include
#include
typedef __m128i vtype;
#ifdef __XOP__
#include
#else
#define _mm_macc_epi32(a b c) \
_mm_add_epi32(_mm_mullo_epi32((a) (b)) (c))
#ifdef __AVX__
#warning XOP and AVX2 are not enabled. Try gcc -mxop (on AMD Bulldozer or newer) or -mavx2 (on Intel Haswell or newer).
#else
#warning AVX* and XOP are not enabled. Try gcc -mxop (on AMD Bulldozer or newer) -mavx (on Intel Sandy Bridge or newer) or -mavx2 (on Intel Haswell or newer).
#endif
#endif
#else
/*
* We require at least SSE4.1 for vectorization because we use
* SSE4.1‘s _mm_mullo_epi32() or XOP‘s _mm_macc_epi32() as well as SSE4.1‘s
* _mm_testz_si128().
*/
#warning SSE4.1 not enabled will use non-vectorized code. Try gcc -msse4 (only on capable CPUs).
#endif
#ifndef _OPENMP
#warning OpenMP not enabled will only use one CPU core. Try gcc -fopenmp.
#endif
#define M 397
#define N 624
#define MATCH_PURE 1
#define MATCH_FULL 2
#define MATCH_SKIP 4
#define MATCH_LAST 8
typedef struct {
uint32_t flags;
int32_t mmin mmax;
int32_t rmin;
double rspan;
} match_t;
#define NEXT_STATE(x i) \
(x) = 1812433253U * ((x) ^ ((x) >> 30)) + (i);
#if defined(__SSE4_1__) || defined(__AVX2__) || defined(__MIC__)
static inline int diff(uint32_t x uint32_t xs uint32_t seed
const match_t *match)
#else
static inline int diff(uint32_t x uint32_t x1 uint32_t xs
const match_t *match)
#endif
{
#if defined(__SSE4_1__) ||
相关资源
- 校园疫情防控进出登记管理系统THIN
- 手写签名,PHP +js+html5
- 学籍管理系统(php源码+mysql数据库)
- 新闻管理系统(原生php源码)
- php图书管理系统源码(附数据库)
- php文章管理系统源码(附数据库)
- PHP图书馆管理系统(源码 数据库脚本
- PHP考试答题系统
- 基于PHP的学生管理系统(优雅版)
- PHP物品管理系统
- php新闻管理系统源码
- resetful框架
- PHP免杀大马-过D盾过安全狗WAF免杀ph
- 友邻B2B系统(PHPB2B) 5.0.2 UTF-8
- 新型冠状病毒肺炎疫情实时图PHP源码
- PHP调用企业微信API接口底层类库
- 基于PHP的统一检索系统的设计与实现
- PHP版本的网络打印机提交打印代码
- conefor操作(Manual_Conefor_26)
- php Goto解密
- PHP大转盘抽奖
- php模拟文件上传(socket_upload.php)
- php连接mysql实现界面crud(附数据库文
- php在线相册(附数据库脚本)
- PHP在线人数统计
- php+Ajax无刷新分页列表
- PHP失物招领
- php 随机生成颜色
- php-redis中文帮助手册.chm
- php远程控制脚本
评论
共有 条评论