Commit e25b354a authored by captainwong's avatar captainwong

use rand.h

parent 934a19b1
......@@ -5,8 +5,8 @@
#include <string>
#include <vector>
#include <algorithm>
#include <random>
#include <chrono>
#include "../util/rand.h"
namespace jlib {
namespace misc {
......@@ -22,7 +22,7 @@ struct Helper {
int groups_of[N][GROUPS_OF]; // 每格属于3个组
int groups[GROUPS][9]; // 27个组 = 9行+9列+9块
std::default_random_engine rng{};
std::default_random_engine rng = jlib::seeded_random_engine();
// 初始化辅助结构体,用户调用 solve 之前手动调用一次即可
Helper() {
......
......@@ -33,7 +33,7 @@ struct Client : simple_libevent_clients::BaseClient {
std::lock_guard<std::mutex> lg(mutex);
auto client = new Client();
client->puzzles = puzzles_to_solve_per_client;
client->helper.rng = jlib::seeded_random_engine();
//client->helper.rng = jlib::seeded_random_engine();
return client;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment