-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.unit
executable file
·1573 lines (1429 loc) · 410 KB
/
master.unit
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/local/bin/koios
# koios-polos (northern axis) -- c unit testing metaprogram and mini-language
# program under test : gyges
# auto-generated script file converted from a previous script version
# updated to the most recent version (v21)
#> data structure waves è to ì
#23456789-12 123 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ver ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
PREP v21 include the prototype headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
incl v21 include public header gyges.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#==(verb)=== ===========(description)=========== =====(function)===== ========================(arguments)=================================== ==(test)== ==========================(results)=================================== t ========(var)=======
#GLOBAL layering of testing to coordinate sequence - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((26.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
WAVE primary/independent data structures (è) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((26.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
stage (1) simple validators and checkers
stage (2) data structure builders and destroyers
stage (3) data structure verifiers and defenses
stage (4) data structure mass updates, sorts, and cleansings
stage (5) data structure sequence-based index and cursor access
stage (6) data structure content update and manipulation
stage (7) data structure content-based actions
stage (8) data structure reading and writing
stage (9) data structure mapping and advanced processing
WAVE secondary/dependent data structures (é) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((26.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
stage (1) simple validators and checkers
stage (2) data structure builders and destroyers
stage (3) data structure verifiers and defenses
stage (4) data structure mass updates, sorts, and cleansings
stage (5) data structure sequence-based index and cursor access
stage (6) data structure content update and cross-linking
stage (7) data structure content-based actions
stage (8) data structure reading and writing
stage (9) data structure mapping and advanced processing
WAVE terciary/interdependent data structures (ê) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((26.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
stage (1) simple validators and checkers
stage (2) data structure builders and destroyers
stage (3) data structure verifiers and defenses
stage (4) data structure mass updates, sorts, and cleansings
stage (5) data structure sequence-based index and cursor access
stage (6) data structure content update and cross-linking
stage (7) data structure content-based actions
stage (8) data structure reading and writing
stage (9) data structure mapping and advanced processing
WAVE full application (ë) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((26.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
stage (1) data reading and writing primary inputs, outputs, and master files
stage (2) data reporting and dumping creation of formatted data for review and debugging
stage (3) screen presentation formatting of data to display in various screen elements
stage (4) edge, corner, and unicorn testing integration across data structures
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -A- standard scenario of wide variety of links - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GROUP set-up the cells for testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND create a tab dataset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add tab by abbreviation yKEYS_string ":umake·0·first¦" i_equal 0
exec add tab by abbreviation yKEYS_string ":umake·1·second¦" i_equal 0
exec add tab by abbreviation yKEYS_string ":umake·2·third¦" i_equal 0
COND setup the secondary, interconnected set of cells - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add the relative providing cell CELL_overwrite YMAP_BEG , 0, 6, 7, "-3" , "|?0--" i_pass 0
exec add the secondary cell CELL_overwrite YMAP_BEG , 0, 3, 6, "=g8*5" , "|?0--" i_pass 0
exec add the relative requiring cell CELL_overwrite YMAP_BEG , 0, 0, 5, "=d7-10" , "|?0--" i_pass 0
COND setup the primary, interconnected set of cells - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add the absolute providing cell CELL_overwrite YMAP_BEG , 0, 6, 4, "-2" , "|?0--" i_pass 0
exec add the relative providing cell CELL_overwrite YMAP_BEG , 0, 6, 2, "+92" , "|?0--" i_pass 0
exec add the primary cell CELL_overwrite YMAP_BEG , 0, 3, 2, "=$g$5*g3+d7+c2+$c$4" , "|?0--" i_pass 0
exec add the relative requiring cell CELL_overwrite YMAP_BEG , 0, 0, 2, "=d3+5" , "|?0--" i_pass 0
exec add the absolute requiring cell CELL_overwrite YMAP_BEG , 0, 2, 0, "=$d$3*2" , ">?0--" i_pass 0
COND setup the future points - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add placeholder for cut/copy CELL_overwrite YMAP_BEG , 0, 6, 5, "+46" , "|?0--" i_pass 0
exec add placeholder for cut/copy CELL_overwrite YMAP_BEG , 0, 3, 9, "-12" , "|?0--" i_pass 0
exec add placeholder for dup/integ CELL_overwrite YMAP_BEG , 0, 3, 5, "+0" , "|?0--" i_pass 0
COND setup the inner copy group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add top-left provides CELL_overwrite YMAP_BEG , 0, 2, 1, "+10" , "<i0d-" i_pass 0
exec add bottom-left provides CELL_overwrite YMAP_BEG , 0, 2, 3, "-10" , "<f1--" i_pass 0
exec add top-right requires relative CELL_overwrite YMAP_BEG , 0, 4, 1, "=d3-16" , ">?0--" i_pass 0
exec add bottom-right requires absolute CELL_overwrite YMAP_BEG , 0, 4, 3, "=$d$3+4" , ">?0--" i_pass 0
COND clear history for testing (start like file read) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((AA.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec run history initialization yMAP_mundo_purge i_pass 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -B- stanadard verification of standard link testing data - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GROUP check the secondary group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND core cell - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0d7 rpn api_ycalc__unit "ycalc_rpn" , "0d7" s_equal ycalc rpn : ( 3) = @,0g8I,5o,*
get .... requires api_ycalc__unit "ycalc_reqs" , "0d7" s_equal ycalc reqs : ( 1) ,0g8,
get ... provides api_ycalc__unit "ycalc_pros" , "0d7" s_equal ycalc pros : ( 2) ,0a6,0d3,
get .... value CELL__unitnew "value" , "0d7" s_equal s_celln value : -15.000000
get ... info CELL__unitnew "info" , "0d7" s_equal s_celln info : t== a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0d7" s_equal s_celln print : ( 8) : -15 :
COND provides relative value to 0d7 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0g8 rpn api_ycalc__unit "ycalc_rpn" , "0g8" s_equal ycalc rpn : ( 0) n .
get .... requires api_ycalc__unit "ycalc_reqs" , "0g8" s_equal ycalc reqs : ( 0) .
get .... provides api_ycalc__unit "ycalc_pros" , "0g8" s_equal ycalc pros : ( 1) ,0d7,
get .... value CELL__unitnew "value" , "0g8" s_equal s_celln value : -3.000000
get ... info CELL__unitnew "info" , "0g8" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0g8" s_equal s_celln print : ( 8) : -3 :
COND requires relative value from 0d7 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0a6 rpn api_ycalc__unit "ycalc_rpn" , "0a6" s_equal ycalc rpn : ( 3) = @,0d7I,10o,-
get .... requires api_ycalc__unit "ycalc_reqs" , "0a6" s_equal ycalc reqs : ( 1) ,0d7,
get .... provides api_ycalc__unit "ycalc_pros" , "0a6" s_equal ycalc pros : ( 1) ,ROOT,
get .... value CELL__unitnew "value" , "0a6" s_equal s_celln value : -25.000000
get ... info CELL__unitnew "info" , "0a6" s_equal s_celln info : t== a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0a6" s_equal s_celln print : ( 8) : -25 :
GROUP check the primary group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND core formula cell - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0d3 rpn api_ycalc__unit "ycalc_rpn" , "0d3" s_equal ycalc rpn : ( 9) = @,0g5@,0g3o,*@,0d7o,+@,0c2o,+@,0c4o,+
get ... requires api_ycalc__unit "ycalc_reqs" , "0d3" s_equal ycalc reqs : ( 5) ,0c2,0c4,0d7,0g3,0g5,
get ... provides api_ycalc__unit "ycalc_pros" , "0d3" s_equal ycalc pros : ( 4) ,0a3,0c1,0e2,0e4,
get ... value CELL__unitnew "value" , "0d3" s_equal s_celln value : -199.000000
get ... info CELL__unitnew "info" , "0d3" s_equal s_celln info : t== a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0d3" s_equal s_celln print : ( 8) : -199 :
COND provides relative value to 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0g3 rpn api_ycalc__unit "ycalc_rpn" , "0g3" s_equal ycalc rpn : ( 0) n .
get ... requires api_ycalc__unit "ycalc_reqs" , "0g3" s_equal ycalc reqs : ( 0) .
get ... provides api_ycalc__unit "ycalc_pros" , "0g3" s_equal ycalc pros : ( 1) ,0d3,
get ... value CELL__unitnew "value" , "0g3" s_equal s_celln value : 92.000000
get ... info CELL__unitnew "info" , "0g3" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0g3" s_equal s_celln print : ( 8) : 92 :
COND provides absolute value to 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0g5 rpn api_ycalc__unit "ycalc_rpn" , "0g5" s_equal ycalc rpn : ( 0) n .
get ... requires api_ycalc__unit "ycalc_reqs" , "0g5" s_equal ycalc reqs : ( 0) .
get ... provides api_ycalc__unit "ycalc_pros" , "0g5" s_equal ycalc pros : ( 1) ,0d3,
get ... value CELL__unitnew "value" , "0g5" s_equal s_celln value : -2.000000
get ... info CELL__unitnew "info" , "0g5" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0g5" s_equal s_celln print : ( 8) : -2 :
COND requires relative value from 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0a3 rpn api_ycalc__unit "ycalc_rpn" , "0a3" s_equal ycalc rpn : ( 3) = @,0d3I,5o,+
get ... requires api_ycalc__unit "ycalc_reqs" , "0a3" s_equal ycalc reqs : ( 1) ,0d3,
get ... provides api_ycalc__unit "ycalc_pros" , "0a3" s_equal ycalc pros : ( 1) ,ROOT,
get ... value CELL__unitnew "value" , "0a3" s_equal s_celln value : -194.000000
get ... info CELL__unitnew "info" , "0a3" s_equal s_celln info : t== a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0a3" s_equal s_celln print : ( 8) : -194 :
COND requires absolute value from 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0c1 rpn api_ycalc__unit "ycalc_rpn" , "0c1" s_equal ycalc rpn : ( 3) = @,0d3I,2o,*
get ... requires api_ycalc__unit "ycalc_reqs" , "0c1" s_equal ycalc reqs : ( 1) ,0d3,
get ... provides api_ycalc__unit "ycalc_pros" , "0c1" s_equal ycalc pros : ( 1) ,ROOT,
get ... value CELL__unitnew "value" , "0c1" s_equal s_celln value : -398.000000
get ... info CELL__unitnew "info" , "0c1" s_equal s_celln info : t== a=> f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0c1" s_equal s_celln print : ( 8) : -398 :
GROUP check the inner group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND provides relative value to 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0c2 rpn api_ycalc__unit "ycalc_rpn" , "0c2" s_equal ycalc rpn : ( 0) n .
get ... requires api_ycalc__unit "ycalc_reqs" , "0c2" s_equal ycalc reqs : ( 0) .
get ... provides api_ycalc__unit "ycalc_pros" , "0c2" s_equal ycalc pros : ( 1) ,0d3,
get ... value CELL__unitnew "value" , "0c2" s_equal s_celln value : 10.000000
get ... info CELL__unitnew "info" , "0c2" s_equal s_celln info : t=n a=< f=i d=0 u=d ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0c2" s_equal s_celln print : ( 8) :100d :
COND provides absolute value to 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.010)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0c4 rpn api_ycalc__unit "ycalc_rpn" , "0c4" s_equal ycalc rpn : ( 0) n .
get ... requires api_ycalc__unit "ycalc_reqs" , "0c4" s_equal ycalc reqs : ( 0) .
get ... provides api_ycalc__unit "ycalc_pros" , "0c4" s_equal ycalc pros : ( 1) ,0d3,
get ... value CELL__unitnew "value" , "0c4" s_equal s_celln value : -10.000000
get ... info CELL__unitnew "info" , "0c4" s_equal s_celln info : t=n a=< f=f d=1 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0c4" s_equal s_celln print : ( 8) :-10.0 :
COND requires relative value from 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.011)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0e2 rpn api_ycalc__unit "ycalc_rpn" , "0e2" s_equal ycalc rpn : ( 3) = @,0d3I,16o,-
get ... requires api_ycalc__unit "ycalc_reqs" , "0e2" s_equal ycalc reqs : ( 1) ,0d3,
get ... provides api_ycalc__unit "ycalc_pros" , "0e2" s_equal ycalc pros : ( 1) ,ROOT,
get ... value CELL__unitnew "value" , "0e2" s_equal s_celln value : -215.000000
get ... info CELL__unitnew "info" , "0e2" s_equal s_celln info : t== a=> f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0e2" s_equal s_celln print : ( 8) : -215 :
COND requires absolute value from 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.012)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0e4 rpn api_ycalc__unit "ycalc_rpn" , "0e4" s_equal ycalc rpn : ( 3) = @,0d3I,4o,+
get ... requires api_ycalc__unit "ycalc_reqs" , "0e4" s_equal ycalc reqs : ( 1) ,0d3,
get ... provides api_ycalc__unit "ycalc_pros" , "0e4" s_equal ycalc pros : ( 1) ,ROOT,
get ... value CELL__unitnew "value" , "0e4" s_equal s_celln value : -195.000000
get ... info CELL__unitnew "info" , "0e4" s_equal s_celln info : t== a=> f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0e4" s_equal s_celln print : ( 8) : -195 :
GROUP check the future group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND new core formula cell - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.013)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0d6 rpn api_ycalc__unit "ycalc_rpn" , "0d6" s_equal ycalc rpn : (----) n -
get ... requires api_ycalc__unit "ycalc_reqs" , "0d6" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0d6" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0d6" s_equal s_celln value : 0.000000
get ... info CELL__unitnew "info" , "0d6" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0d6" s_equal s_celln print : ( 8) : 0 :
COND provides relative value to 0d6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.014)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0g6 rpn api_ycalc__unit "ycalc_rpn" , "0g6" s_equal ycalc rpn : (----) n -
get ... requires api_ycalc__unit "ycalc_reqs" , "0g6" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0g6" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0g6" s_equal s_celln value : 46.000000
get ... info CELL__unitnew "info" , "0g6" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0g6" s_equal s_celln print : ( 8) : 46 :
COND provides relative value to 0d6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.015)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0d10 rpn api_ycalc__unit "ycalc_rpn" , "0d10" s_equal ycalc rpn : (----) n -
get ... requires api_ycalc__unit "ycalc_reqs" , "0d10" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0d10" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0d10" s_equal s_celln value : -12.000000
get ... info CELL__unitnew "info" , "0d10" s_equal s_celln info : t=n a=| f=? d=0 u=- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0d10" s_equal s_celln print : ( 8) : -12 :
GROUP check the future inner group - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND provides relative value to 0d6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.016)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0c5 rpn api_ycalc__unit "ycalc_rpn" , "0c5" s_equal ycalc rpn : (----) - -
get ... requires api_ycalc__unit "ycalc_reqs" , "0c5" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0c5" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0c5" s_equal s_celln value : ---.------
get ... info CELL__unitnew "info" , "0c5" s_equal s_celln info : --- --- --- --- --- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0c5" s_equal s_celln print : (----) ::
COND provides absolute value to 0d6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.017)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0c7 rpn api_ycalc__unit "ycalc_rpn" , "0c7" s_equal ycalc rpn : (----) - -
get ... requires api_ycalc__unit "ycalc_reqs" , "0c7" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0c7" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0c7" s_equal s_celln value : ---.------
get ... info CELL__unitnew "info" , "0c7" s_equal s_celln info : --- --- --- --- --- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0c7" s_equal s_celln print : (----) ::
COND requires relative value from 0d6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.018)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0e5 rpn api_ycalc__unit "ycalc_rpn" , "0e5" s_equal ycalc rpn : (----) - -
get ... requires api_ycalc__unit "ycalc_reqs" , "0e5" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0e5" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0e5" s_equal s_celln value : ---.------
get ... info CELL__unitnew "info" , "0e5" s_equal s_celln info : --- --- --- --- --- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0e5" s_equal s_celln print : (----) ::
COND requires absolute value from 0d3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((BB.019)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get 0e7 rpn api_ycalc__unit "ycalc_rpn" , "0e7" s_equal ycalc rpn : (----) - -
get ... requires api_ycalc__unit "ycalc_reqs" , "0e7" s_equal ycalc reqs : (----) -
get ... provides api_ycalc__unit "ycalc_pros" , "0e7" s_equal ycalc pros : (----) -
get ... value CELL__unitnew "value" , "0e7" s_equal s_celln value : ---.------
get ... info CELL__unitnew "info" , "0e7" s_equal s_celln info : --- --- --- --- --- ¬¬¬ ¬¬¬¬¬ ¬¬¬¬¬
get ... printable CELL__unitnew "printable" , "0e7" s_equal s_celln print : (----) ::
##23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
##==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -Q- beginning of delete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GROUP set-up the cells for testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND create a tab dataset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec add tab by abbreviation yKEYS_string ":umake·0·first¦" i_equal 0
exec add tab by abbreviation yKEYS_string ":umake·1·second¦" i_equal 0
exec add tab by abbreviation yKEYS_string ":umake·2·third¦" i_equal 0
COND column headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a1¦···+0¦·····················F^¦" i_equal 0
exec handle the keys yKEYS_string "l·······=2a1+5¦·················F^¦" i_equal 0
exec handle the keys yKEYS_string "ylplplplplplp···················" i_equal 0
COND first table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a2¦···sab¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······sone¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······#2b2#\"-and\"¦············F|N¦" i_equal 0
exec handle the keys yKEYS_string "l·······#2$b2##\"drop\"¦··········F|N¦" i_equal 0
exec handle the keys yKEYS_string "l·······=2e$1+y(me)¦············F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······=@2f1¦··················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······=2e2*50¦················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······=2h1+2¦·················F|¦" i_equal 0
exec handle the keys yKEYS_string "$·······sends¦··················F|¦" i_equal 0
exec handle the keys yKEYS_string "h·······salmost¦················F|¦" i_equal 0
COND second table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a3¦···scd¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······stwo¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
COND third table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a4¦···sef¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······sthr¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
COND fourth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a5¦···sgh¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······sfou¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
COND fifth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a6¦···sij¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······sfiv¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
COND last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a99¦··sop¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······seig¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lek·····v$y······99:p···········" i_equal 0
COND next to last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec handle the keys yKEYS_string ":2a98¦··smn¦····················F|¦" i_equal 0
exec handle the keys yKEYS_string "l·······ssev¦···················F|¦" i_equal 0
exec handle the keys yKEYS_string "lj······v$y·······kp············" i_equal 0
COND clear history for testing (start like file read) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.010)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exec run history initialization yMAP_mundo_purge i_pass 0
##23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
##==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -R- check the initial state of delete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GROUP check the pristine version of the cells - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND column headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a1" s_equal s_celln print : ( 8) :[ 0 ] :
get ... printable CELL__unitnew "printable" , "2b1" s_equal s_celln print : ( 8) :[ 5 ] :
get ... printable CELL__unitnew "printable" , "2c1" s_equal s_celln print : ( 12) :[ 10 ] :
get ... printable CELL__unitnew "printable" , "2d1" s_equal s_celln print : ( 12) :[ 15 ] :
get ... printable CELL__unitnew "printable" , "2e1" s_equal s_celln print : ( 8) :[ 20 ] :
get ... printable CELL__unitnew "printable" , "2f1" s_equal s_celln print : ( 8) :[ 25 ] :
get ... printable CELL__unitnew "printable" , "2g1" s_equal s_celln print : ( 8) :[ 30 ] :
get ... printable CELL__unitnew "printable" , "2h1" s_equal s_celln print : ( 8) :[ 35 ] :
get boundary CELL__unitnew "printable" , "2i1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k1" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z1" s_equal s_celln print : (----) ::
COND TEMPORARY first row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unit_better "l_printable" , NULL , "2a2" , -1 s_equal CELLb printable : ´ 2a2 a=| f=? d=0 u=- 5=· 1h 8w 8å ab æ
get ... printable CELL__unit_better "l_printable" , NULL , "2b2" , -1 s_equal CELLb printable : ´ 2b2 a=| f=? d=0 u=- 5=· 1h 8w 8å one æ
get ... printable CELL__unit_better "l_printable" , NULL , "2c2" , -1 s_equal CELLb printable : ´ 2c2 a=| f=? d=0 u=- 5=· 1h 12w 12å one-and æ
get ... printable CELL__unit_better "l_printable" , NULL , "2d2" , -1 s_equal CELLb printable : ´ 2d2 a=| f=? d=0 u=- 5=· 1h 12w 12å one, drop æ
COND first table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a2" s_equal s_celln print : ( 8) : ab :
get ... printable CELL__unitnew "printable" , "2b2" s_equal s_celln print : ( 8) : one :
get ... printable CELL__unitnew "printable" , "2c2" s_equal s_celln print : ( 12) : one-and :
get ... printable CELL__unitnew "printable" , "2d2" s_equal s_celln print : ( 12) : one, drop :
get ... printable CELL__unitnew "printable" , "2e2" s_equal s_celln print : ( 8) : 21 :
get ... printable CELL__unitnew "printable" , "2f2" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g2" s_equal s_celln print : ( 8) : 1050 :
get ... printable CELL__unitnew "printable" , "2h2" s_equal s_celln print : ( 8) : 37 :
get boundary CELL__unitnew "printable" , "2i2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k2" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y2" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z2" s_equal s_celln print : ( 8) : ends :
COND second table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a3" s_equal s_celln print : ( 8) : cd :
get ... printable CELL__unitnew "printable" , "2b3" s_equal s_celln print : ( 8) : two :
get ... printable CELL__unitnew "printable" , "2c3" s_equal s_celln print : ( 12) : two-and :
get ... printable CELL__unitnew "printable" , "2d3" s_equal s_celln print : ( 12) : two, drop :
get ... printable CELL__unitnew "printable" , "2e3" s_equal s_celln print : ( 8) : 22 :
get ... printable CELL__unitnew "printable" , "2f3" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g3" s_equal s_celln print : ( 8) : 1100 :
get ... printable CELL__unitnew "printable" , "2h3" s_equal s_celln print : ( 8) : 39 :
get boundary CELL__unitnew "printable" , "2i3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k3" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x3" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y3" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z3" s_equal s_celln print : ( 8) : ends :
COND third table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a4" s_equal s_celln print : ( 8) : ef :
get ... printable CELL__unitnew "printable" , "2b4" s_equal s_celln print : ( 8) : thr :
get ... printable CELL__unitnew "printable" , "2c4" s_equal s_celln print : ( 12) : thr-and :
get ... printable CELL__unitnew "printable" , "2d4" s_equal s_celln print : ( 12) : thr, drop :
get ... printable CELL__unitnew "printable" , "2e4" s_equal s_celln print : ( 8) : 23 :
get ... printable CELL__unitnew "printable" , "2f4" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g4" s_equal s_celln print : ( 8) : 1150 :
get ... printable CELL__unitnew "printable" , "2h4" s_equal s_celln print : ( 8) : 41 :
get boundary CELL__unitnew "printable" , "2i4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k4" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x4" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y4" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z4" s_equal s_celln print : ( 8) : ends :
COND fourth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a5" s_equal s_celln print : ( 8) : gh :
get ... printable CELL__unitnew "printable" , "2b5" s_equal s_celln print : ( 8) : fou :
get ... printable CELL__unitnew "printable" , "2c5" s_equal s_celln print : ( 12) : fou-and :
get ... printable CELL__unitnew "printable" , "2d5" s_equal s_celln print : ( 12) : fou, drop :
get ... printable CELL__unitnew "printable" , "2e5" s_equal s_celln print : ( 8) : 24 :
get ... printable CELL__unitnew "printable" , "2f5" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g5" s_equal s_celln print : ( 8) : 1200 :
get ... printable CELL__unitnew "printable" , "2h5" s_equal s_celln print : ( 8) : 43 :
get boundary CELL__unitnew "printable" , "2i5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k5" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y5" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z5" s_equal s_celln print : ( 8) : ends :
COND fifth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a6" s_equal s_celln print : ( 8) : ij :
get ... printable CELL__unitnew "printable" , "2b6" s_equal s_celln print : ( 8) : fiv :
get ... printable CELL__unitnew "printable" , "2c6" s_equal s_celln print : ( 12) : fiv-and :
get ... printable CELL__unitnew "printable" , "2d6" s_equal s_celln print : ( 12) : fiv, drop :
get ... printable CELL__unitnew "printable" , "2e6" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2f6" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g6" s_equal s_celln print : ( 8) : 1250 :
get ... printable CELL__unitnew "printable" , "2h6" s_equal s_celln print : ( 8) : 45 :
get boundary CELL__unitnew "printable" , "2i6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k6" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y6" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z6" s_equal s_celln print : ( 8) : ends :
COND sixth table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2b7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2c7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2d7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2e7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2f7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2g7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2h7" s_equal s_celln print : (----) ::
get boundary CELL__unitnew "printable" , "2i7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k7" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z7" s_equal s_celln print : (----) ::
COND next, next to last table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.010)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2b97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2c97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2d97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2e97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2f97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2g97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2h97" s_equal s_celln print : ( 8) : - :
get boundary CELL__unitnew "printable" , "2i97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k97" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z97" s_equal s_celln print : (----) ::
COND next to last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.011)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a98" s_equal s_celln print : ( 8) : mn :
get ... printable CELL__unitnew "printable" , "2b98" s_equal s_celln print : ( 8) : sev :
get ... printable CELL__unitnew "printable" , "2c98" s_equal s_celln print : ( 12) : sev-and :
get ... printable CELL__unitnew "printable" , "2d98" s_equal s_celln print : ( 12) : sev, drop :
get ... printable CELL__unitnew "printable" , "2e98" s_equal s_celln print : ( 8) : 117 :
get ... printable CELL__unitnew "printable" , "2f98" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g98" s_equal s_celln print : ( 8) : 5850 :
get ... printable CELL__unitnew "printable" , "2h98" s_equal s_celln print : ( 8) :#e/bnk> :
get boundary CELL__unitnew "printable" , "2i98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k98" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y98" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z98" s_equal s_celln print : ( 8) : ends :
COND last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.012)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a99" s_equal s_celln print : ( 8) : op :
get ... printable CELL__unitnew "printable" , "2b99" s_equal s_celln print : ( 8) : eig :
get ... printable CELL__unitnew "printable" , "2c99" s_equal s_celln print : ( 12) : eig-and :
get ... printable CELL__unitnew "printable" , "2d99" s_equal s_celln print : ( 12) : eig, drop :
get ... printable CELL__unitnew "printable" , "2e99" s_equal s_celln print : ( 8) : 118 :
get ... printable CELL__unitnew "printable" , "2f99" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g99" s_equal s_celln print : ( 8) : 5900 :
get ... printable CELL__unitnew "printable" , "2h99" s_equal s_celln print : ( 8) :#e/err> :
get boundary CELL__unitnew "printable" , "2i99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k99" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y99" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z99" s_equal s_celln print : ( 8) : ends :
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
#GLOBAL -Q- beginning of delete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# GROUP set-up the cells for testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# COND create a tab dataset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec add tab by abbreviation ":umake·0·first¦" i_equal 0
# exec add tab by abbreviation yKEYS_string ":umake·1·second¦" i_equal 0
# exec add tab by abbreviation yKEYS_string ":umake·2·third¦" i_equal 0
#
# COND column headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a1¦···+0¦·····················F^¦" i_equal 0
# exec handle the keys yKEYS_string "l·······=2a1+5¦·················F^¦" i_equal 0
# exec handle the keys yKEYS_string "ylplplplplplp···················" i_equal 0
#
# COND first table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a2¦···sab¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······sone¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······#2b2#\"-and\"¦············F|N¦" i_equal 0
# exec handle the keys yKEYS_string "l·······#2$b2##\"drop\"¦··········F|N¦" i_equal 0
# exec handle the keys yKEYS_string "l·······=2e$1+y(me)¦············F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······=@2f1¦··················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······=2e2*50¦················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······=2h1+2¦·················F|¦" i_equal 0
# exec handle the keys yKEYS_string "$·······sends¦··················F|¦" i_equal 0
# exec handle the keys yKEYS_string "h·······salmost¦················F|¦" i_equal 0
#
# COND second table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a3¦···scd¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······stwo¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
#
# COND third table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a4¦···sef¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······sthr¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
#
# COND fourth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a5¦···sgh¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······sfou¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
#
# COND fifth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a6¦···sij¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······sfiv¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lk······v$y·······jp···········" i_equal 0
#
# COND last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a99¦··sop¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······seig¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lek·····v$y······99:p···········" i_equal 0
#
# COND next to last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec handle the keys yKEYS_string ":2a98¦··smn¦····················F|¦" i_equal 0
# exec handle the keys yKEYS_string "l·······ssev¦···················F|¦" i_equal 0
# exec handle the keys yKEYS_string "lj······v$y·······kp············" i_equal 0
#
# COND clear history for testing (start like file read) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((QQ.010)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# exec run history initialization yMAP_mundo_purge i_pass 0
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
#GLOBAL -R- check the initial state of delete testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# GROUP set-up the cells for testing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# COND column headers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a1" s_equal s_celln print : ( 8) :[ 0 ] :
# get ... printable CELL__unitnew "printable" , "2b1" s_equal s_celln print : ( 8) :[ 5 ] :
# get ... printable CELL__unitnew "printable" , "2c1" s_equal s_celln print : ( 12) :[ 10 ] :
# get ... printable CELL__unitnew "printable" , "2d1" s_equal s_celln print : ( 12) :[ 15 ] :
# get ... printable CELL__unitnew "printable" , "2e1" s_equal s_celln print : ( 8) :[ 20 ] :
# get ... printable CELL__unitnew "printable" , "2f1" s_equal s_celln print : ( 8) :[ 25 ] :
# get ... printable CELL__unitnew "printable" , "2g1" s_equal s_celln print : ( 8) :[ 30 ] :
# get ... printable CELL__unitnew "printable" , "2h1" s_equal s_celln print : ( 8) :[ 35 ] :
# get boundary CELL__unitnew "printable" , "2i1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k1" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y1" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2z1" s_equal s_celln print : (----) ::
#
# COND TEMPORARY first row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unit_better "l_printable" , NULL , "2a2" , -1 s_equal CELLb printable : ´ 2a2 a=| f=? d=0 u=- 5=· 1h 8w 8å ab æ
# get ... printable CELL__unit_better "l_printable" , NULL , "2b2" , -1 s_equal CELLb printable : ´ 2b2 a=| f=? d=0 u=- 5=· 1h 8w 8å one æ
# get ... printable CELL__unit_better "l_printable" , NULL , "2c2" , -1 s_equal CELLb printable : ´ 2c2 a=| f=? d=0 u=- 5=· 1h 12w 12å one-and æ
# get ... printable CELL__unit_better "l_printable" , NULL , "2d2" , -1 s_equal CELLb printable : ´ 2d2 a=| f=? d=0 u=- 5=· 1h 12w 12å one, drop æ
#
# COND create a tab dataset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a2" s_equal s_celln print : ( 8) : ab :
# get ... printable CELL__unitnew "printable" , "2b2" s_equal s_celln print : ( 8) : one :
# get ... printable CELL__unitnew "printable" , "2c2" s_equal s_celln print : ( 12) : one-and :
# get ... printable CELL__unitnew "printable" , "2d2" s_equal s_celln print : ( 12) : one drop :
# get ... printable CELL__unitnew "printable" , "2e2" s_equal s_celln print : ( 8) : 21 :
# get ... printable CELL__unitnew "printable" , "2f2" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g2" s_equal s_celln print : ( 8) : 1050 :
# get ... printable CELL__unitnew "printable" , "2h2" s_equal s_celln print : ( 8) : 37 :
# get boundary CELL__unitnew "printable" , "2i2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k2" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y2" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z2" s_equal s_celln print : ( 8) : ends :
#
# COND first table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a2" s_equal s_celln print : ( 8) : ab :
# get ... printable CELL__unitnew "printable" , "2b2" s_equal s_celln print : ( 8) : one :
# get ... printable CELL__unitnew "printable" , "2c2" s_equal s_celln print : ( 12) : one-and :
# get ... printable CELL__unitnew "printable" , "2d2" s_equal s_celln print : ( 12) : one drop :
# get ... printable CELL__unitnew "printable" , "2e2" s_equal s_celln print : ( 8) : 21 :
# get ... printable CELL__unitnew "printable" , "2f2" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g2" s_equal s_celln print : ( 8) : 1050 :
# get ... printable CELL__unitnew "printable" , "2h2" s_equal s_celln print : ( 8) : 37 :
# get boundary CELL__unitnew "printable" , "2i2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k2" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x2" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y2" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z2" s_equal s_celln print : ( 8) : ends :
#
# COND second table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a3" s_equal s_celln print : ( 8) : cd :
# get ... printable CELL__unitnew "printable" , "2b3" s_equal s_celln print : ( 8) : two :
# get ... printable CELL__unitnew "printable" , "2c3" s_equal s_celln print : ( 12) : two-and :
# get ... printable CELL__unitnew "printable" , "2d3" s_equal s_celln print : ( 12) : two drop :
# get ... printable CELL__unitnew "printable" , "2e3" s_equal s_celln print : ( 8) : 22 :
# get ... printable CELL__unitnew "printable" , "2f3" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g3" s_equal s_celln print : ( 8) : 1100 :
# get ... printable CELL__unitnew "printable" , "2h3" s_equal s_celln print : ( 8) : 39 :
# get boundary CELL__unitnew "printable" , "2i3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k3" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x3" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y3" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z3" s_equal s_celln print : ( 8) : ends :
#
# COND third table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a4" s_equal s_celln print : ( 8) : ef :
# get ... printable CELL__unitnew "printable" , "2b4" s_equal s_celln print : ( 8) : thr :
# get ... printable CELL__unitnew "printable" , "2c4" s_equal s_celln print : ( 12) : thr-and :
# get ... printable CELL__unitnew "printable" , "2d4" s_equal s_celln print : ( 12) : thr drop :
# get ... printable CELL__unitnew "printable" , "2e4" s_equal s_celln print : ( 8) : 23 :
# get ... printable CELL__unitnew "printable" , "2f4" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g4" s_equal s_celln print : ( 8) : 1150 :
# get ... printable CELL__unitnew "printable" , "2h4" s_equal s_celln print : ( 8) : 41 :
# get boundary CELL__unitnew "printable" , "2i4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k4" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x4" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y4" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z4" s_equal s_celln print : ( 8) : ends :
#
# COND fourth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a5" s_equal s_celln print : ( 8) : gh :
# get ... printable CELL__unitnew "printable" , "2b5" s_equal s_celln print : ( 8) : fou :
# get ... printable CELL__unitnew "printable" , "2c5" s_equal s_celln print : ( 12) : fou-and :
# get ... printable CELL__unitnew "printable" , "2d5" s_equal s_celln print : ( 12) : fou drop :
# get ... printable CELL__unitnew "printable" , "2e5" s_equal s_celln print : ( 8) : 24 :
# get ... printable CELL__unitnew "printable" , "2f5" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g5" s_equal s_celln print : ( 8) : 1200 :
# get ... printable CELL__unitnew "printable" , "2h5" s_equal s_celln print : ( 8) : 43 :
# get boundary CELL__unitnew "printable" , "2i5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k5" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x5" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y5" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z5" s_equal s_celln print : ( 8) : ends :
#
# COND fifth table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a6" s_equal s_celln print : ( 8) : ij :
# get ... printable CELL__unitnew "printable" , "2b6" s_equal s_celln print : ( 8) : fiv :
# get ... printable CELL__unitnew "printable" , "2c6" s_equal s_celln print : ( 12) : fiv-and :
# get ... printable CELL__unitnew "printable" , "2d6" s_equal s_celln print : ( 12) : fiv drop :
# get ... printable CELL__unitnew "printable" , "2e6" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2f6" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g6" s_equal s_celln print : ( 8) : 1250 :
# get ... printable CELL__unitnew "printable" , "2h6" s_equal s_celln print : ( 8) : 45 :
# get boundary CELL__unitnew "printable" , "2i6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k6" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x6" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y6" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z6" s_equal s_celln print : ( 8) : ends :
#
# COND sixth table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.009)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2b7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2c7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2d7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2e7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2f7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2g7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2h7" s_equal s_celln print : (----) ::
# get boundary CELL__unitnew "printable" , "2i7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k7" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y7" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2z7" s_equal s_celln print : (----) ::
#
# COND next, next to last table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.010)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2b97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2c97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2d97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2e97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2f97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2g97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2h97" s_equal s_celln print : ( 8) : - :
# get boundary CELL__unitnew "printable" , "2i97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k97" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y97" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2z97" s_equal s_celln print : (----) ::
#
# COND next to last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.011)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a98" s_equal s_celln print : ( 8) : mn :
# get ... printable CELL__unitnew "printable" , "2b98" s_equal s_celln print : ( 8) : sev :
# get ... printable CELL__unitnew "printable" , "2c98" s_equal s_celln print : ( 12) : sev-and :
# get ... printable CELL__unitnew "printable" , "2d98" s_equal s_celln print : ( 12) : sev drop :
# get ... printable CELL__unitnew "printable" , "2e98" s_equal s_celln print : ( 8) : 117 :
# get ... printable CELL__unitnew "printable" , "2f98" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g98" s_equal s_celln print : ( 8) : 5850 :
# get ... printable CELL__unitnew "printable" , "2h98" s_equal s_celln print : ( 8) :#e/bnk> :
# get boundary CELL__unitnew "printable" , "2i98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k98" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x98" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y98" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z98" s_equal s_celln print : ( 8) : ends :
#
# COND last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((RR.012)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get main table CELL__unitnew "printable" , "2a99" s_equal s_celln print : ( 8) : op :
# get ... printable CELL__unitnew "printable" , "2b99" s_equal s_celln print : ( 8) : eig :
# get ... printable CELL__unitnew "printable" , "2c99" s_equal s_celln print : ( 12) : eig-and :
# get ... printable CELL__unitnew "printable" , "2d99" s_equal s_celln print : ( 12) : eig drop :
# get ... printable CELL__unitnew "printable" , "2e99" s_equal s_celln print : ( 8) : 118 :
# get ... printable CELL__unitnew "printable" , "2f99" s_equal s_celln print : ( 8) : 25 :
# get ... printable CELL__unitnew "printable" , "2g99" s_equal s_celln print : ( 8) : 5900 :
# get ... printable CELL__unitnew "printable" , "2h99" s_equal s_celln print : ( 8) :#e/err> :
# get boundary CELL__unitnew "printable" , "2i99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2j99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2k99" s_equal s_celln print : (----) ::
# get tail end CELL__unitnew "printable" , "2u99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2v99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2w99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2x99" s_equal s_celln print : (----) ::
# get ... printable CELL__unitnew "printable" , "2y99" s_equal s_celln print : ( 8) : almost :
# get ... printable CELL__unitnew "printable" , "2z99" s_equal s_celln print : ( 8) : ends :
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -S- common checks after delete and fill from right - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND column headers (no change) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a1" s_equal s_celln print : ( 8) :[ 0 ] :
get ... printable CELL__unitnew "printable" , "2b1" s_equal s_celln print : ( 8) :[ 5 ] :
get ... printable CELL__unitnew "printable" , "2c1" s_equal s_celln print : ( 12) :[ 10 ] :
get ... printable CELL__unitnew "printable" , "2d1" s_equal s_celln print : ( 12) :[ 15 ] :
get ... printable CELL__unitnew "printable" , "2e1" s_equal s_celln print : ( 8) :[ 20 ] :
get ... printable CELL__unitnew "printable" , "2f1" s_equal s_celln print : ( 8) :[ 25 ] :
get ... printable CELL__unitnew "printable" , "2g1" s_equal s_celln print : ( 8) :[ 30 ] :
get ... printable CELL__unitnew "printable" , "2h1" s_equal s_celln print : ( 8) :[ 35 ] :
get boundary CELL__unitnew "printable" , "2i1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k1" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z1" s_equal s_celln print : (----) ::
COND first table row (no change) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.002)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a2" s_equal s_celln print : ( 8) : ab :
get ... printable CELL__unitnew "printable" , "2b2" s_equal s_celln print : ( 8) : one :
get ... printable CELL__unitnew "printable" , "2c2" s_equal s_celln print : ( 12) : one-and :
get ... printable CELL__unitnew "printable" , "2d2" s_equal s_celln print : ( 12) : one, drop :
get ... printable CELL__unitnew "printable" , "2e2" s_equal s_celln print : ( 8) : 21 :
get ... printable CELL__unitnew "printable" , "2f2" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g2" s_equal s_celln print : ( 8) : 1050 :
get ... printable CELL__unitnew "printable" , "2h2" s_equal s_celln print : ( 8) : 37 :
get boundary CELL__unitnew "printable" , "2i2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k2" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x2" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y2" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z2" s_equal s_celln print : ( 8) : ends :
COND fourth table row (one change) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.003)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a5" s_equal s_celln print : ( 8) : gh :
get ... printable CELL__unitnew "printable" , "2b5" s_equal s_celln print : ( 8) : fou :
get ... printable CELL__unitnew "printable" , "2c5" s_equal s_celln print : ( 12) : fou-and :
get ... printable CELL__unitnew "printable" , "2d5" s_equal s_celln print : ( 12) : fou, drop :
get ... printable CELL__unitnew "printable" , "2e5" s_equal s_celln print : ( 8) : 24 :
get ... printable CELL__unitnew "printable" , "2f5" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g5" s_equal s_celln print : ( 8) : 1200 :
get ... printable CELL__unitnew "printable" , "2h5" s_equal s_celln print : ( 8) : 43 :
get boundary CELL__unitnew "printable" , "2i5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k5" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x5" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y5" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z5" s_equal s_celln print : ( 8) : ends :
COND fifth table row (one change) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.004)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a6" s_equal s_celln print : ( 8) : ij :
get ... printable CELL__unitnew "printable" , "2b6" s_equal s_celln print : ( 8) : fiv :
get ... printable CELL__unitnew "printable" , "2c6" s_equal s_celln print : ( 12) : fiv-and :
get ... printable CELL__unitnew "printable" , "2d6" s_equal s_celln print : ( 12) : fiv, drop :
get ... printable CELL__unitnew "printable" , "2e6" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2f6" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g6" s_equal s_celln print : ( 8) : 1250 :
get ... printable CELL__unitnew "printable" , "2h6" s_equal s_celln print : ( 8) : 45 :
get boundary CELL__unitnew "printable" , "2i6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k6" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x6" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y6" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z6" s_equal s_celln print : ( 8) : ends :
COND sixth table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.005)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2c7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2c7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2d7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2e7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2f7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2g7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2h7" s_equal s_celln print : (----) ::
get boundary CELL__unitnew "printable" , "2i7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k7" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y7" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z7" s_equal s_celln print : (----) ::
COND next, next to last table row (empty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.006)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2b97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2c97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2d97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2e97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2f97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2g97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2h97" s_equal s_celln print : ( 8) : - :
get boundary CELL__unitnew "printable" , "2i97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k97" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y97" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2z97" s_equal s_celln print : (----) ::
COND next to last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.007)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a98" s_equal s_celln print : ( 8) : mn :
get ... printable CELL__unitnew "printable" , "2b98" s_equal s_celln print : ( 8) : sev :
get ... printable CELL__unitnew "printable" , "2c98" s_equal s_celln print : ( 12) : sev-and :
get ... printable CELL__unitnew "printable" , "2d98" s_equal s_celln print : ( 12) : sev, drop :
get ... printable CELL__unitnew "printable" , "2e98" s_equal s_celln print : ( 8) : 117 :
get ... printable CELL__unitnew "printable" , "2f98" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g98" s_equal s_celln print : ( 8) : 5850 :
get ... printable CELL__unitnew "printable" , "2h98" s_equal s_celln print : ( 8) :#e/bnk> :
get boundary CELL__unitnew "printable" , "2i98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k98" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x98" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y98" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z98" s_equal s_celln print : ( 8) : ends :
COND last table row - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.008)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a99" s_equal s_celln print : ( 8) : op :
get ... printable CELL__unitnew "printable" , "2b99" s_equal s_celln print : ( 8) : eig :
get ... printable CELL__unitnew "printable" , "2c99" s_equal s_celln print : ( 12) : eig-and :
get ... printable CELL__unitnew "printable" , "2d99" s_equal s_celln print : ( 12) : eig, drop :
get ... printable CELL__unitnew "printable" , "2e99" s_equal s_celln print : ( 8) : 118 :
get ... printable CELL__unitnew "printable" , "2f99" s_equal s_celln print : ( 8) : 25 :
get ... printable CELL__unitnew "printable" , "2g99" s_equal s_celln print : ( 8) : 5900 :
get ... printable CELL__unitnew "printable" , "2h99" s_equal s_celln print : ( 8) :#e/err> :
get boundary CELL__unitnew "printable" , "2i99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k99" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2x99" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2y99" s_equal s_celln print : ( 8) : almost :
get ... printable CELL__unitnew "printable" , "2z99" s_equal s_celln print : ( 8) : ends :
#23456789-12 123456789-123456789-123456789-12345 123456789-123456789-123456 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- 123456789- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789- - 123456789-123456789-
#==(verb)=== ===========(description)=========== =====(function)=========== ========================(arguments)================================================================= ==(test)== ==========================(results)================================================================= t ========(var)=======
GLOBAL -Z- common checks after delete and fill from right (slight fix) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.---)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
COND column headers (no change) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ((SS.001)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
get main table CELL__unitnew "printable" , "2a1" s_equal s_celln print : ( 8) :[ 0 ] :
get ... printable CELL__unitnew "printable" , "2b1" s_equal s_celln print : ( 8) :[ 5 ] :
get ... printable CELL__unitnew "printable" , "2c1" s_equal s_celln print : ( 12) :[ 10 ] :
get ... printable CELL__unitnew "printable" , "2d1" s_equal s_celln print : ( 12) :[ 15 ] :
get ... printable CELL__unitnew "printable" , "2e1" s_equal s_celln print : ( 8) :[ 20 ] :
get ... printable CELL__unitnew "printable" , "2f1" s_equal s_celln print : ( 8) :[ 25 ] :
get ... printable CELL__unitnew "printable" , "2g1" s_equal s_celln print : ( 8) :[ 30 ] :
get ... printable CELL__unitnew "printable" , "2h1" s_equal s_celln print : ( 8) :[ 35 ] :
get boundary CELL__unitnew "printable" , "2i1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2j1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2k1" s_equal s_celln print : (----) ::
get tail end CELL__unitnew "printable" , "2u1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2v1" s_equal s_celln print : (----) ::
get ... printable CELL__unitnew "printable" , "2w1" s_equal s_celln print : (----) ::