-
Notifications
You must be signed in to change notification settings - Fork 7
/
hanoi_test.c
128 lines (118 loc) · 4.27 KB
/
hanoi_test.c
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// *****************************************************************************
// hanoi_test.c Recorder project
// *****************************************************************************
//
// File description:
//
// A simple illustration of the recorder on the Towers of Hanoi problem
//
//
//
//
//
//
//
//
// *****************************************************************************
// This software is licensed under the GNU Lesser General Public License v2+
// (C) 2017-2020, Christophe de Dinechin <[email protected]>
// *****************************************************************************
// This file is part of Recorder
//
// Recorder is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// Recorder is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Recorder, in a file named COPYING.
// If not, see <https://www.gnu.org/licenses/>.
// *****************************************************************************
#include "recorder.h"
#include <stdio.h>
#include <stdlib.h>
RECORDER(MOVE, 1024, "Moving pieces around");
RECORDER(RECURSE, 1024, "Recursing");
RECORDER(TIMING, 32, "Timing information");
typedef enum post { LEFT, MIDDLE, RIGHT } post;
const char *postName[] = { "LEFT", "MIDDLE", "RIGHT" };
void hanoi_print(int n, post left, post right, post middle)
{
if (n == 1)
{
printf("Move disk from %s to %s\n", postName[left], postName[right]);
}
else
{
printf("Recursing at level %d\n", n);
hanoi_print(n-1, left, middle, right);
hanoi_print(1, left, right, middle);
hanoi_print(n-1, middle, right, left);
printf("Exit recursion at level %d\n", n);
}
}
void hanoi_record(int n, post left, post right, post middle)
{
if (n == 1)
{
record(MOVE,"Move disk from %s to %s", postName[left], postName[right]);
}
else
{
record(RECURSE, ">Recursing at level %d", n);
hanoi_record(n-1, left, middle, right);
hanoi_record(1, left, right, middle);
hanoi_record(n-1, middle, right, left);
record(RECURSE, "<Exit recursiong at level %d", n);
}
}
void hanoi_record_fast(int n, post left, post right, post middle)
{
if (n == 1)
{
RECORD_FAST(MOVE,"Move disk from %s to %s",
postName[left], postName[right]);
}
else
{
record_fast(RECURSE, ">Recursing at level %d", n);
hanoi_record_fast(n-1, left, middle, right);
hanoi_record_fast(1, left, right, middle);
hanoi_record_fast(n-1, middle, right, left);
record_fast(RECURSE, "<Exit recursiong at level %d", n);
}
}
int main(int argc, char **argv)
{
int i;
uintptr_t duration;
recorder_dump_on_common_signals(0, 0);
#define DURATION ((double) duration / RECORDER_HZ)
for (i = 1; i < argc; i++)
{
int count = atoi(argv[i]);
#define TEST(Info, Code) \
record(TIMING, \
"Begin " Info " with %d iterations", count); \
duration = recorder_tick(); \
Code; \
duration = recorder_tick() - duration; \
record(TIMING, \
"End " Info " with %d iterations, " \
"duration %.6fs", \
count, DURATION);
TEST("printing Hanoi",
hanoi_print(count, LEFT, MIDDLE, RIGHT));
fflush(stdout);
TEST("recording Hanoi",
hanoi_record(count, LEFT, MIDDLE, RIGHT));
TEST("fast recording Hanoi",
hanoi_record_fast(count, LEFT, MIDDLE, RIGHT));
}
recorder_dump_for("TIMING");
}