-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_upper_level.c
752 lines (560 loc) · 18.2 KB
/
set_upper_level.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
// set_upper_level.c レベル 1 2 の原子の順位を固定する関数
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "main_canost.h"
// #define TEST_SET_UPPER_LEVEL 1
extern int iatm;
extern struct atom *a1st;
extern int new_atm;
extern int start;
extern struct level root;
extern struct level *top;
extern struct level *reef;
extern int *cast_codes;
extern int *relative_parent;
int set_upper_level( void ){
int i,j;
int *caddy; // 同順位の原子集合が入る配列
int scale; // 同順位の原子集合が入る配列の大きさ
int higher; // 作為的に順位を高くする原子の番号
int *class; //順位を記憶しておくための配列
int *pile_one;
int *pile_two;
struct level *lv_one;
struct level *lv_two;
int *competitor;
int compeNum;
int pivNum;
int *pivots;
int *ranker;
int rank;
#ifdef TEST_SET_UPPER_LEVEL
printf(" set_upper_level \n");
#endif
pile_one = NULL;
pile_two = NULL;
// lv_one を reef に設定
lv_one = reef;
pile_one = lv_one->member;
for( i=0; i < lv_one->member_Num ; i++ ){
if( identify_parent( pile_one[i] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute identify_parent \n");
exit( EXIT_FAILURE );
}
#ifdef TEST_SET_UPPER_LEVEL
printf("pile_one %d is %d \n",i,pile_one[i]);
#endif
}
// lv_two を reef->next に設定
lv_two = reef->next;
if( lv_two != NULL ){ // reef->next に相当するレベルの層があれば以下を実行
pile_two = lv_two->member;
for( i=0; i < lv_two->member_Num ; i++ ){
if( identify_parent( pile_two[i] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute identify_parent \n");
exit( EXIT_FAILURE );
}
#ifdef TEST_SET_UPPER_LEVEL
printf("pile_two %d is %d \n",i,pile_two[i]);
#endif
}
}
/******* lv_one が ひとつの原子からなる場合 *********/
if( lv_one->member_Num == 1 ){
if( single_child( pile_one[0] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute single_child \n");
exit( EXIT_SUCCESS );
}
/******* lv_one が ふたつの原子からなる場合 *********/
}else if( lv_one->member_Num == 2 ){
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level: level one layer contains two atoms. \n");
#endif
if( a1st[ pile_one[0] ].grade == a1st[ pile_one[1] ].grade ){
if( (class=(int *)malloc((iatm+new_atm)*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=1;i<iatm+new_atm;i++){
class[i]=a1st[i].grade;
}
scale = 2; // pile_one は 2 個の原子からなる
if( (caddy=(int *)malloc(scale*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=0; i < scale ;i++){
caddy[i] = pile_one[i];
}
for(i=0;i<scale;i++){
higher = caddy[i];
if( raise_and_order( higher, caddy, scale ) != EXIT_SUCCESS ){
printf(" error : Cannot execute raise_and_order \n");
exit( EXIT_FAILURE );
}
// pile_one[0] -- start -- pile_one[1] が成す角度を調べる
relative_parent[ start ] = pile_one[0];
relative_parent[ pile_one[0] ] = MINUS;
if( linearity( pile_one[0], start , pile_one[1] ) == TRUE ){ // 一直線の場合
relative_parent[ start ] = MINUS;
relative_parent[ pile_one[0] ] = start;
relative_parent[ pile_one[1] ] = start;
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls linear_pair. \n");
#endif
if( linear_pair( pile_one[0] ,pile_one[1] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute linear_pair \n");
exit( EXIT_FAILURE );
}
}else{
relative_parent[ start ] = MINUS;
relative_parent[ pile_one[0] ] = start;
relative_parent[ pile_one[1] ] = start;
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls broken_line_pair. \n");
#endif
if( broken_line_pair( pile_one[0], pile_one[1] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute broken_line_pair \n");
exit( EXIT_FAILURE );
}
}
for( j=1 ; j < iatm+new_atm ; j++){
a1st[j].grade = class[j];
cast_codes[j] = MINUS;
}
}
free(class);
free(caddy);
}else{ // pile_one[0] != pile_one[1]
relative_parent[ start ] = pile_one[0];
relative_parent[ pile_one[0] ] = MINUS;
if( linearity( pile_one[0], start , pile_one[1] ) == TRUE ){ // 一直線の場合
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level: the two atoms form a line \n");
#endif
relative_parent[ start ] = MINUS;
relative_parent[ pile_one[0] ] = start;
relative_parent[ pile_one[1] ] = start;
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls linear_pair \n");
#endif
if( linear_pair( pile_one[0] ,pile_one[1] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute linear_pair \n");
exit( EXIT_FAILURE );
}
}else{
relative_parent[ start ] = MINUS;
relative_parent[ pile_one[0] ] = start;
relative_parent[ pile_one[1] ] = start;
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls broken_line_pair \n");
#endif
if( broken_line_pair( pile_one[0], pile_one[1] ) != EXIT_SUCCESS ){
printf(" error : Cannot execute broken_line_pair \n");
exit( EXIT_FAILURE );
}
}
}
/******* lv_one が 三つの原子からなる場合 *********/
}else if( lv_one->member_Num == 3 ){
if( a1st[ pile_one[0] ].grade == a1st[ pile_one[1] ].grade ){
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
if( a1st[ pile_one[1] ].grade == a1st[ pile_one[2] ].grade ){
// 0-0-0
if( (class=(int *)malloc((iatm+new_atm)*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=1;i<iatm+new_atm;i++){
class[i]=a1st[i].grade;
}
scale = 3; // pile_one は 3 個の原子からなる
if( (caddy=(int *)malloc(scale*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=0; i < scale ;i++){
caddy[i] = pile_one[i];
}
for(i=0;i<scale;i++){
higher = caddy[i];
if( raise_and_order( higher, caddy, scale ) != EXIT_SUCCESS ){
printf(" error : Cannot execute raise_and_order \n");
exit( EXIT_FAILURE );
}
// 0-1-1
if( i == 0 ){
competitor[0] = caddy[1];
competitor[1] = caddy[2];
}else if( i == 1 ){
competitor[0] = caddy[0];
competitor[1] = caddy[2];
}else{
competitor[0] = caddy[0];
competitor[1] = caddy[1];
}
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms. \n");
#endif
if( distinguish_competitive_atoms( higher, competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms \n");
exit( EXIT_FAILURE );
}
for( j=1 ; j < iatm+new_atm ; j++){
a1st[j].grade = class[j];
cast_codes[j] = MINUS;
}
}
free(class);
free(caddy);
}else{
// 0-0-1
competitor[0] = pile_one[0];
competitor[1] = pile_one[1];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms. \n");
#endif
if( distinguish_competitive_atoms( pile_one[2], competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms \n");
exit( EXIT_FAILURE );
}
}
free(competitor);
}else{
if( a1st[ pile_one[1] ].grade == a1st[ pile_one[2] ].grade ){
// 0-1-1
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
competitor[0] = pile_one[1];
competitor[1] = pile_one[2];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms. \n");
#endif
if( distinguish_competitive_atoms( pile_one[0], competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atomss \n");
exit( EXIT_FAILURE );
}
free(competitor);
}else{
// 0-1-2
rank = 3;
if( (ranker=(int *)malloc(rank*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for( i=0; i < rank ; i++){
ranker[i] = pile_one[i];
}
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls arrange_ordered_atom (1) \n");
#endif
if( arrange_ordered_atoms( ranker, rank ) != EXIT_SUCCESS ){
printf(" error : Cannot execute arrange_ordered_atoms \n");
exit( EXIT_FAILURE );
}
free(ranker);
}
}
/******* lv_one が 四つの原子からなる場合 *********/
}else if( lv_one->member_Num == 4 ){
if( a1st[ pile_one[0] ].grade == a1st[ pile_one[1] ].grade ){
if( a1st[ pile_one[1] ].grade == a1st[ pile_one[2] ].grade ){
/*
compeNum = 3;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
*/
if( a1st[ pile_one[2] ].grade == a1st[ pile_one[3] ].grade ){
// 0-0-0-0
if( (class=(int *)malloc((iatm+new_atm)*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=1;i<iatm+new_atm;i++){
class[i]=a1st[i].grade;
}
scale = 4; // pile_one は 4 個の原子からなる
if( (caddy=(int *)malloc(scale*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=0; i < scale ;i++){
caddy[i] = pile_one[i];
}
for(i=0; i < scale ;i++){
higher = caddy[i];
if( raise_and_order( higher, caddy, scale ) != EXIT_SUCCESS ){
printf(" error : Cannot execute raise_and_order \n");
exit( EXIT_FAILURE );
}
if( set_upper_level( ) != EXIT_SUCCESS ){
printf(" error : Cannot execute set_upper_level \n");
exit( EXIT_FAILURE );
}
// 0-1-1-1
/*
if( i == 0 ){
competitor[0] = caddy[1];
competitor[1] = caddy[2];
competitor[2] = caddy[3];
}else if( i == 1 ){
competitor[0] = caddy[0];
competitor[1] = caddy[2];
competitor[2] = caddy[3];
}else if( i == 2 ){
competitor[0] = caddy[0];
competitor[1] = caddy[1];
competitor[2] = caddy[3];
}else{
competitor[0] = caddy[0];
competitor[1] = caddy[1];
competitor[2] = caddy[2];
}
if( distinguish_competitive_atoms( higher, competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms \n");
exit( EXIT_FAILURE );
}
*/
for( j=1 ; j < iatm+new_atm ; j++){
a1st[j].grade = class[j];
cast_codes[j] = MINUS;
}
}
free(class);
free(caddy);
}else{ // a1st[ pile_one[2] ].grade != a1st[ pile_one[3] ].grade
// 0-0-0-1
compeNum = 3;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
competitor[0] = pile_one[0];
competitor[1] = pile_one[1];
competitor[2] = pile_one[2];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms. \n");
#endif
if( distinguish_competitive_atoms( pile_one[3], competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms \n");
exit( EXIT_FAILURE );
}
free(competitor);
}
}else{ // a1st[ pile_one[1] ].grade != a1st[ pile_one[2] ].grade
/*
pivNum = 2;
if( (pivots=(int *)malloc(pivNum*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
*/
if( a1st[ pile_one[2] ].grade == a1st[ pile_one[3] ].grade ){
// 0-0-1-1
if( (class=(int *)malloc((iatm+new_atm)*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for(i=1;i<iatm+new_atm;i++){
class[i]=a1st[i].grade;
}
scale = 2;
if( (caddy=(int *)malloc(scale*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
caddy[0] = pile_one[0];
caddy[1] = pile_one[1];
/*
competitor[0] = pile_one[2];
competitor[1] = pile_one[3];
*/
for(i=0; i < scale ;i++){
higher = caddy[i];
if( raise_and_order( higher, caddy, scale ) != EXIT_SUCCESS ){
printf(" error : Cannot execute raise_and_order \n");
exit( EXIT_FAILURE );
}
if( set_upper_level( ) != EXIT_SUCCESS ){
printf(" error : Cannot execute set_upper_level \n");
exit( EXIT_FAILURE );
}
// 0-1-2-2
/*
if( i == 0 ){
pivots[0] = caddy[0];
pivots[1] = caddy[1];
}else{
pivots[0] = caddy[1];
pivots[1] = caddy[0];
}
if( distinguish_competitive_atoms2( pivots, competitor, FIRST_THREE ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms2 \n");
exit( EXIT_FAILURE );
}
*/
for( j=1 ; j < iatm+new_atm ; j++){
a1st[j].grade = class[j];
cast_codes[j] = MINUS;
}
}
free(class);
free(caddy);
}else{ // a1st[ pile_one[2] ].grade != a1st[ pile_one[3] ].grade
// 0-0-1-2
pivNum = 2;
if( (pivots=(int *)malloc(pivNum*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
pivots[0] = pile_one[2];
pivots[1] = pile_one[3];
competitor[0] = pile_one[0];
competitor[1] = pile_one[1];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms2. \n");
#endif
if( distinguish_competitive_atoms2( pivots, competitor, THIRD_THREE ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms2 \n");
exit( EXIT_FAILURE );
}
free(pivots);
free(competitor);
}
}
}else{ // a1st[ pile_one[0] ].grade != a1st[ pile_one[1] ].grade
if( a1st[ pile_one[1] ].grade == a1st[ pile_one[2] ].grade ){
if( a1st[ pile_one[2] ].grade == a1st[ pile_one[3] ].grade ){
// 0-1-1-1
compeNum = 3;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
competitor[0] = pile_one[1];
competitor[1] = pile_one[2];
competitor[2] = pile_one[3];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms. \n");
#endif
if( distinguish_competitive_atoms( pile_one[0], competitor, compeNum ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atomss \n");
exit( EXIT_FAILURE );
}
free(competitor);
}else{ // a1st[ pile_one[2] ].grade != a1st[ pile_one[3] ].grade
// 0-1-1-2
pivNum = 2;
if( (pivots=(int *)malloc(pivNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
pivots[0] = pile_one[0];
pivots[1] = pile_one[3];
competitor[0] = pile_one[1];
competitor[1] = pile_one[2];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms2. \n");
#endif
if( distinguish_competitive_atoms2( pivots, competitor, THIRD_THREE ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms2 \n");
exit( EXIT_FAILURE );
}
free(pivots);
free(competitor);
}
}else{ // a1st[ pile_one[1] ].grade != a1st[ pile_one[2] ].grade
if( a1st[ pile_one[2] ].grade == a1st[ pile_one[3] ].grade ){
// 0-1-2-2
pivNum = 2;
if( (pivots=(int *)malloc(pivNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
compeNum = 2;
if( (competitor=(int *)malloc(compeNum*sizeof(int))) == NULL ){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
pivots[0] = pile_one[0];
pivots[1] = pile_one[1];
competitor[0] = pile_one[2];
competitor[1] = pile_one[3];
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls distinguish_competitive_atoms2. \n");
#endif
if( distinguish_competitive_atoms2( pivots, competitor, FIRST_THREE ) != EXIT_SUCCESS ){
printf(" error : Cannot execute distinguish_competitive_atoms2 \n");
exit( EXIT_FAILURE );
}
free(pivots);
free(competitor);
}else{
// 0-1-2-3
rank = 4;
if( (ranker=(int *)malloc(rank*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for( i=0; i < rank ; i++){
ranker[i] = pile_one[i];
}
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls arrange_ordered_atom (2) \n");
#endif
if( arrange_ordered_atoms( ranker, rank ) != EXIT_SUCCESS ){
printf(" error : Cannot execute arrange_ordered_atoms \n");
exit( EXIT_FAILURE );
}
free(ranker);
}
}
}
}else if( lv_one->member_Num == 5 ){
rank = 5;
if( (ranker=(int *)malloc(rank*sizeof(int)))==NULL){
printf(" error : Cannot allocate memory in set_upper_level \n");
exit( EXIT_FAILURE );
}
for( i=0; i < rank ; i++){
ranker[i] = pile_one[i];
}
#ifdef TEST_SET_UPPER_LEVEL
printf("set_upper_level calls arrange_ordered_atom (3) \n");
#endif
if( arrange_ordered_atoms( ranker, rank ) != EXIT_SUCCESS ){
printf(" error : Cannot execute arrange_ordered_atoms \n");
exit( EXIT_FAILURE );
}
free(ranker);
}else{
printf(" error : Cannot deal with the atom %d \n", start);
exit( EXIT_FAILURE );
}
return EXIT_SUCCESS;
}