File: report.c

package info (click to toggle)
pgapack 1.1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,344 kB
  • ctags: 1,786
  • sloc: ansic: 10,331; fortran: 2,985; sh: 486; makefile: 462; perl: 105
file content (1332 lines) | stat: -rw-r--r-- 40,134 bytes parent folder | download | duplicates (3)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
/*
COPYRIGHT

The following is a notice of limited availability of the code, and disclaimer
which must be included in the prologue of the code and in all source listings
of the code.

(C) COPYRIGHT 2008 University of Chicago

Permission is hereby granted to use, reproduce, prepare derivative works, and
to redistribute to others. This software was authored by:

D. Levine
Mathematics and Computer Science Division 
Argonne National Laboratory Group

with programming assistance of participants in Argonne National 
Laboratory's SERS program.

GOVERNMENT LICENSE

Portions of this material resulted from work developed under a
U.S. Government Contract and are subject to the following license: the
Government is granted for itself and others acting on its behalf a paid-up,
nonexclusive, irrevocable worldwide license in this computer software to
reproduce, prepare derivative works, and perform publicly and display
publicly.

DISCLAIMER

This computer code material was prepared, in part, as an account of work
sponsored by an agency of the United States Government. Neither the United
States, nor the University of Chicago, nor any of their employees, makes any
warranty express or implied, or assumes any legal liability or responsibility
for the accuracy, completeness, or usefulness of any information, apparatus,
product, or process disclosed, or represents that its use would not infringe
privately owned rights.
*/

/******************************************************************************
 *     FILE: report.c: This file contains functions for reporting on GA
 *                     parameters, and execution.
 *
 *     Authors: David M. Levine, Philip L. Hallstrom, David M. Noelle
 *              Brian P. Walenz
 ******************************************************************************/

#include "pgapack.h"

/*U****************************************************************************
   PGAPrintReport - prints genetic algorithm statistics.  The statistics
   that are printed are determined by PGASetPrintOptions().

   Category: Reporting

   Inputs:
      ctx - context variable
      fp  - file pointer to print the output to
      pop - symbolic constant of the population whose statistics are printed

   Outputs:
      genetic algorithm statistics are printed to fp

   Example:
      PGAContext *ctx;
      int p;
      :
      PGAPrintReport(ctx, stdout, PGA_NEWPOP);

****************************************************************************U*/
void PGAPrintReport(PGAContext *ctx, FILE *fp, int pop)
{
     int p, best_p;
     double e, best_e;

    PGADebugEntered("PGAPrintReport");

    /*
     * edd  07 Feb 2007  this prints unconditionally, so let's change it
     *                    WAS:  if (ctx->ga.iter == 1)
     */
     if ((ctx->rep.PrintFreq >=0) && !(ctx->ga.iter % ctx->rep.PrintFreq))
/*       fprintf (fp, "Iter #     Field      Value           Time\n");  */
         fprintf (fp, "Iter #     Field      Value\n");


     best_p = PGAGetBestIndex(ctx, pop);
     best_e = PGAGetEvaluation(ctx, best_p, pop);
    /*
     * edd  07 Feb 2007  this prints unconditionally, so let's change it
     *                    WAS:  (!(ctx->ga.iter % ctx->rep.PrintFreq) || ctx->ga.iter == 1)
     */
     if ((ctx->rep.PrintFreq >=0) && !(ctx->ga.iter % ctx->rep.PrintFreq))
     {
          fprintf(fp, "%-11dBest       %e\n", PGAGetGAIterValue(ctx), best_e);
/*        fprintf(fp, "      %ld\n", time(NULL) - ctx->rep.starttime);  */
          if ((ctx->rep.PrintOptions & PGA_REPORT_WORST) == PGA_REPORT_WORST)
          {
               p = PGAGetWorstIndex(ctx, pop);
               e = PGAGetEvaluation(ctx, p, pop);
               fprintf(fp, "           Worst      %e\n", e);
          }

          if ((ctx->rep.PrintOptions & PGA_REPORT_AVERAGE) == PGA_REPORT_AVERAGE)
               fprintf(fp, "           Average    %e\n", ctx->rep.Average);

          if ((ctx->rep.PrintOptions & PGA_REPORT_OFFLINE)
               == PGA_REPORT_OFFLINE)
               fprintf(fp, "           Offline    %e\n", ctx->rep.Offline);

          if ((ctx->rep.PrintOptions & PGA_REPORT_ONLINE) == PGA_REPORT_ONLINE)
               fprintf(fp, "           Online     %e\n", ctx->rep.Online);

          if((ctx->rep.PrintOptions & PGA_REPORT_HAMMING)
             == PGA_REPORT_HAMMING)
               fprintf(fp, "           Hamming    %e\n",
                       PGAHammingDistance(ctx, pop));
          if ((ctx->rep.PrintOptions & PGA_REPORT_STRING) == PGA_REPORT_STRING)
               PGAPrintString(ctx, fp, best_p, pop);
     }
     fflush(fp);

    PGADebugExited("PGAPrintReport");
}

