Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
e25b354a
Commit
e25b354a
authored
Dec 21, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use rand.h
parent
934a19b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sudoku.h
jlib/misc/sudoku.h
+2
-2
sudoku_clients.cpp
test/sudoku_clients/sudoku_clients.cpp
+1
-1
No files found.
jlib/misc/sudoku.h
View file @
e25b354a
...
@@ -5,8 +5,8 @@
...
@@ -5,8 +5,8 @@
#include <string>
#include <string>
#include <vector>
#include <vector>
#include <algorithm>
#include <algorithm>
#include <random>
#include <chrono>
#include <chrono>
#include "../util/rand.h"
namespace
jlib
{
namespace
jlib
{
namespace
misc
{
namespace
misc
{
...
@@ -22,7 +22,7 @@ struct Helper {
...
@@ -22,7 +22,7 @@ struct Helper {
int
groups_of
[
N
][
GROUPS_OF
];
// 每格属于3个组
int
groups_of
[
N
][
GROUPS_OF
];
// 每格属于3个组
int
groups
[
GROUPS
][
9
];
// 27个组 = 9行+9列+9块
int
groups
[
GROUPS
][
9
];
// 27个组 = 9行+9列+9块
std
::
default_random_engine
rng
{}
;
std
::
default_random_engine
rng
=
jlib
::
seeded_random_engine
()
;
// 初始化辅助结构体,用户调用 solve 之前手动调用一次即可
// 初始化辅助结构体,用户调用 solve 之前手动调用一次即可
Helper
()
{
Helper
()
{
...
...
test/sudoku_clients/sudoku_clients.cpp
View file @
e25b354a
...
@@ -33,7 +33,7 @@ struct Client : simple_libevent_clients::BaseClient {
...
@@ -33,7 +33,7 @@ struct Client : simple_libevent_clients::BaseClient {
std
::
lock_guard
<
std
::
mutex
>
lg
(
mutex
);
std
::
lock_guard
<
std
::
mutex
>
lg
(
mutex
);
auto
client
=
new
Client
();
auto
client
=
new
Client
();
client
->
puzzles
=
puzzles_to_solve_per_client
;
client
->
puzzles
=
puzzles_to_solve_per_client
;
client
->
helper
.
rng
=
jlib
::
seeded_random_engine
();
//
client->helper.rng = jlib::seeded_random_engine();
return
client
;
return
client
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment