File Coverage

blib/lib/Math/PlanePath/CellularRule57.pm
Criterion Covered Total %
statement 141 154 91.5
branch 70 80 87.5
condition 17 18 94.4
subroutine 20 23 86.9
pod 6 6 100.0
total 254 281 90.3


line stmt bran cond sub pod time code
1             # Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Kevin Ryde
2              
3             # This file is part of Math-PlanePath.
4             #
5             # Math-PlanePath is free software; you can redistribute it and/or modify
6             # it under the terms of the GNU General Public License as published by the
7             # Free Software Foundation; either version 3, or (at your option) any later
8             # version.
9             #
10             # Math-PlanePath is distributed in the hope that it will be useful, but
11             # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12             # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13             # for more details.
14             #
15             # You should have received a copy of the GNU General Public License along
16             # with Math-PlanePath. If not, see .
17              
18              
19              
20             package Math::PlanePath::CellularRule57;
21 1     1   31 use 5.004;
  1         4  
22 1     1   8 use strict;
  1         2  
  1         50  
23              
24 1     1   7 use vars '$VERSION', '@ISA';
  1         2  
  1         96  
25             $VERSION = 128;
26 1     1   8 use Math::PlanePath;
  1         2  
  1         63  
27             @ISA = ('Math::PlanePath');
28             *_sqrtint = \&Math::PlanePath::_sqrtint;
29              
30             use Math::PlanePath::Base::Generic
31 1     1   7 'round_nearest';
  1         3  
  1         69  
32              
33 1     1   6 use Math::PlanePath::CellularRule54;
  1         2  
  1         55  
34             *_rect_for_V = \&Math::PlanePath::CellularRule54::_rect_for_V;
35              
36             # uncomment this to run the ### lines
37             #use Smart::Comments;
38              
39              
40 1     1   7 use constant class_y_negative => 0;
  1         2  
  1         94  
41 1     1   9 use constant n_frac_discontinuity => .5;
  1         2  
  1         83  
42              
43 1         134 use constant parameter_info_array =>
44             [ { name => 'mirror',
45             display => 'Mirror',
46             type => 'boolean',
47             default => 0,
48             description => 'Mirror to "rule 99" instead.',
49             },
50             Math::PlanePath::Base::Generic::parameter_info_nstart1(),
51 1     1   7 ];
  1         3  
52              
53             sub x_negative_at_n {
54 0     0 1 0 my ($self) = @_;
55 0 0       0 return $self->n_start + ($self->{'mirror'} ? 1 : 2);
56             }
57 1     1   8 use constant sumxy_minimum => 0; # triangular X>=-Y so X+Y>=0
  1         5  
  1         62  
58 1     1   7 use constant diffxy_maximum => 0; # triangular X<=Y so X-Y<=0
  1         2  
  1         56  
59 1     1   8 use constant dx_maximum => 3;
  1         4  
  1         71  
60 1     1   6 use constant dy_minimum => 0;
  1         3  
  1         58  
61 1     1   9 use constant dy_maximum => 1;
  1         6  
  1         97  
62              
63             sub absdx_minimum {
64 0     0 1 0 my ($self) = @_;
65 0 0       0 return ($self->{'mirror'} ? 0 : 1);
66             }
67 1     1   15 use constant dsumxy_maximum => 3; # straight East dX=+3
  1         2  
  1         79  
68 1     1   9 use constant ddiffxy_maximum => 3; # straight East dX=+3
  1         4  
  1         48  
69 1     1   7 use constant dir_maximum_dxdy => (-1,0); # supremum, West and dY=+1 up
  1         2  
  1         1234  