/*U****************************************************************************
   PGASetPrintOptions - set flags to indicate what GA statistics should be
   printed whenever output is printed.  May be called more than once to
   specify different report options.  Valid choices are PGA_REPORT_AVERAGE,
   PGA_REPORT_OFFLINE, PGA_REPORT_ONLINE, PGA_REPORT_WORST, PGA_REPORT_HAMMING,
   and PGA_REPORT_STRING to specify offline analysis, online analysis, the
   worst string in the population, the Hamming distance of the population, and
   the actual allele values of the best string.  The best string is always
   printed. 

   Category: Reporting

   Inputs:
      ctx    - context variable
      option - symbolic constant to specify a print option

   Outputs:
      None

   Example:
      PGAContext *ctx;
      :
      PGASetPrintOptions(ctx, PGA_REPORT_WORST);

****************************************************************************U*/
void PGASetPrintOptions (PGAContext *ctx, int option)
{
    PGADebugEntered("PGASetPrintOptions");

  switch (option) {
    case PGA_REPORT_AVERAGE:
    case PGA_REPORT_OFFLINE:
    case PGA_REPORT_ONLINE:
    case PGA_REPORT_WORST:
    case PGA_REPORT_HAMMING:
    case PGA_REPORT_STRING:
      ctx->rep.PrintOptions |= option;
      break;
    default:
      PGAError (ctx, "PGASetPrintOption: Invalid value of option:",
                PGA_FATAL, PGA_INT, (void *) &option);
      break;
  }

    PGADebugExited("PGASetPrintOptions");
}

/*U****************************************************************************
   PGASetPrintFrequencyValue - Specifies the frequency with which genetic
   algorithm statistics are reported.  The default is every 10 GA iterations.
   Used only if PGARun() is used to run the GA.

   Category: Reporting

   Inputs:
      ctx        - context variable
      print_freq - the genetic algorithm population size to use

   Outputs:
      None

   Example:
      PGAContext *ctx;
      :
      PGASetPrintFrequencyValue(ctx,1);

****************************************************************************U*/
void PGASetPrintFrequencyValue( PGAContext *ctx, int print_freq)
{
    PGADebugEntered("PGASetPrintFrequencyValue");

    if (print_freq < 0)
        PGAError ( ctx,
                  "PGASetPrintFrequencyValue: Invalid value of print_freq:",
                   PGA_FATAL,
                   PGA_INT,
                  (void *) &print_freq);
    else
        ctx->rep.PrintFreq = print_freq;

    PGADebugExited("PGASetPrintFrequencyValue");
}

/*U***************************************************************************
   PGAGetPrintFrequencyValue - returns how often to print statistics reports

   Category: Reporting

   Inputs:
      ctx - context variable

   Outputs:
      The frequency of printing output

   Example:
      PGAContext *ctx;
      int freq;
      :
      freq = PGAGetPrintFrequencyValue(ctx);

***************************************************************************U*/
int PGAGetPrintFrequencyValue (PGAContext *ctx)
{
    PGADebugEntered("PGAGetPrintFrequencyValue");
    PGAFailIfNotSetUp("PGAGetPrintFrequencyValue");

    PGADebugExited("PGAGetPrintFrequencyValue");

    return(ctx->rep.PrintFreq);
}

/*U****************************************************************************
   PGAPrintPopulation - Calls PGAPrintIndividual to print each member of a
   population

   Category: Reporting

   Inputs:
      ctx - context variable
      fp  - file pointer to print the output to
      pop - symbolic constant of the population to be printed

   Outputs:
      The strings and associated fields that make up a population member are
      printed to fp.

   Example:
      PGAContext *ctx;
      :
      PGAPrintPopulation(ctx, stdout, PGA_NEWPOP);

****************************************************************************U*/
void PGAPrintPopulation ( PGAContext *ctx, FILE *fp, int pop )
{
    int i;


    PGADebugEntered("PGAPrintPopulation");

    for ( i=0; i < ctx->ga.PopSize; i++ )
         PGAPrintIndividual ( ctx, fp,  i, pop );
    fprintf(fp,"\n");

    PGADebugExited("PGAPrintPopulation");
}

