forked from karlovsek/cpp-iz-teorije-v-prakso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
87 lines (72 loc) · 1.19 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "PegSolitaire.hpp"
int main()
{
using namespace std::chrono;
auto const english_board = ps::get_english_board();
std::cout << "Start solving:\n";
ps::print(&english_board);
std::cout << "---------------\n";
auto const start = high_resolution_clock::now();
// Solving board e.g.
//
// Add your code
//
// ps::solve(english_board, moves); or
// const auto moves = ps::solve(english_board);
const auto moves = ps::solve(english_board);
auto end = high_resolution_clock::now();
auto duration_ms = duration_cast<duration<double, std::milli>>(end - start).count();
// Print moves
//
// Add your code
// e.g.
// ps::print_moves(results);
ps::printPath(&moves);
ps::playPathCommands(&moves, english_board);
std::cout << "Solving took: " << duration_ms << " ms\n";
/*
Output example:
~~~~~~~~~~~~~~~~
Start solving:
111
111
1111111
1110111
1111111
111
111
---------------
111
111
1111111
1110111
1111111
111
111
111
111
1111111
1111001
1111111
111
111
[ ... omitted ...]
000
000
0000000
0000000
0001000
010
000
000
000
0000000
0000000
0000000
000
010
Solving took: 492.057 ms
*/
getchar();
return 0;
}