Skip to content

Instantly share code, notes, and snippets.

@kaityo256
kaityo256 / test.cpp
Created February 5, 2020 14:36
Intel Compiler vs. GCC
#include <iostream>
#include <random>
struct myrand {
uint32_t operator()() {
return 0;
}
uint32_t max(){
return std::mt19937::max();
}