/*U****************************************************************************
   PGAPrintIndividual - prints the allele values of a string and associated
   fields (evaluation, fitness, etc.) of a string

   Category: Reporting

   Inputs:
      ctx - context variable
      fp  - file pointer to print the output to
      p   - string index
      pop - symbolic constant of the population string p is in

   Outputs:
      The allele values of string p and associated fields are printed to fp

   Example:
      PGAContext *ctx;
      int p;
      :
      PGAPrintIndividual(ctx, stdout, p, PGA_NEWPOP);

****************************************************************************U*/
void PGAPrintIndividual ( PGAContext *ctx, FILE *fp, int p, int pop )
{
    PGAIndividual *ind;

    PGADebugEntered("PGAPrintIndividual");

    ind = PGAGetIndividual ( ctx, p, pop );

    fprintf( fp,"%d  %e %e ", p, ind->evalfunc, ind->fitness);
    if ( ind->evaluptodate )
        fprintf( fp, "T\n" );
    else
        fprintf( fp, "F\n" );
    PGAPrintString ( ctx, fp, p, pop );

    PGADebugExited("PGAPrintIndividual");
}

/*U****************************************************************************
   PGAPrintString - write the allele values in a string to a file

   Category: Reporting

   Inputs:
      ctx - context variable
      fp  - pointer to file to write the string to
      p   - index of the string to write out
      pop - symbolic constant of the population string p is in

   Outputs:
      None

   Example:
      PGAContext *ctx;
      int p;
      :
      PGAPrintString(ctx, stdout, p, PGA_OLDPOP);

****************************************************************************U*/
void PGAPrintString ( PGAContext *ctx, FILE *file, int p, int pop )
{
    int fp;

    PGADebugEntered("PGAPrintString");
    PGADebugPrint( ctx, PGA_DEBUG_PRINTVAR,"PGAPrintString",
                  "p   = ", PGA_INT, (void *) &p );
    PGADebugPrint( ctx, PGA_DEBUG_PRINTVAR,"PGAPrintString",
                  "pop = ", PGA_INT, (void *) &pop );
    
    if (ctx->fops.PrintString) {
        fp = ((p == PGA_TEMP1) || (p == PGA_TEMP2)) ? p : p+1;
        (*ctx->fops.PrintString)(&ctx, NULL, &fp, &pop);
    } else {
        (*ctx->cops.PrintString)(ctx, file, p, pop);
    }
    fprintf(file,"\n");

    PGADebugExited("PGAPrintString");
}

