line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Games::ABC_Path::Generator; |
2
|
|
|
|
|
|
|
$Games::ABC_Path::Generator::VERSION = '0.4.3'; |
3
|
2
|
|
|
2
|
|
157275
|
use 5.006; |
|
2
|
|
|
|
|
32
|
|
4
|
|
|
|
|
|
|
|
5
|
2
|
|
|
2
|
|
11
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
56
|
|
6
|
2
|
|
|
2
|
|
13
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
63
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
537
|
use integer; |
|
2
|
|
|
|
|
15
|
|
|
2
|
|
|
|
|
10
|
|
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
926
|
use parent 'Games::ABC_Path::Generator::Base'; |
|
2
|
|
|
|
|
593
|
|
|
2
|
|
|
|
|
10
|
|
11
|
|
|
|
|
|
|
|
12
|
2
|
|
|
2
|
|
80
|
use Games::ABC_Path::Solver::Constants; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
219
|
|
13
|
2
|
|
|
2
|
|
1084
|
use Games::ABC_Path::Solver::Board '0.1.0'; |
|
2
|
|
|
|
|
21357
|
|
|
2
|
|
|
|
|
68
|
|
14
|
2
|
|
|
2
|
|
887
|
use Games::ABC_Path::MicrosoftRand (); |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
44
|
|
15
|
2
|
|
|
2
|
|
888
|
use Games::ABC_Path::Generator::RiddleObj (); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
45
|
|
16
|
2
|
|
|
2
|
|
915
|
use Games::ABC_Path::Generator::FinalLayoutObj (); |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
44
|
|
17
|
2
|
|
|
2
|
|
886
|
use Games::ABC_Path::Generator::Coord (); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
3355
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub _init |
21
|
|
|
|
|
|
|
{ |
22
|
1
|
|
|
1
|
|
123
|
my $self = shift; |
23
|
1
|
|
|
|
|
2
|
my $args = shift; |
24
|
|
|
|
|
|
|
|
25
|
1
|
|
|
|
|
6
|
$self->{seed} = $args->{seed}; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
$self->{rand} = |
28
|
1
|
|
|
|
|
9
|
Games::ABC_Path::MicrosoftRand->new( seed => $self->{seed} ); |
29
|
|
|
|
|
|
|
|
30
|
1
|
|
|
|
|
4
|
return; |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
sub _shuffle |
34
|
|
|
|
|
|
|
{ |
35
|
52
|
|
|
52
|
|
87
|
my ( $self, $deck ) = @_; |
36
|
|
|
|
|
|
|
|
37
|
52
|
|
|
|
|
133
|
return $self->{'rand'}->shuffle($deck); |
38
|
|
|
|
|
|
|
} |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
{ |
41
|
|
|
|
|
|
|
my @get_next_cells_lookup = ( |
42
|
|
|
|
|
|
|
map { |
43
|
|
|
|
|
|
|
my $start = Games::ABC_Path::Generator::Coord->_from_int($_); |
44
|
|
|
|
|
|
|
[ |
45
|
|
|
|
|
|
|
map { |
46
|
|
|
|
|
|
|
my ( $y, $x ) = |
47
|
|
|
|
|
|
|
( $start->y() + $_->[$Y], $start->x() + $_->[$X] ); |
48
|
|
|
|
|
|
|
( |
49
|
|
|
|
|
|
|
( |
50
|
|
|
|
|
|
|
__PACKAGE__->_x_in_range($x) |
51
|
|
|
|
|
|
|
&& __PACKAGE__->_y_in_range($y) |
52
|
|
|
|
|
|
|
) ? ( __PACKAGE__->_xy_to_int( [ $y, $x ] ) ) : () |
53
|
|
|
|
|
|
|
) |
54
|
|
|
|
|
|
|
} ( |
55
|
|
|
|
|
|
|
[ -1, -1 ], [ -1, 0 ], [ -1, 1 ], [ 0, -1 ], |
56
|
|
|
|
|
|
|
[ 0, 1 ], [ 1, -1 ], [ 1, 0 ], [ 1, 1 ] |
57
|
|
|
|
|
|
|
) |
58
|
|
|
|
|
|
|
] |
59
|
|
|
|
|
|
|
} ( 0 .. $BOARD_SIZE - 1 ) |
60
|
|
|
|
|
|
|
); |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
sub _get_next_cells |
63
|
|
|
|
|
|
|
{ |
64
|
367
|
|
|
367
|
|
619
|
my ( $self, $l, $init_idx ) = @_; |
65
|
|
|
|
|
|
|
|
66
|
2001
|
|
|
|
|
3706
|
return [ grep { vec( $l, $_, 8 ) == 0 } |
67
|
367
|
|
|
|
|
545
|
@{ $get_next_cells_lookup[$init_idx] } ]; |
|
367
|
|
|
|
|
586
|
|
68
|
|
|
|
|
|
|
} |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub _add_next_state |
72
|
|
|
|
|
|
|
{ |
73
|
28
|
|
|
28
|
|
52
|
my ( $self, $stack, $l, $cell_int ) = @_; |
74
|
|
|
|
|
|
|
|
75
|
28
|
|
|
|
|
90
|
vec( $l, $cell_int, 8 ) = 1 + @$stack; |
76
|
|
|
|
|
|
|
|
77
|
28
|
|
|
|
|
65
|
push @$stack, |
78
|
|
|
|
|
|
|
[ $l, $self->_shuffle( $self->_get_next_cells( $l, $cell_int ) ) ]; |
79
|
|
|
|
|
|
|
|
80
|
28
|
|
|
|
|
71
|
return; |
81
|
|
|
|
|
|
|
} |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
sub _get_num_connected |
84
|
|
|
|
|
|
|
{ |
85
|
30
|
|
|
30
|
|
50
|
my ( $self, $l ) = @_; |
86
|
|
|
|
|
|
|
|
87
|
30
|
|
|
|
|
63
|
my @connectivity_stack = ( index( $l, "\0" ) ); |
88
|
|
|
|
|
|
|
|
89
|
30
|
|
|
|
|
37
|
my %connected; |
90
|
30
|
|
|
|
|
59
|
while (@connectivity_stack) |
91
|
|
|
|
|
|
|
{ |
92
|
707
|
|
|
|
|
1137
|
my $int = pop(@connectivity_stack); |
93
|
707
|
100
|
|
|
|
1527
|
if ( !$connected{$int}++ ) |
94
|
|
|
|
|
|
|
{ |
95
|
|
|
|
|
|
|
push @connectivity_stack, |
96
|
1354
|
|
|
|
|
2853
|
( grep { !exists( $connected{$_} ) } |
97
|
339
|
|
|
|
|
451
|
@{ $self->_get_next_cells( $l, $int ) } ); |
|
339
|
|
|
|
|
582
|
|
98
|
|
|
|
|
|
|
} |
99
|
|
|
|
|
|
|
} |
100
|
|
|
|
|
|
|
|
101
|
30
|
|
|
|
|
136
|
return scalar keys %connected; |
102
|
|
|
|
|
|
|
} |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
sub calc_final_layout |
106
|
|
|
|
|
|
|
{ |
107
|
1
|
|
|
1
|
1
|
26
|
my $self = shift; |
108
|
|
|
|
|
|
|
|
109
|
1
|
|
|
|
|
2
|
my @dfs_stack; |
110
|
|
|
|
|
|
|
$self->_add_next_state( \@dfs_stack, '', |
111
|
1
|
|
|
|
|
5
|
$self->{rand}->max_rand($BOARD_SIZE) ); |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
DFS: |
114
|
1
|
|
|
|
|
3
|
while (@dfs_stack) |
115
|
|
|
|
|
|
|
{ |
116
|
31
|
|
|
|
|
47
|
my ( $l, $last_cells ) = @{ $dfs_stack[-1] }; |
|
31
|
|
|
|
|
59
|
|
117
|
|
|
|
|
|
|
|
118
|
31
|
100
|
|
|
|
63
|
if ( @dfs_stack == $BOARD_SIZE ) |
119
|
|
|
|
|
|
|
{ |
120
|
1
|
|
|
|
|
13
|
return Games::ABC_Path::Generator::FinalLayoutObj->new( |
121
|
|
|
|
|
|
|
{ layout_string => $l, }, |
122
|
|
|
|
|
|
|
); |
123
|
|
|
|
|
|
|
} |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
# print "Depth = " . scalar(@dfs_stack) . "\n"; |
126
|
|
|
|
|
|
|
# print "Last state = " . Dumper($last_state) . "\n"; |
127
|
|
|
|
|
|
|
# print "Layout = \n" . $self->get_layout_as_string($last_state->{layout}) . "\n"; |
128
|
|
|
|
|
|
|
|
129
|
30
|
|
|
|
|
49
|
my $next_idx = shift(@$last_cells); |
130
|
|
|
|
|
|
|
|
131
|
30
|
100
|
66
|
|
|
75
|
if ( |
132
|
|
|
|
|
|
|
( !defined($next_idx) ) |
133
|
|
|
|
|
|
|
or ( $self->_get_num_connected($l) != |
134
|
|
|
|
|
|
|
( $BOARD_SIZE - scalar(@dfs_stack) ) ) |
135
|
|
|
|
|
|
|
) |
136
|
|
|
|
|
|
|
{ |
137
|
3
|
|
|
|
|
10
|
pop(@dfs_stack); |
138
|
|
|
|
|
|
|
} |
139
|
|
|
|
|
|
|
else |
140
|
|
|
|
|
|
|
{ |
141
|
27
|
|
|
|
|
65
|
$self->_add_next_state( \@dfs_stack, $l, $next_idx ); |
142
|
|
|
|
|
|
|
} |
143
|
|
|
|
|
|
|
} |
144
|
|
|
|
|
|
|
|
145
|
0
|
|
|
|
|
0
|
die "Not found!"; |
146
|
|
|
|
|
|
|
} |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
sub _gen_clue_positions |
150
|
|
|
|
|
|
|
{ |
151
|
24
|
|
|
24
|
|
41
|
my ( $self, $cb ) = @_; |
152
|
24
|
|
|
|
|
46
|
return [ map { $cb->($_) } $self->_x_indexes() ]; |
|
120
|
|
|
|
|
225
|
|
153
|
|
|
|
|
|
|
} |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
sub _calc_clue_positions |
156
|
|
|
|
|
|
|
{ |
157
|
2
|
|
|
2
|
|
4
|
my $self = shift; |
158
|
|
|
|
|
|
|
return [ |
159
|
|
|
|
|
|
|
map { |
160
|
120
|
|
|
|
|
488
|
[ map { $self->_xy_to_int($_) } |
161
|
24
|
|
|
|
|
143
|
@{ $self->_gen_clue_positions($_) } ] |
|
24
|
|
|
|
|
44
|
|
162
|
|
|
|
|
|
|
} ( |
163
|
10
|
|
|
10
|
|
26
|
sub { [ $_, $_ ]; }, |
164
|
10
|
|
|
10
|
|
33
|
sub { [ $_, 4 - $_ ]; }, |
165
|
|
|
|
|
|
|
( |
166
|
|
|
|
|
|
|
map { |
167
|
10
|
|
|
|
|
23
|
my $y = $_; |
168
|
10
|
|
|
50
|
|
33
|
sub { [ $y, $_ ] }; |
|
50
|
|
|
|
|
82
|
|
169
|
|
|
|
|
|
|
} $self->_y_indexes() |
170
|
|
|
|
|
|
|
), |
171
|
|
|
|
|
|
|
( |
172
|
|
|
|
|
|
|
map { |
173
|
2
|
|
|
|
|
21
|
my $x = $_; |
|
10
|
|
|
|
|
51
|
|
174
|
10
|
|
|
50
|
|
26
|
sub { [ $_, $x ] }; |
|
50
|
|
|
|
|
88
|
|
175
|
|
|
|
|
|
|
} $self->_x_indexes() |
176
|
|
|
|
|
|
|
), |
177
|
|
|
|
|
|
|
) |
178
|
|
|
|
|
|
|
]; |
179
|
|
|
|
|
|
|
} |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
my @_clues_positions = @{ __PACKAGE__->_calc_clue_positions() }; |
182
|
|
|
|
|
|
|
|
183
|
|
|
|
|
|
|
sub calc_riddle |
184
|
|
|
|
|
|
|
{ |
185
|
1
|
|
|
1
|
1
|
10
|
my ($self) = @_; |
186
|
|
|
|
|
|
|
|
187
|
1
|
|
|
|
|
3
|
my $layout = $self->calc_final_layout(); |
188
|
|
|
|
|
|
|
|
189
|
1
|
|
|
|
|
13
|
my $A_pos = $layout->get_A_pos; |
190
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
my %init_state = ( |
192
|
|
|
|
|
|
|
pos_taken => '', |
193
|
1
|
|
|
|
|
3
|
clues => [ map { +{ num_remaining => 5, } } ( 1 .. $NUM_CLUES ), ] |
|
12
|
|
|
|
|
24
|
|
194
|
|
|
|
|
|
|
); |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
my $mark = sub { |
197
|
25
|
|
|
25
|
|
51
|
my ( $state, $pos ) = @_; |
198
|
|
|
|
|
|
|
|
199
|
25
|
|
|
|
|
60
|
vec( $state->{pos_taken}, $pos, 1 ) = 1; |
200
|
|
|
|
|
|
|
|
201
|
25
|
|
|
|
|
74
|
my $coord = Games::ABC_Path::Generator::Coord->_from_int($pos); |
202
|
|
|
|
|
|
|
|
203
|
25
|
100
|
|
|
|
584
|
foreach my $clue ( |
|
|
100
|
|
|
|
|
|
204
|
|
|
|
|
|
|
( ( $coord->y == $coord->x ) ? 0 : () ), |
205
|
|
|
|
|
|
|
( ( $coord->y == ( 5 - 1 ) - $coord->x ) ? 1 : () ), |
206
|
|
|
|
|
|
|
( 2 + $coord->y ), |
207
|
|
|
|
|
|
|
( ( 2 + 5 ) + $coord->x ), |
208
|
|
|
|
|
|
|
) |
209
|
|
|
|
|
|
|
{ |
210
|
60
|
|
|
|
|
728
|
$state->{clues}->[$clue]->{num_remaining}--; |
211
|
|
|
|
|
|
|
} |
212
|
1
|
|
|
|
|
8
|
}; |
213
|
|
|
|
|
|
|
|
214
|
1
|
|
|
|
|
4
|
$mark->( \%init_state, $A_pos ); |
215
|
|
|
|
|
|
|
|
216
|
1
|
|
|
|
|
4
|
my @dfs_stack = ( \%init_state ); |
217
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
DFS: |
219
|
1
|
|
|
|
|
5
|
while (@dfs_stack) |
220
|
|
|
|
|
|
|
{ |
221
|
13
|
|
|
|
|
21
|
my $last_state = $dfs_stack[-1]; |
222
|
|
|
|
|
|
|
|
223
|
13
|
50
|
|
|
|
25
|
if ( !exists( $last_state->{chosen_clue} ) ) |
224
|
|
|
|
|
|
|
{ |
225
|
|
|
|
|
|
|
my @clues = ( |
226
|
|
|
|
|
|
|
sort { |
227
|
|
|
|
|
|
|
( $a->[1]->{num_remaining} <=> $b->[1]->{num_remaining} ) |
228
|
147
|
50
|
|
|
|
287
|
or |
229
|
|
|
|
|
|
|
( $a->[0] <=> $b->[0] ) |
230
|
|
|
|
|
|
|
} |
231
|
156
|
|
|
|
|
278
|
grep { !exists( $_->[1]->{cells} ) } |
232
|
13
|
|
|
|
|
33
|
map { [ $_, $last_state->{clues}->[$_] ] } |
|
156
|
|
|
|
|
286
|
|
233
|
|
|
|
|
|
|
( 0 .. $NUM_CLUES - 1 ) |
234
|
|
|
|
|
|
|
); |
235
|
|
|
|
|
|
|
|
236
|
13
|
100
|
|
|
|
52
|
if ( !@clues ) |
237
|
|
|
|
|
|
|
{ |
238
|
|
|
|
|
|
|
# Yay! We found a configuration. |
239
|
|
|
|
|
|
|
my $handle_clue = sub { |
240
|
12
|
|
|
12
|
|
18
|
my @cells = @{ shift->{cells} }; |
|
12
|
|
|
|
|
21
|
|
241
|
24
|
|
|
|
|
50
|
return [ map { $layout->get_cell_contents($_) } |
242
|
12
|
|
|
|
|
21
|
@{ $self->_shuffle( \@cells ) } ]; |
|
12
|
|
|
|
|
20
|
|
243
|
1
|
|
|
|
|
6
|
}; |
244
|
|
|
|
|
|
|
my $riddle = Games::ABC_Path::Generator::RiddleObj->new( |
245
|
|
|
|
|
|
|
{ |
246
|
|
|
|
|
|
|
solution => $layout, |
247
|
|
|
|
|
|
|
clues => [ |
248
|
1
|
|
|
|
|
3
|
map { $handle_clue->($_) } @{ $last_state->{clues} } |
|
12
|
|
|
|
|
21
|
|
|
1
|
|
|
|
|
10
|
|
249
|
|
|
|
|
|
|
], |
250
|
|
|
|
|
|
|
A_pos => Games::ABC_Path::Generator::Coord->_from_int( |
251
|
|
|
|
|
|
|
$A_pos), |
252
|
|
|
|
|
|
|
} |
253
|
|
|
|
|
|
|
); |
254
|
|
|
|
|
|
|
|
255
|
1
|
|
|
|
|
8
|
my $riddle_string = $riddle->get_riddle_v1_string(); |
256
|
|
|
|
|
|
|
|
257
|
1
|
|
|
|
|
8
|
my $solver = |
258
|
|
|
|
|
|
|
Games::ABC_Path::Solver::Board->input_from_v1_string( |
259
|
|
|
|
|
|
|
$riddle_string); |
260
|
|
|
|
|
|
|
|
261
|
1
|
|
|
|
|
48785
|
$solver->solve(); |
262
|
|
|
|
|
|
|
|
263
|
1
|
50
|
|
|
|
827664
|
if ( @{ $solver->get_successes_text_tables() } != 1 ) |
|
1
|
|
|
|
|
7
|
|
264
|
|
|
|
|
|
|
{ |
265
|
|
|
|
|
|
|
# The solution is ambiguous |
266
|
0
|
|
|
|
|
0
|
pop(@dfs_stack); |
267
|
0
|
|
|
|
|
0
|
next DFS; |
268
|
|
|
|
|
|
|
} |
269
|
|
|
|
|
|
|
else |
270
|
|
|
|
|
|
|
{ |
271
|
1
|
|
|
|
|
17868
|
return $riddle; |
272
|
|
|
|
|
|
|
} |
273
|
|
|
|
|
|
|
} |
274
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
# Not enough for the clues there. |
276
|
12
|
50
|
|
|
|
28
|
if ( $clues[0][1]->{num_remaining} < 2 ) |
277
|
|
|
|
|
|
|
{ |
278
|
0
|
|
|
|
|
0
|
pop(@dfs_stack); |
279
|
0
|
|
|
|
|
0
|
next DFS; |
280
|
|
|
|
|
|
|
} |
281
|
|
|
|
|
|
|
|
282
|
12
|
|
|
|
|
19
|
my $clue_idx = $clues[0][0]; |
283
|
|
|
|
|
|
|
|
284
|
12
|
|
|
|
|
20
|
$last_state->{chosen_clue} = $clue_idx; |
285
|
|
|
|
|
|
|
|
286
|
|
|
|
|
|
|
my @positions = |
287
|
60
|
|
|
|
|
125
|
( grep { !vec( $last_state->{pos_taken}, $_, 1 ) } |
288
|
12
|
|
|
|
|
18
|
@{ $_clues_positions[$clue_idx] } ); |
|
12
|
|
|
|
|
56
|
|
289
|
|
|
|
|
|
|
|
290
|
12
|
|
|
|
|
15
|
my @pairs; |
291
|
|
|
|
|
|
|
|
292
|
12
|
|
|
|
|
31
|
foreach my $first_idx ( 0 .. $#positions - 1 ) |
293
|
|
|
|
|
|
|
{ |
294
|
22
|
|
|
|
|
38
|
foreach my $second_idx ( $first_idx + 1 .. $#positions ) |
295
|
|
|
|
|
|
|
{ |
296
|
35
|
|
|
|
|
80
|
push @pairs, [ @positions[ $first_idx, $second_idx ] ]; |
297
|
|
|
|
|
|
|
} |
298
|
|
|
|
|
|
|
} |
299
|
|
|
|
|
|
|
|
300
|
12
|
|
|
|
|
30
|
$last_state->{pos_pairs} = $self->_shuffle( \@pairs ); |
301
|
|
|
|
|
|
|
} |
302
|
|
|
|
|
|
|
|
303
|
12
|
|
|
|
|
21
|
my $chosen_clue = $last_state->{chosen_clue}; |
304
|
12
|
|
|
|
|
17
|
my $next_pair = shift( @{ $last_state->{pos_pairs} } ); |
|
12
|
|
|
|
|
25
|
|
305
|
|
|
|
|
|
|
|
306
|
12
|
50
|
|
|
|
24
|
if ( !defined($next_pair) ) |
307
|
|
|
|
|
|
|
{ |
308
|
0
|
|
|
|
|
0
|
pop(@dfs_stack); |
309
|
0
|
|
|
|
|
0
|
next DFS; |
310
|
|
|
|
|
|
|
} |
311
|
|
|
|
|
|
|
|
312
|
12
|
|
|
|
|
14
|
my %new_state; |
313
|
12
|
|
|
|
|
27
|
$new_state{pos_taken} = $last_state->{pos_taken}; |
314
|
12
|
|
|
|
|
19
|
$new_state{clues} = [ map { +{ %{$_} } } @{ $last_state->{clues} } ]; |
|
144
|
|
|
|
|
195
|
|
|
144
|
|
|
|
|
341
|
|
|
12
|
|
|
|
|
18
|
|
315
|
12
|
|
|
|
|
29
|
foreach my $pos (@$next_pair) |
316
|
|
|
|
|
|
|
{ |
317
|
24
|
|
|
|
|
45
|
$mark->( \%new_state, $pos ); |
318
|
|
|
|
|
|
|
} |
319
|
12
|
|
|
|
|
27
|
$new_state{clues}->[$chosen_clue]->{cells} = [@$next_pair]; |
320
|
|
|
|
|
|
|
|
321
|
12
|
|
|
|
|
44
|
push @dfs_stack, ( \%new_state ); |
322
|
|
|
|
|
|
|
} |
323
|
|
|
|
|
|
|
} |
324
|
|
|
|
|
|
|
|
325
|
|
|
|
|
|
|
|
326
|
|
|
|
|
|
|
1; # End of Games::ABC_Path::Generator |
327
|
|
|
|
|
|
|
|
328
|
|
|
|
|
|
|
__END__ |