70              
71              
72             #------------------------------------------------------------------------------
73              
74             sub new {
75 2     2 1 12 my $self = shift->SUPER::new (@_);
76 2 50       12 if (! defined $self->{'n_start'}) {
77 0         0 $self->{'n_start'} = $self->default_n_start;
78             }
79 2         10 return $self;
80             }
81              
82             # left
83             # even y=3 5
84             # 5 12
85             # 7 23
86             # 9 38
87             # [1,2,3,4], [5,12,23,38]
88             #
89             # N = (2 d^2 + d + 2)
90             # = (2*$d**2 + $d + 2)
91             # = ((2*$d + 1)*$d + 2)
92             # d = -1/4 + sqrt(1/2 * $n + -15/16)
93             # = (-1 + 4*sqrt(1/2 * $n + -15/16)) / 4
94             # = (sqrt(8*$n-15)-1)/4
95             # with Y=2*d+1
96              
97             # row 19, d=9
98             # N=173 to N=181 is 9 cells rem=0..8 is d-1
99             # 1/3 section 3 cells rem=0,1,2 floor((d-1)/3)
100             # 2/3 section 6 cells
101             # right solid N=191 to N=200 is 10 of is rem
102             #
103             # row 21, d=10
104             # 1/3 section 4 cells rem=0,1,2,3 floor((d-1)/3)
105             # 2/3 section 6 cells
106             #
107             # row 23, d=11
108             # 1/3 section 4 cells rem=0,1,2,3 floor((d-1)/3)
109             # 2/3 section 7 cells
110             #
111             # row 25, d=12
112             # 2/3 section 8 cells
113             #
114             # row 27, d=13
115             # 2/3 section 8 cells
116             #
117             # row 29, d=14
118             # 2/3 section 9 cells floor(2d/3)
119             #
120             # row 31, d=15
121             # 2/3 section 10 cells floor(2d/3)
122             #
123             #
124             # row 18 d=8
125             # odd 1/3 section 4 cells (d+4)/3
126             #
127             # row 20 d=9
128             # odd 1/3 section 4 cells
129             #
130             # row 22 d=10
131             # odd 1/3 section 4 cells
132             #
133             # row 23 d=11
134             # odd 1/3 section 5 cells
135              
136              
137             sub n_to_xy {
138 51     51 1 380 my ($self, $n) = @_;
139             ### CellularRule57 n_to_xy(): $n
140              
141 51         79 $n = $n - $self->{'n_start'} + 1; # to N=1 basis, and warn if $n undef
142 51         68 my $frac;
143             {
144 51         78 my $int = int($n);
  51         64  
145 51         71 $frac = $n - $int;
146 51         73 $n = $int; # BigFloat int() gives BigInt, use that
147 51 50       107 if (2*$frac >= 1) {
148 0         0 $frac -= 1;
149 0         0 $n += 1;
150             }
151             # -0.5 <= $frac < 0.5
152             ### assert: 2*$frac >= -1
153             ### assert: 2*$frac < 1
154             }
155              
156 51 100       82 if ($n <= 1) {
157 10 100       25 if ($n == 1) {
158 4         11 return (0,0);
159             } else {
160 6         12 return;
161             }
162             }
163              
164             # d is the two-row group number, y=2*d+1, where n belongs
165             #
166 41         94 my $d = int( (_sqrtint(8*$n-15)-1)/4 );
167 41         69 $n -= ((2*$d + 1)*$d + 2); # remainder
168             ### $d
169             ### remainder: $n
170              
171 41 100       80 if ($self->{'mirror'}) {
172 20 100       42 if ($n <= $d) {
173             ### right solid: $n
174 7         23 return ($frac + $n - 2*$d - 1,
175             2*$d+1);
176             }
177 13         19 $n -= $d+1;
178              
179 13 100       28 if ($n < int(2*$d/3)) {
180             ### right 2/3: $n
181 1         6 return ($frac + int(3*$n/2) - $d + 1,
182             2*$d+1);
183             }
184 12         21 $n -= int(2*$d/3);
185              
186 12 100       23 if ($n < int(($d+2)/3)) {
187             ### left 1/3: $n
188 2         7 return ($frac + 3*$n + ((2+$d)%3),
189             2*$d+1);
190             }
191 10         20 $n -= int(($d+2)/3);
192              
193 10 100       19 if ($n < $d) {
194             ### left solid: $n
195 3         9 return ($frac + $n + $d+2,
196             2*$d+1);
197             }
198 7         10 $n -= $d;
199              
200 7 100       17 if ($n < int((2*$d+5)/3)) {
201             ### odd 2/3: $n
202 5         15 return ($frac + int((3*$n)/2) - $d + - 1,
203             2*$d+2);
204             }
205 2         5 $n -= int((2*$d+5)/3);
206              
207             ### odd 1/3: $n
208 2         8 return ($frac + 3*$n + ($d%3) + 1,
209             2*$d+2);
210              
211             } else {
212 21 100       37 if ($n < $d) {
213             ### left solid: $n
214 3         11 return ($frac + $n - 2*$d - 1,
215             2*$d+1);
216             }
217 18         27 $n -= $d;
218              
219 18 100       37 if ($n < int(($d+2)/3)) {
220             ### left 1/3: $n
221 2         37 return ($frac + 3*$n - $d + 1,
222             2*$d+1);
223             }
224 16         29 $n -= int(($d+2)/3);
225              
226 16 100       29 if ($n < int(2*$d/3)) {
227             ### right 2/3: $n
228 1         5 return ($frac + $n + int(($n+(-$d%3))/2) + 1,
229             2*$d+1);
230             }
231 15         25 $n -= int(2*$d/3);
232              
233 15 100       28 if ($n <= $d) {
234             ### right solid: $n
235 7         19 return ($frac + $d + $n + 1,
236             2*$d+1);
237             }
238 8         17 $n -= $d+1;
239              
240 8 100       19 if ($n < int(($d+4)/3)) {
241             ### odd 1/3: $n
242 5         14 return ($frac + 3*$n - $d - 1,
243             2*$d+2);
244             }
245 3         5 $n -= int(($d+4)/3);
246              
247             ### odd 2/3: $n
248 3         11 return ($frac + $n + int(($n+((1-$d)%3))/2) + 1,
249             2*$d+2);
250             }
251             }
252              
253             sub xy_to_n {
254 992     992 1 4644 my ($self, $x, $y) = @_;
255 992         1737 $x = round_nearest ($x);
256 992         1827 $y = round_nearest ($y);
257             ### CellularRule57 xy_to_n(): "$x,$y"
258              
259 992 100 66     3744 if ($y < 0
      100        
260             || $x < -$y
261             || $x > $y) {
262             ### outside pyramid region ...
263 480         918 return undef;
264             }
265              
266 512 100       971 if ($self->{'mirror'}) {
267             # mirrored, rule 99
268              
269 256 100       436 if ($y % 2) {
270 136         226 my $d = ($y+1)/2;
271             ### odd row, solids, d: $d
272              
273 136 100       267 if ($x < -$d) {
274 28         78 return ($y+1)*$y/2 + $x + 1 + $self->{'n_start'};
275             }
276 108 100       208 if ($x < 0) {
    100          
277             ### mirror left 2 of 3 ...
278 36 100       71 if (($x += $d+2) % 3) {
279 24         77 return ($y+1)*$y/2 + $x-int($x/3) - $d + $self->{'n_start'} - 1;
280             }
281             } elsif ($x > $d) {
282 28         78 return ($y+1)*$y/2 + $x - $d + $self->{'n_start'};
283             } else {
284             ### mirror right 1 of 3 ...
285 44         60 $x += 2-$d;
286 44 100       85 unless ($x % 3) {
287 12         35 return ($y+1)*$y/2 + $x/3 + $self->{'n_start'};
288             }
289             }
290              
291             } else {
292             ### even row, sparse ...
293 120         188 my $d = $y/2;
294 120 100       196 if ($x >= 0) {
295             ### mirror sparse right 1 of 3 ...
296 64 100 100     190 if ($x <= $d # only to half way
297             && (($x -= $d) % 3) == 0) {
298 15         43 return ($y+1)*$y/2 + $x/3 + $self->{'n_start'};
299             }
300             } else { # $x < 0
301             ### mirror sparse left 2 of 3 ...
302 56 100 100     151 if ($x >= -$d # only to half way
303             && (($x += $d+1) % 3)) {
304 21         65 return ($y+1)*$y/2 + $x-int($x/3) - $d + $self->{'n_start'} - 1;
305             }
306             }
307             }
308             } else {
309             # unmirrored, rule 57
310              
311 256 100       402 if ($y % 2) {
312 136         220 my $d = ($y+1)/2;
313             ### odd row, solids, d: $d
314              
315 136 100       309 if ($x <= -$d) {
    100          
    100          
316             ### solid left ...
317 36 100       68 if ($x < -$d) { # always skip the -$d cell
318 28         75 return ($y+1)*$y/2 + $x + 1 + $self->{'n_start'};
319             }
320             } elsif ($x <= 0) {
321             ### 1 of 3 ...
322 36 100       75 unless (($x += $d+1) % 3) {
323 12         31 return ($y+1)*$y/2 + $x/3 - $d + $self->{'n_start'};
324             }
325             } elsif ($x >= $d) {
326             ### solid right ...
327 36         119 return ($y+1)*$y/2 + $x - $d + $self->{'n_start'};
328             } else {
329             ### 2 of 3 ...
330 28         42 $x += 1-$d;
331 28 100       53 if ($x % 3) {
332 16         57 return ($y+1)*$y/2 + $x-int($x/3) + $self->{'n_start'};
333             }
334             }
335              
336             } else {
337             ### even row, sparse ...
338              
339 120         194 my $d = $y/2;
340 120 100       202 if ($x > 0) {
341             ### right 2 of 3 ...
342 56 100 100     157 if ($x <= $d # goes to half way only
343             && (($x -= $d+1) % 3)) {
344 21         62 return ($y+1)*$y/2 + $x-int($x/3) + 1 + $self->{'n_start'};
345             }
346             } else { # $x <= 0
347             ### left 1 of 3 ...
348 64 100 100     181 if (($x += $d) >= 0 # goes to half way only
349             && ! ($x % 3)) {
350 15         58 return ($y+1)*$y/2 + $x/3 - $d + $self->{'n_start'};
351             }
352             }
353             }
354             }
355 256         488 return undef;
356             }
357              
358             # left edge ((2*$d + 1)*$d + 2)
359             # where y=2*d+1
360             # d=floor((y-1)/2)
361             # left N = (2*floor((y-1)/2) + 1)*floor((y-1)/2) + 2
362             # = (yodd + 1)*yodd/2 + 2
363              
364              
365             # not exact
366             sub rect_to_n_range {
367 0     0 1   my ($self, $x1,$y1, $x2,$y2) = @_;
368             ### CellularRule57 rect_to_n_range(): "$x1,$y1, $x2,$y2"
369              
370 0 0         ($x1,$y1, $x2,$y2) = _rect_for_V ($x1,$y1, $x2,$y2)
371             or return (1,0); # rect outside pyramid
372              
373 0           my $zero = ($x1 * 0 * $y1 * $x2 * $y2); # inherit bignum
374              
375 0           $y1 -= ! ($y1 % 2);
376 0           $y2 -= ! ($y2 % 2);
377             return ($zero + ($y1 < 1
378             ? $self->{'n_start'}
379             : ($y1-1)*$y1/2 + 1 + $self->{'n_start'}),
380 0 0         $zero + ($y2+2)*($y2+1)/2 + $self->{'n_start'});
381             }
382              
383             1;
384             __END__