/*U****************************************************************************
   PGAPrintContextVariable - prints the value of all the fields in the context
   variable.

   Category: Reporting

   Inputs:
      ctx - context variable
      fp  - file pointer to print the output to

   Outputs:
      The value of all the fields in the context variable are printed to fp.

   Example:
      PGAContext *ctx;
      :
      PGAPrintContextVariable(ctx, stdout);

****************************************************************************U*/
void PGAPrintContextVariable ( PGAContext *ctx, FILE *fp )
{
    PGADebugEntered("PGAPrintContextVariable");

     fprintf( fp,"Algorithm Parameters (Static)\n");

     fprintf( fp,"    Data type                      : ");
     switch(ctx->ga.datatype)
     {
     case PGA_DATATYPE_BINARY:
          fprintf( fp,"Binary\n");
          /*fprintf( fp,"    Bit Type Total Words           : ");
          switch(ctx->ga.tw)
          {
          case PGA_UNINITIALIZED_INT:
               fprintf( fp,"*UNINITIALIZED*\n");
               break;
          default:
               fprintf( fp,"%d\n",ctx->ga.tw);
               break;
          };
          fprintf( fp,"    Bit Type Full Words            : ");
          switch(ctx->ga.fw)
          {
          case PGA_UNINITIALIZED_INT:
               fprintf( fp,"*UNINITIALIZED*\n");
               break;
          default:
               fprintf( fp,"%d\n",ctx->ga.fw);
               break;
          };
          fprintf( fp,"    Bit Type Extra Bits            : ");
          switch(ctx->ga.eb)
          {
          case PGA_UNINITIALIZED_INT:
               fprintf( fp,"*UNINITIALIZED*\n");
               break;
          default:
               fprintf( fp,"%d\n",ctx->ga.eb);
               break;
          };*/
          break;
     case PGA_DATATYPE_INTEGER:
          fprintf( fp,"Integer\n");
          break;
     case PGA_DATATYPE_REAL:
          fprintf( fp,"Real\n");
          break;
     case PGA_DATATYPE_CHARACTER:
          fprintf( fp,"Character\n");
          break;
     case PGA_DATATYPE_USER:
          fprintf( fp,"User Defined\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.datatype);
          break;
     };

     fprintf( fp,"    Optimization Direction         : ");
     switch(ctx->ga.optdir)
     {
     case PGA_MAXIMIZE:
          fprintf( fp,"Maximize\n");
          break;
     case PGA_MINIMIZE:
          fprintf( fp,"Minimize\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.optdir);
          break;
     };

     fprintf( fp,"    Population Size                : ");
     switch(ctx->ga.PopSize)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.PopSize);
          break;
     };

     fprintf( fp,"    String Length                  : ");
     switch(ctx->ga.StringLen)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.StringLen);
          break;
     };
     

     fprintf( fp,"    Copy to Next Population        : ");
     switch(ctx->ga.PopReplace)
     {
     case PGA_POPREPL_BEST:
          fprintf( fp,"Best\n");
          break;
     case PGA_POPREPL_RANDOM_NOREP:
          fprintf( fp,"Random without replacement\n");
          break;
     case PGA_POPREPL_RANDOM_REP:
          fprintf( fp,"Random with replacement\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.PopReplace);
          break;
     };

     
     /*fprintf( fp,"    Stopping Rule (s)              :\n");
     if ((ctx->ga.StoppingRule & PGA_STOP_MAXITER) == PGA_STOP_MAXITER)
          fprintf(fp, "%50s", "Maximum iterations\n");
     if ((ctx->ga.StoppingRule & PGA_STOP_NOCHANGE) == PGA_STOP_NOCHANGE)
          fprintf(fp, "%49s", "No change in best\n");
     if ((ctx->ga.StoppingRule & PGA_STOP_TOOSIMILAR) == PGA_STOP_TOOSIMILAR)
          fprintf(fp, "%54s", "Population Homogeneity\n");
     if (ctx->ga.StoppingRule == PGA_UNINITIALIZED_INT)
          fprintf(fp, "%47s", "*UNINITIALIZED*\n");*/

     fprintf( fp,"    Stop: Maximum Iterations       : ");
     if ((ctx->ga.StoppingRule & PGA_STOP_MAXITER) == PGA_STOP_MAXITER)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");


     fprintf( fp,"        Maximum Iterations         : ");
     switch(ctx->ga.MaxIter)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.MaxIter);
          break;
     };


     fprintf( fp,"    Stop: No Change                : ");
     if ((ctx->ga.StoppingRule & PGA_STOP_NOCHANGE) == PGA_STOP_NOCHANGE)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

     
     fprintf(fp, "        Max No Change Iterations   : ");
     switch(ctx->ga.MaxNoChange)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->ga.MaxNoChange);
          break;
     }

     fprintf( fp,"    Stop: Too Similar              : ");
     if ((ctx->ga.StoppingRule & PGA_STOP_TOOSIMILAR) == PGA_STOP_TOOSIMILAR)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");


     fprintf(fp, "        Percent Similarity         : ");
     switch(ctx->ga.MaxSimilarity)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->ga.MaxSimilarity);
          break;
     }

     fprintf( fp,"    No. Strings Replaced per Iter  : ");
     switch(ctx->ga.NumReplace)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.NumReplace);
          break;
     };


     fprintf( fp,"    Mutate [And,Or] Crossover      : ");
     switch(ctx->ga.MutateOnlyNoCross)
     {
     case PGA_TRUE:
          fprintf( fp,"Or\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"And\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.MutateOnlyNoCross);
          break;
     };

     
     fprintf( fp,"    Crossover Type                 : ");
     switch(ctx->ga.CrossoverType)
     {
     case PGA_CROSSOVER_ONEPT:
          fprintf( fp,"One Point\n");
          break;
     case PGA_CROSSOVER_TWOPT:
          fprintf( fp,"Two Point\n");
          break;
     case PGA_CROSSOVER_UNIFORM:
          fprintf( fp,"Uniform\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.CrossoverType);
          break;
     };

     
     fprintf( fp,"    Crossover Probability          : ");
     if (ctx->ga.CrossoverProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.CrossoverProb);

    
     fprintf( fp,"    Uniform Crossover Prob.        : ");
     if (ctx->ga.UniformCrossProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.UniformCrossProb);

     
     fprintf( fp,"    Mutation Type                  : ");
     switch(ctx->ga.datatype)
     {
     case PGA_DATATYPE_BINARY:
          fprintf( fp,"Binary\n");
          break;
     case PGA_DATATYPE_CHARACTER:
          fprintf( fp,"Character\n");
          break;
     case PGA_DATATYPE_REAL:
     case PGA_DATATYPE_INTEGER:
         switch(ctx->ga.MutationType)
         {
         case PGA_MUTATION_CONSTANT:
              fprintf( fp,"Constant\n");
              break;
         case PGA_MUTATION_RANGE:
              fprintf( fp,"Range\n");
              break;
         case PGA_MUTATION_UNIFORM:
              fprintf( fp,"Uniform\n");
              break;
         case PGA_MUTATION_GAUSSIAN:
              fprintf( fp,"Gaussian\n");
              break;
         case PGA_MUTATION_PERMUTE:
              fprintf( fp,"Permutation\n");
              break;
         case PGA_UNINITIALIZED_INT:
              fprintf( fp,"*UNINITIALIZED*\n");
              break;
         default:
              fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.MutationType);
              break;
         };
     default:
         break;
     };

     
     fprintf( fp,"    Mutation Probability           : ");
     if (ctx->ga.MutationProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.MutationProb);

     
     fprintf( fp,"    Real Mutation Constant         : ");
     if (ctx->ga.MutationProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.MutateRealValue);


     fprintf(fp, "    Integer Mutation Constant      : ");
     switch(ctx->ga.MutateIntegerValue)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->ga.MutateIntegerValue);
          break;
     }

     
     fprintf( fp,"    Mutation Range Bounded         : ");
     switch(ctx->ga.MutateBoundedFlag)
     {
     case PGA_TRUE:
          fprintf( fp,"On\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"Off\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.MutateBoundedFlag);
          break;
     };

     
     fprintf( fp,"    Selection Type                 : ");
     switch(ctx->ga.SelectType)
     {
     case PGA_SELECT_PROPORTIONAL:
          fprintf( fp,"Proportional\n");
          break;
     case PGA_SELECT_SUS:
          fprintf( fp,"Stochastic Universal\n");
          break;
     case PGA_SELECT_TOURNAMENT:
          fprintf( fp,"Binary Tournament\n");
          break;
     case PGA_SELECT_PTOURNAMENT:
          fprintf( fp,"Probabilistic Binary Tournament\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.SelectType);
          break;
     };

     
     fprintf( fp,"    Tournament Selection Param     : ");
     if (ctx->ga.PTournamentProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.PTournamentProb);
    
     

     fprintf( fp,"    Restart Operator               : ");
     switch(ctx->ga.restart)
     {
     case PGA_TRUE:
          fprintf( fp,"On\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"Off\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.restart);
          break;
     };

     fprintf( fp,"    Restart Frequency              : ");
     switch(ctx->ga.restartFreq)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.restartFreq);
          break;
     };

     fprintf( fp,"    Restart Allele Change Prob     : ");
     if (ctx->ga.restartAlleleProb == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.restartAlleleProb);

     
     fprintf( fp,"    Allow Duplicates               : ");
     switch(ctx->ga.NoDuplicates)
     {
     case PGA_TRUE:
          fprintf( fp,"No\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"Yes\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.NoDuplicates);
          break;
     };


     fprintf( fp,"    Fitness Type                   : ");
     switch(ctx->ga.FitnessType)
     {
     case PGA_FITNESS_RAW:
          fprintf( fp,"Raw\n");
          break;
     case PGA_FITNESS_NORMAL:
          fprintf( fp,"Linear Normalization\n");
          break;
     case PGA_FITNESS_RANKING:
          fprintf( fp,"Linear Ranking\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.FitnessType);
          break;
     };

     
     if ( ctx->ga.optdir == PGA_MINIMIZE )
     {
          fprintf( fp,"    Fitness Type(Minimization)     : ");
          switch(ctx->ga.FitnessMinType) {
          case PGA_FITNESSMIN_RECIPROCAL:
               fprintf( fp,"Reciprocal\n");
               break;
          case PGA_FITNESSMIN_CMAX:
               fprintf( fp,"CMax\n");
               break;
          case PGA_UNINITIALIZED_INT:
               fprintf( fp,"*UNINITIALIZED*\n");
               break;
          default:
               fprintf( fp,"!ERROR!  =(%d)?\n", ctx->ga.FitnessMinType);
               break;
          };
     }

     
     fprintf( fp,"    Fitness Ranking Parameter      : ");
     if (ctx->ga.FitnessRankMax == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.FitnessRankMax);
     

     fprintf( fp,"    Fitness CMAX Parameter         : ");
     if (ctx->ga.FitnessCmaxValue == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->ga.FitnessCmaxValue);

     
     fprintf( fp,"Algorithm Parameters (Dynamic)\n");

     
     fprintf( fp,"    Current Generation             : ");
     switch(ctx->ga.iter)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.iter);
          break;
     };

     fprintf(fp, "    Num Iters With No Change       : ");
     switch(ctx->ga.ItersOfSame)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->ga.ItersOfSame);
          break;
     }

     fprintf(fp, "    Percent Similarity In Pop      : ");
     switch(ctx->ga.PercentSame)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "?UNINITIALZED?\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->ga.PercentSame);
          break;
     }

     fprintf( fp,"    Selection Index                : ");
     switch(ctx->ga.SelectIndex)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->ga.SelectIndex);
          break;
     };

     
/* initialization */
     fprintf( fp,"Initialization\n");

     fprintf( fp,"    Random Initialization          : ");
     switch(ctx->init.RandomInit)
     {
     case PGA_TRUE:
          fprintf( fp,"On\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"Off\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->init.RandomInit);
          break;
     };

     fprintf( fp,"    Initialization Binary Prob     : ");
     if (ctx->init.BinaryProbability == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%f\n",ctx->init.BinaryProbability);


     fprintf( fp,"    Initialization Real            : ");
     switch(ctx->init.RealType)
     {
     case PGA_RINIT_RANGE:
          fprintf( fp,"Range\n");
          break;
     case PGA_RINIT_PERCENT:
          fprintf( fp,"Percent Offset\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->init.RealType);
          break;
     };

     fprintf( fp,"    Initialization Integer         : ");
     switch(ctx->init.IntegerType)
     {
     case PGA_IINIT_RANGE:
          fprintf( fp,"Range\n");
          break;
     case PGA_IINIT_PERMUTE:
          fprintf( fp,"Permutation\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->init.IntegerType);
          break;
     };

     fprintf( fp,"    Initialization Character       : ");
     switch(ctx->init.CharacterType)
     {
     case PGA_CINIT_LOWER:
          fprintf( fp,"Lower Case\n");
          break;
     case PGA_CINIT_UPPER:
          fprintf( fp,"Upper Case\n");
          break;
     case PGA_CINIT_MIXED:
          fprintf( fp,"Mixed Case\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->init.CharacterType);
          break;
     };
     
     fprintf( fp,"    Random Number Seed             : ");
     switch(ctx->init.RandomSeed)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n", ctx->init.RandomSeed);
          break;
     };

     PGADebugExited("PGAPrintContextVariable");


/* par */
    fprintf( fp,"Parallel\n");

    fprintf( fp,"    MPI Library Used               : ");
     switch(ctx->par.MPIStubLibrary)
     {
     case PGA_TRUE:
          fprintf( fp,"Sequential\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"Parallel\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->par.MPIStubLibrary);
          break;
     };


     fprintf( fp,"    MPI Initialized by PGAPack     : ");
     switch(ctx->par.MPIAlreadyInit)
     {
     case PGA_TRUE:
          fprintf( fp,"Yes\n");
          break;
     case PGA_FALSE:
          fprintf( fp,"No\n");
          break;
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"!ERROR!  =(%d)?\n", ctx->par.MPIAlreadyInit);
          break;
     };

     /*fprintf(fp, "    Number Islands                 : ");
     switch(ctx->par.NumIslands)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->par.NumIslands);
          break;
     }

     fprintf(fp, "    Number Demes                   : ");
     switch(ctx->par.NumDemes)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf(fp, "*UNINITIALIZED*\n");
          break;
     default:
          fprintf(fp, "%d\n", ctx->par.NumDemes);
          break;
     }*/

     fprintf(fp, "    Default Communicator           : ");
     if (ctx->par.DefaultComm == NULL) 
	 fprintf(fp, "NULL\n");
     else if (ctx->par.DefaultComm == MPI_COMM_WORLD)
         fprintf(fp, "MPI_COMM_WORLD\n");
     else
	 fprintf(fp, "User Defined\n");
 


/* report */
     fprintf( fp,"Report\n");

     fprintf( fp,"    Print Frequency                : ");
     switch(ctx->rep.PrintFreq)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->rep.PrintFreq);
          break;
     };

     fprintf( fp,"    Print Worst Evaluation         : ");
     if ((ctx->rep.PrintOptions & PGA_REPORT_WORST) == PGA_REPORT_WORST)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

     fprintf( fp,"    Print Average Evaluation       : ");
     if ((ctx->rep.PrintOptions & PGA_REPORT_AVERAGE) == PGA_REPORT_AVERAGE)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

     fprintf( fp,"    Print Offline Statistics       : ");
     if ((ctx->rep.PrintOptions & PGA_REPORT_OFFLINE) == PGA_REPORT_OFFLINE)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

     fprintf( fp,"    Print Online Statistics        : ");
     if ((ctx->rep.PrintOptions & PGA_REPORT_ONLINE) == PGA_REPORT_ONLINE)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

     fprintf( fp,"    Print Hamming Distance         : ");
     if ((ctx->rep.PrintOptions & PGA_REPORT_HAMMING) == PGA_REPORT_HAMMING)
         fprintf( fp,"On\n");
     else
         fprintf( fp,"Off\n");

/* system */
     fprintf( fp,"System\n");

     fprintf( fp,"    Maximum Integer                : ");
     switch(ctx->sys.PGAMaxInt)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->sys.PGAMaxInt);
          break;
     };

     fprintf( fp,"    Minimum Integer                : ");
     switch(ctx->sys.PGAMinInt)
     {
     case PGA_UNINITIALIZED_INT:
          fprintf( fp,"*UNINITIALIZED*\n");
          break;
     default:
          fprintf( fp,"%d\n",ctx->sys.PGAMinInt);
          break;
     };

     fprintf( fp,"    Maximum Double                 : ");
     if (ctx->sys.PGAMaxDouble == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%e\n",ctx->sys.PGAMaxDouble);

     fprintf( fp,"    Minimum Double                 : ");
     if (ctx->sys.PGAMinDouble == PGA_UNINITIALIZED_DOUBLE)
          fprintf( fp,"*UNINITIALIZED*\n");
     else
          fprintf( fp,"%e\n",ctx->sys.PGAMinDouble);



/* ops */
    fprintf( fp,"Operations\n");

    fprintf( fp,"    CreateString  function         : ");
    if (ctx->cops.CreateString == NULL)
	fprintf( fp,"NULL\n");
    else if (ctx->cops.CreateString == PGABinaryCreateString)
	fprintf( fp,"PGABinaryCreateString\n");
    else if (ctx->cops.CreateString == PGAIntegerCreateString)
	fprintf( fp,"PGAIntegerCreateString\n");
    else if (ctx->cops.CreateString == PGARealCreateString)
	fprintf( fp,"PGARealCreateString\n");
    else if (ctx->cops.CreateString == PGACharacterCreateString)
	fprintf( fp,"PGACharacterCreateString\n");
    else
	fprintf( fp,"C User Defined: %p\n",ctx->cops.CreateString);

    
    fprintf( fp,"    InitString    function         : ");
    if (ctx->cops.InitString) {
        if (ctx->cops.InitString == PGABinaryInitString)
	    fprintf( fp,"PGABinaryInitString\n");
        else if (ctx->cops.InitString == PGAIntegerInitString)
            fprintf( fp,"PGAIntegerInitString\n");
        else if (ctx->cops.InitString == PGARealInitString)
    	    fprintf( fp,"PGARealInitString\n");
        else if (ctx->cops.InitString == PGACharacterInitString)
    	    fprintf( fp,"PGACharacterInitString\n");
        else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.InitString);
    } else {
	if (ctx->fops.InitString) 
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.InitString);
	else
	    fprintf( fp,"NULL\n");
    }
    

    fprintf( fp,"    BuildDatatype function         : ");
    if (ctx->cops.BuildDatatype == NULL)
	fprintf( fp,"NULL\n");
    else if (ctx->cops.BuildDatatype == PGABinaryBuildDatatype)
	fprintf( fp,"PGABinaryBuildDatatype\n");
    else if (ctx->cops.BuildDatatype == PGAIntegerBuildDatatype)
	fprintf( fp,"PGAIntegerBuildDatatype\n");
    else if (ctx->cops.BuildDatatype == PGARealBuildDatatype)
	fprintf( fp,"PGARealBuildDatatype\n");
    else if (ctx->cops.BuildDatatype == PGACharacterBuildDatatype)
	fprintf( fp,"PGACharacterBuildDatatype\n");
    else
	fprintf( fp,"C User Defined: %p\n",ctx->cops.BuildDatatype);

    
    fprintf( fp,"    Mutation      function         : ");
    if (ctx->cops.Mutation) {
	if (ctx->cops.Mutation == PGABinaryMutation)
	    fprintf( fp,"PGABinaryMutation\n");
	else if (ctx->cops.Mutation == PGAIntegerMutation)
	    fprintf( fp,"PGAIntegerMutation\n");
	else if (ctx->cops.Mutation == PGARealMutation)
	    fprintf( fp,"PGARealMutation\n");
	else if (ctx->cops.Mutation == PGACharacterMutation)
	    fprintf( fp,"PGACharacterMutation\n");
	else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.Mutation);
    } else {
	if (ctx->fops.Mutation) 
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.Mutation);
	else
	    fprintf( fp,"NULL\n");
    }

    
    fprintf( fp,"    Crossover     function         : ");
    if (ctx->cops.Crossover) {
	if (ctx->cops.Crossover == PGABinaryOneptCrossover)
	    fprintf( fp,"PGABinaryOneptCrossover\n");
	else if (ctx->cops.Crossover == PGAIntegerOneptCrossover)
	    fprintf( fp,"PGAIntegerOneptCrossover\n");
	else if (ctx->cops.Crossover == PGARealOneptCrossover)
	    fprintf( fp,"PGARealOneptCrossover\n");
	else if (ctx->cops.Crossover == PGACharacterOneptCrossover)
	    fprintf( fp,"PGACharacterOneptCrossover\n");
	else if (ctx->cops.Crossover == PGABinaryTwoptCrossover)
	    fprintf( fp,"PGABinaryTwoptCrossover\n");
	else if (ctx->cops.Crossover == PGAIntegerTwoptCrossover)
	    fprintf( fp,"PGAIntegerTwoptCrossover\n");
	else if (ctx->cops.Crossover == PGARealTwoptCrossover)
	    fprintf( fp,"PGARealTwoptCrossover\n");
	else if (ctx->cops.Crossover == PGACharacterTwoptCrossover)
	    fprintf( fp,"PGACharacterTwoptCrossover\n");
	else if (ctx->cops.Crossover == PGABinaryUniformCrossover)
	    fprintf( fp,"PGABinarytUniformCrossover\n");
	else if (ctx->cops.Crossover == PGAIntegerUniformCrossover)
	    fprintf( fp,"PGAIntegerUniformCrossover\n");
	else if (ctx->cops.Crossover == PGARealUniformCrossover)
	    fprintf( fp,"PGARealUniformCrossover\n");
	else if (ctx->cops.Crossover == PGACharacterUniformCrossover)
	    fprintf( fp,"PGACharacterUniformCrossover\n");
	else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.Crossover);
    } else {
	if (ctx->fops.Crossover) 
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.Crossover);
	else
	    fprintf( fp,"NULL\n");
    }

    
    fprintf( fp,"    PrintString   function         : ");
    if (ctx->cops.PrintString) {
	if (ctx->cops.PrintString == PGABinaryPrintString)
	    fprintf( fp,"PGABinaryPrintString\n");
	else if (ctx->cops.PrintString == PGAIntegerPrintString)
	    fprintf( fp,"PGAIntegerPrintString\n");
	else if (ctx->cops.PrintString == PGARealPrintString)
	    fprintf( fp,"PGARealPrintString\n");
	else if (ctx->cops.PrintString == PGACharacterPrintString)
	    fprintf( fp,"PGACharacterPrintString\n");
	else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.PrintString);
    } else {
	if (ctx->fops.PrintString)
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.PrintString);
	else
	    fprintf( fp,"NULL\n");
    }
    

    fprintf( fp,"    CopyString    function         : ");
    if (ctx->cops.CopyString) {
	if (ctx->cops.CopyString == PGABinaryCopyString)
	    fprintf( fp,"PGABinaryCopyString\n");
	else if (ctx->cops.CopyString == PGAIntegerCopyString)
	    fprintf( fp,"PGAIntegerCopyString\n");
	else if (ctx->cops.CopyString == PGARealCopyString)
	    fprintf( fp,"PGARealCopyString\n");
	else if (ctx->cops.CopyString == PGACharacterCopyString)
	    fprintf( fp,"PGACharacterCopyString\n");
	else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.CopyString);
    } else {
	if (ctx->cops.CopyString)
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.CopyString);
	else
	    fprintf( fp,"NULL\n");
    }

    
    fprintf( fp,"    Duplicate     function         : ");
    if (ctx->cops.Duplicate) {
	if (ctx->cops.Duplicate == PGABinaryDuplicate)
	    fprintf( fp,"PGABinaryDuplicate\n");
	else if (ctx->cops.Duplicate == PGAIntegerDuplicate)
	    fprintf( fp,"PGAIntegerDuplicate\n");
	else if (ctx->cops.Duplicate == PGARealDuplicate)
	    fprintf( fp,"PGARealDuplicate\n"); 
	else if (ctx->cops.Duplicate == PGACharacterDuplicate)
	    fprintf( fp,"PGACharacterDuplicate\n"); 
	else
	    fprintf( fp,"C User Defined: %p\n",ctx->cops.Duplicate);
    } else {
	if (ctx->fops.Duplicate)
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.Duplicate);
	else
	    fprintf( fp,"NULL\n");
    }


    fprintf( fp,"    Stopping      function         : ");
    if (ctx->cops.StopCond)
	fprintf( fp,"C User Defined: %p\n",ctx->cops.StopCond);
    else
	if (ctx->fops.StopCond)
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.StopCond);
	else
	    fprintf( fp,"PGACheckStoppingConditions\n");


    fprintf( fp,"    End of Generation function     : ");
    if (ctx->cops.EndOfGen)
	fprintf( fp,"C User Defined: %p\n",ctx->cops.EndOfGen);
    else
	if (ctx->cops.EndOfGen)
	    fprintf( fp,"Fortran User Defined: %p\n",ctx->fops.EndOfGen);
	else
	    fprintf( fp,"NULL\n");
    

}