-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathChangeLog
More file actions
4162 lines (2906 loc) · 143 KB
/
ChangeLog
File metadata and controls
4162 lines (2906 loc) · 143 KB
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
2004-06-24 17:53 stewartadcock
* Makefile, config.h, config.h.in, config.status, configure,
configure.in, debian/Makefile, examples/Makefile, src/Makefile,
tests/Makefile, util/Makefile: MPICH configuration fixed.
2004-06-24 15:03 stewartadcock
* Makefile, config.h, config.status, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_optim.c, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h: MPI code improvements.
2004-06-24 11:05 stewartadcock
* Makefile, Makefile.in, aclocal.m4, config.h, config.status,
configure, configure.in, gaul-devel-noslang.spec, gaul-devel.spec,
libtool, debian/Makefile, debian/Makefile.in, examples/Makefile,
examples/Makefile.in, src/Makefile, src/Makefile.in,
src/ga_intrinsics.c, src/gaul/ga_intrinsics.h, tests/Makefile,
tests/Makefile.in, tests/test_bitstrings.c, util/Makefile,
util/Makefile.in, util/gaul/gaul_config.h,
util/gaul/gaul_config_win.h: Some cleaning. Now at version
0.1846-9.
2004-06-23 21:24 stewartadcock
* Makefile, Makefile.in, aclocal.m4, config.h, config.h.in,
config.status, configure, configure.in, libtool, debian/Makefile,
debian/Makefile.in, examples/Makefile, examples/Makefile.in,
src/Makefile, src/Makefile.in, tests/Makefile, tests/Makefile.in,
tests/diagnostics.c, util/Makefile, util/Makefile.in,
util/compatibility.c, util/gaul/compatibility.h,
util/gaul/gaul_config.h: sync.
2004-06-18 16:56 stewartadcock
* LatestChanges, ROADMAP, examples/fitting.c, src/ga_crossover.c,
src/gaul.h: Added ga_crossover_double_mean() and
ga_crossover_int_mean().
2004-06-17 14:23 stewartadcock
* README: Tweaked readme file. Added note about reference guide.
2004-06-17 11:32 stewartadcock
* LatestChanges, ROADMAP, src/ga_select.c: Notes that roulette
wheel and SUS selection operators are not thread-safe.
2004-06-15 14:04 stewartadcock
* Makefile, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_systematicsearch.c,
tests/Makefile, util/Makefile: Fixed some erronerous comments.
2004-06-14 10:55 stewartadcock
* LatestChanges, Makefile, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, tests/Makefile.am,
tests/Makefile.in, util/Makefile: Renamed the "diagnostics" test
execuatable to "gaul_diagnostics" to avoid potential name clash.
2004-06-14 09:18 stewartadcock
* LatestChanges, src/ga_utility.c, src/gaul/ga_core.h: Removed all
references to the deprecated constants GA_ELITISM_CONSTANT and
GA_ELITISM_MULTIPLIER.
2004-06-14 09:10 stewartadcock
* Makefile, Makefile.in, aclocal.m4, config.h, config.status,
configure, libtool, debian/Makefile, debian/Makefile.in,
examples/Makefile, examples/Makefile.in, src/Makefile,
src/Makefile.in, src/ga_select.c, tests/Makefile,
tests/Makefile.in, util/Makefile, util/Makefile.in,
util/gaul/gaul_config.h: Clean compilation.
2004-05-25 10:42 stewartadcock
* LatestChanges, src/ga_select.c, src/gaul.h: Added new selection
operators: ga_select_one_bestof3() and ga_select_two_bestof3().
Fixed potential bug in and ga_select_two_bestof2().
2004-05-24 22:49 stewartadcock
* Makefile, Makefile.in, ROADMAP, aclocal.m4, config.h,
config.status, configure, configure.in, libtool, debian/Makefile,
debian/Makefile.in, examples/Makefile, examples/Makefile.in,
src/Makefile, src/Makefile.in, src/gaul.h, tests/Makefile,
tests/Makefile.in, util/Makefile, util/Makefile.in,
util/gaul/gaul_config.h: Removed convergence testing functions from
public API.
2004-05-24 09:56 stewartadcock
* README: Correct mailing list address.
2004-05-22 10:11 stewartadcock
* Makefile, config.h, config.status, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_core.c, src/gaul/ga_core.h,
tests/Makefile, util/Makefile, util/gaul/gaul_config.h,
util/gaul/gaul_util.h: Better threading macros.
2004-05-22 09:49 stewartadcock
* examples/fitting.c, examples/struggle4.c, src/ga_mutate.c,
src/ga_seed.c: Altered some confusing comments.
2004-05-20 17:27 stewartadcock
* examples/mixed.c: Deleted a redundant comment.
2004-05-17 11:03 stewartadcock
* util/log_util.c: Removed some debugging messages.
2004-05-17 11:01 stewartadcock
* Makefile, ROADMAP, config.h, config.status, configure,
configure.in, libtool, debian/Makefile, examples/Makefile,
src/Makefile, tests/Makefile, util/Makefile, util/log_util.c,
util/gaul/gaul_config.h: Fixed a pthread deadlock.
2004-05-14 09:56 stewartadcock
* configure.in, gaul-devel-noslang.spec, gaul-devel.spec: Bumped up
patch level.
2004-05-14 09:55 stewartadcock
* Makefile, Makefile.am, Makefile.in, aclocal.m4, config.h,
config.status, configure, configure.in, libtool, debian/Makefile,
debian/Makefile.in, examples/Makefile, examples/Makefile.in,
src/Makefile, src/Makefile.in, tests/Makefile, tests/Makefile.in,
util/Makefile, util/Makefile.in, util/gaul/gaul_config.h: Removed
private extras directory into separate distribution.
2004-05-12 15:30 stewartadcock
* Makefile, Makefile.in, aclocal.m4, compile, config.h,
config.status, configure, libtool, debian/Makefile,
debian/Makefile.in, examples/Makefile, examples/Makefile.in,
src/Makefile, src/Makefile.in, tests/Makefile, tests/Makefile.in,
util/Makefile, util/Makefile.am, util/Makefile.in,
util/gaul/gaul_config.h: Added compile and debian/Makefile.in files
to archive.
2004-05-12 13:21 stewartadcock
* README: Improved formatting for the readme file.
2004-05-12 13:18 stewartadcock
* README: Updated readme file.
2004-05-12 12:11 stewartadcock
* LatestChanges, Makefile, config.h, config.status,
debian/Makefile, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/struggle_mp.c,
examples/struggle_mpi.c, src/Makefile, src/ga_core.c,
src/ga_optim.c, src/gaul/ga_optim.h, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: New ga_evolution_mpi() function for simple
MPI use. Associated example, examples/struggle_mpi.c, added.
2004-05-10 11:58 stewartadcock
* util/gaul/: gaul_util.h, gaul_util.h: Change for clean
compilation in case of compilation for use with LAM-MPI.
2004-05-10 11:38 stewartadcock
* Makefile, config.h, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_simplex.c, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h, util/gaul/gaul_util.h:
Fixed code for compiling without OpenMP.
2004-05-07 10:04 stewartadcock
* src/ga_optim.c: Some Intel specific OpenMP pragmas (workqueue
model) added.
2004-05-05 10:11 stewartadcock
* util/gaul/gaul_util.h: Avoid a unneeded dependency.
2004-05-05 10:10 stewartadcock
* examples/saveload.c: static declaration for the global variable
that contains the target solution.
2004-05-05 09:31 stewartadcock
* util/gaul/gaul_util.h: Avoid redefinition of bool.
2004-05-05 09:28 stewartadcock
* util/gaul/gaul_util.h: Avoid redefinition of _GNU_SOURCE
preprocessor constant.
2004-05-05 09:25 stewartadcock
* util/gaul/gaul_util.h: Removed unused warn macro.
2004-05-04 15:35 stewartadcock
* examples/struggle.c, examples/struggle2.c, examples/struggle3.c,
examples/struggle4.c, examples/struggle5.c,
examples/struggle5_forked.c, examples/struggle5_mp.c,
examples/struggle_dc.c, examples/struggle_forked.c,
examples/struggle_mp.c, examples/struggle_randomsearch.c,
examples/struggle_ss.c, examples/struggle_systematicsearch.c,
examples/struggle_threaded.c, util/gaul/gaul_config.h: Declaration
of the variable holding the target string in the struggle examples
is now static.
2004-05-04 15:21 stewartadcock
* config.status, configure, configure.in, src/ga_core.c,
src/ga_optim.c, src/ga_qsort.c, src/gaul/ga_core.h,
util/gaul/gaul_config.h, util/gaul/gaul_config.h.in,
util/gaul/gaul_config_win.h, util/gaul/gaul_util.h: More OpenMP
directives added.
2004-05-04 15:17 stewartadcock
* src/ga_qsort.c: Tweaked sort function.
2004-05-04 14:42 stewartadcock
* util/: gaul/compatibility.h, compatibility.c: Removed unneeded
memdup() function.
2004-05-04 10:52 stewartadcock
* src/gaul.h: Fixed minor typo.
2004-05-04 10:29 stewartadcock
* LatestChanges, Makefile, Makefile.in, config.h, config.h.in,
config.status, configure, configure.in, libtool, debian/Makefile,
examples/Makefile, examples/Makefile.in, src/Makefile,
src/Makefile.in, src/ga_core.c, src/ga_optim.c, src/ga_utility.c,
src/gaul.h, src/gaul/ga_core.h, tests/Makefile, tests/Makefile.in,
util/Makefile, util/Makefile.in, util/avltree.c, util/linkedlist.c,
util/memory_chunks.c, util/memory_util.c, util/nn_util.c,
util/random_util.c, util/gaul/avltree.h, util/gaul/gaul_config.h,
util/gaul/gaul_util.h, util/gaul/linkedlist.h,
util/gaul/memory_chunks.h, util/gaul/memory_util.h: OpenMP
parallelisation added.
2004-05-04 09:32 stewartadcock
* util/gaul/random_util.h: Added two missing function declarations.
2004-04-29 16:41 stewartadcock
* LatestChanges: Copyediting
2004-04-29 16:34 stewartadcock
* tests/Makefile, util/Makefile, util/compatibility.c,
util/gaul/compatibility.h: Resolving some FIXMEs
2004-04-29 16:34 stewartadcock
* Makefile, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile: Resolving some FIXMEs.
2004-04-29 16:22 stewartadcock
* LatestChanges, src/ga_intrinsics.c, src/ga_mutate.c,
src/ga_optim.c, src/ga_similarity.c, src/gaul.h, util/linkedlist.c:
Removed some deprecated functions. Some code and comment tidying.
2004-04-29 15:59 stewartadcock
* LatestChanges, src/ga_core.c, src/ga_io.c, src/gaul.h: Added
sanity checking into ga_get_entity_from_rank(). Also deleted code
relating to usused ga_genesis_t and deprecated soup files.
2004-04-29 15:46 stewartadcock
* LatestChanges, config.status, configure, src/ga_core.c,
util/gaul/gaul_config.h: Added sanity checking into
ga_get_entity_from_rank().
2004-04-29 15:21 stewartadcock
* ChangeLog, debian/Makefile, examples/Makefile, src/Makefile,
src/ga_core.c, src/ga_gradient.c, src/ga_intrinsics.c, src/ga_io.c,
src/ga_optim.c, src/ga_qsort.c, src/gaul.h, tests/Makefile,
util/Makefile, util/avltree.c, util/nn_util.c, util/gaul/avltree.h,
util/gaul/gaul_config.h, util/gaul/gaul_util.h,
util/gaul/memory_chunks.h, util/gaul/memory_util.h: Added a
configure option to make use of Intel's icc compiler's
autoparallelisation features more easily. Also adjusted code to
reduce number of remarks/warnings given upon compilation.
2004-04-29 15:14 stewartadcock
* LatestChanges, Makefile, config.h, config.status, configure,
configure.in, libtool: Added a configure option to make use of
Intel's icc compiler's autoparallelisation features more easily.
Also adjusted code to reduce number of remarks/warnings given upon
compilation.
2004-04-27 11:38 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_simplex.c, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h,
util/gaul/gaul_config_win.h: Bumped patch version to 7.
2004-04-27 11:07 stewartadcock
* util/gaul/gaul_util.h: VOID macro not used anywhere, so removed
definition.
2004-04-27 10:54 stewartadcock
* LatestChanges, src/ga_core.c, src/ga_gradient.c, src/ga_optim.c,
src/ga_simplex.c: Avoid the use of several reserved C
keywords/identifiers in source.
2004-04-27 10:23 stewartadcock
* LatestChanges, examples/royalroad.c,
examples/royalroad_bitstring.c, examples/royalroad_ss.c,
examples/struggle3.c, src/ga_core.c, src/ga_optim.c,
src/ga_select.c, util/memory_util.c, util/gaul/gaul_util.h: Avoid
use of several reserved C keywords/identifiers in source.
2004-04-27 10:03 stewartadcock
* util/gaul/gaul_util.h: ERROR is a reserved macro name, and not
used by GAUL anyway, so removed definition.
2004-04-27 09:04 stewartadcock
* LatestChanges, src/ga_io.c, util/gaul/gaul_config_win.h,
util/gaul/gaul_util.h: Various fixes for using native Windows I/O
functions on Windows platforms.
2004-04-26 14:30 stewartadcock
* src/ga_io.c, util/gaul/gaul_util.h: Native Windows I/O fixes.
2004-04-23 15:42 stewartadcock
* util/memory_util.c: Use zd format for size_t types in printf
statements.
2004-04-23 15:18 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
debian/Makefile, examples/Makefile, src/Makefile, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h: Fixed configure script for
non-MPI systems. Default MPI processes is now 8.
2004-04-21 15:49 stewartadcock
* examples/struggle_mp.c, src/ga_qsort.c: Modified an exit return
value.
2004-04-21 11:09 stewartadcock
* debian/Makefile, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/struggle_mp.c, src/Makefile,
src/ga_optim.c, src/gaul/ga_optim.h, tests/Makefile,
tests/Makefile.am, tests/Makefile.in, util/Makefile,
util/gaul/gaul_config.h: ga_evolution_archipelago_threaded() stub
added. Some refinement of MPI code compilation.
2004-04-21 11:05 stewartadcock
* Makefile, config.h, config.status, configure, configure.in:
ga_evolution_archipelago_threaded() stub added. Some refinement of
MPI code compilation.
2004-04-20 10:18 stewartadcock
* LatestChanges, src/ga_climbing.c, src/ga_deterministiccrowding.c,
src/ga_gradient.c, src/ga_optim.c, src/ga_randomsearch.c,
src/ga_sa.c, src/ga_simplex.c, src/ga_systematicsearch.c,
src/ga_tabu.c: Altered error messages that mentioned the deprecated
ga_genesis().
2004-04-15 13:34 stewartadcock
* LatestChanges, config.h, config.status, examples/Makefile,
examples/Makefile.am, examples/Makefile.in, examples/struggle.c,
examples/struggle_forked.c, examples/struggle_threaded.c,
src/ga_optim.c, src/gaul/ga_core.h, util/gaul/gaul_config.h:
Various threading fixes.
2004-04-06 15:22 stewartadcock
* AUTHORS: Fixed a typo.
2004-04-06 15:15 stewartadcock
* LatestChanges, util/memory_chunks.c: Fixed compilation on IRIX
with the MIPSpro compiler.
2004-04-06 15:03 stewartadcock
* Makefile, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/avltree.c, util/memory_chunks.c, util/memory_util.c,
util/gaul/gaul_util.h: Clean compilation on IRIX with the MIPSpro
compiler.
2004-04-05 20:46 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Bumped patch version to 6.
2004-04-05 19:10 stewartadcock
* LatestChanges, Makefile, Makefile.in, src/ga_core.c,
util/memory_chunks.c, util/memory_util.c: Fixed long-standing
memory chunk bug exhibited on Solaris, IRIX, HP/UX and possibly
other (64-bit) OSes.
2004-04-05 18:08 stewartadcock
* src/ga_core.c: Added new functions into the function lookup
table.
2004-04-05 15:08 stewartadcock
* AUTHORS, Makefile, Makefile.am, Makefile.in, config.guess,
config.h, config.status, config.sub, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, ltmain.sh,
debian/Makefile, examples/Makefile, src/Makefile, src/Makefile.am,
src/Makefile.in, src/ga_gradient.c, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Bumped patch version. Some minor fixes
for compilation on IRIX.
2004-04-05 14:07 stewartadcock
* tests/diagnostics.c: Fixed diagnostics.c problems caused of
undefined preprocessor constants.
2004-04-05 10:14 stewartadcock
* util/avltree.c: Minor tidy.
2004-04-01 11:12 stewartadcock
* ChangeLog, Makefile, Makefile.am, Makefile.in, config.h,
config.status, debian/Makefile, examples/Makefile,
examples/Makefile.am, examples/Makefile.in, examples/nnevolve.c,
src/Makefile, src/Makefile.am, src/Makefile.in,
src/ga_similarity.c, tests/Makefile, tests/Makefile.am,
tests/Makefile.in, util/Makefile, util/gaul/gaul_config.h: Some
minor changes for successfully building a distribution tarball.
2004-03-29 13:16 stewartadcock
* LatestChanges, Makefile, config.h, config.status, configure,
configure.in, gaul-devel-noslang.spec, gaul-devel.spec, libtool,
examples/Makefile, examples/fitting_simplex.c,
examples/test_simplex.c, src/Makefile, src/ga_simplex.c,
src/gaul/ga_core.h, src/gaul/ga_simplex.h, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h: Initial step size for
simplex added to ga_population_set_simplex_parameters() parameters.
Patch version bumped up to 4.
2004-03-25 16:04 stewartadcock
* src/ga_simplex.c: Added a comment indicating a future enhancement
that will be useful.
2004-03-25 09:47 stewartadcock
* LatestChanges, examples/goldberg1.c, examples/goldberg2.c,
examples/pingpong.c, examples/pingpong9.c, examples/pingpong_sa.c,
examples/pingpong_tabu.c, examples/pingpong_tabu2.c,
examples/wildfire.c, examples/wildfire_forked.c,
examples/wildfire_loadbalancing.c, src/ga_utility.c, src/gaul.h:
*** API CHANGE *** ga_genesis_int() renamed to ga_genesis_integer()
for consistency with remainder of integer function names.
2004-03-23 14:33 stewartadcock
* LatestChanges, Makefile, Makefile.am, Makefile.in, config.h,
config.status, configure, configure.in, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_select.c, src/gaul.h,
tests/Makefile, util/Makefile, util/gaul/gaul_config.h: Added two
new selection criteria, based on Stochastic Universal Sampling;
ga_select_one_sussq() and ga_select_two_sussq().
2004-03-19 14:20 stewartadcock
* LatestChanges, examples/fitting.c, examples/fitting_sd.c,
examples/fitting_simplex.c, src/ga_select.c, src/ga_simplex.c:
Tweaked fitting, fitting_sd and fitting_simplex examples.
2004-03-19 10:22 stewartadcock
* LatestChanges, Makefile, config.h, config.status, configure,
configure.in, gaul-devel-noslang.spec, gaul-devel.spec, libtool,
debian/Makefile, examples/Makefile, examples/fitting.c,
src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Synchronising with my version.
2003-11-14 15:57 stewartadcock
* LatestChanges, src/ga_select.c, tests/diagnostics.c,
util/gaul/log_util.h: Clean compilation on gcc3.2
2003-11-14 14:56 stewartadcock
* Makefile, config.h, config.status, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_select.c, tests/Makefile,
util/Makefile, util/gaul/compatibility.h, util/gaul/gaul_config.h,
util/gaul/log_util.h: Fixes for clean(er) compilation.
2003-10-30 21:16 stewartadcock
* AUTHORS, LatestChanges, util/gaul/gaul_util.h: Fixed incorrect
inclusion of stdbool.h on FreeBSD. -- patch submitted by
Ying-Chieh Liao.
2003-10-30 12:42 stewartadcock
* src/ga_similarity.c: Fixed incorrect comments.
2003-10-30 12:06 stewartadcock
* src/ga_similarity.c: Fixed/clarified some incorect comments.
2003-10-30 12:06 stewartadcock
* LatestChanges: Fixed/clarified some incorrect comments.
2003-10-20 10:45 stewartadcock
* LatestChanges, src/ga_select.c, src/gaul.h: Added
ga_select_one_linearrank() and ga_select_two_linearrank(), a
selection operator based on a linear probability distribution with
respect to rank.
2003-09-26 15:00 stewartadcock
* LatestChanges, util/gaul/gaul_util.h: Changed license/copyright
details
2003-09-26 14:58 stewartadcock
* LatestChanges, util/avltree.c, util/linkedlist.c,
util/log_util.c, util/memory_chunks.c, util/memory_util.c,
util/nn_util.c, util/random_util.c, util/table_util.c,
util/timer_util.c, util/gaul/avltree.h, util/gaul/compatibility.h,
util/gaul/linkedlist.h, util/gaul/log_util.h,
util/gaul/memory_chunks.h, util/gaul/memory_util.h,
util/gaul/nn_util.h, util/gaul/random_util.h,
util/gaul/table_util.h, util/gaul/timer_util.h: Deleted redundant
"last updated" comments.
2003-09-23 15:47 stewartadcock
* LatestChanges, Makefile, Makefile.in, ROADMAP, config.h,
config.h.in, config.status, configure, configure.in,
debian/Makefile, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/struggle5_mp.c,
examples/struggle_mp.c, src/Makefile, src/Makefile.in,
src/ga_core.c, src/ga_optim.c, src/gaul.h, src/gaul/ga_core.h,
tests/Makefile, tests/Makefile.in, tests/diagnostics.c,
util/Makefile, util/Makefile.in, util/compatibility.c,
util/log_util.c, util/mpi_util.c, util/mpi_util_fake.c,
util/gaul/avltree.h, util/gaul/compatibility.h,
util/gaul/gaul_config.h, util/gaul/linkedlist.h,
util/gaul/log_util.h, util/gaul/memory_chunks.h,
util/gaul/memory_util.h, util/gaul/mpi_util.h, util/gaul/nn_util.h,
util/gaul/random_util.h, util/gaul/table_util.h,
util/gaul/timer_util.h: Extensive parallel code rewrite. Still
incomplete. Nontheless, examples/struggle5_mp works well.
2003-09-23 10:35 stewartadcock
* src/gaul/ga_chromo.h: Include gaul.h header rather than ga_core.h
header.
2003-09-22 14:59 stewartadcock
* LatestChanges, Makefile, config.h, config.h.in, config.status,
configure, configure.in, gaul-devel-noslang.spec, gaul-devel.spec,
libtool, debian/Makefile, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/struggle5_mp.c, src/Makefile,
src/ga_core.c, src/ga_optim.c, src/gaul/ga_optim.h, tests/Makefile,
util/Makefile, util/Makefile.am, util/Makefile.in,
util/gaul/gaul_config.h: Much MPI stuff stripped out and/or tidied.
First part of the MPI rewrite.
2003-09-17 15:12 stewartadcock
* util/: gaul/compatibility.h, compatibility.c: Removed some
unneeded or unnecessary code.
2003-09-10 14:27 stewartadcock
* LatestChanges, Makefile, config.h, config.status, libtool,
debian/Makefile, examples/Makefile, src/Makefile, src/ga_mutate.c,
src/gaul.h, tests/Makefile, util/Makefile, util/gaul/gaul_config.h:
Added some new mutation functions.
2003-09-10 09:55 stewartadcock
* src/gaul.h: Reordered crossover functions for clarity.
2003-09-07 11:27 stewartadcock
* LatestChanges, Makefile, config.h, config.status, libtool,
debian/Makefile, examples/Makefile, src/Makefile,
src/ga_bitstring.c, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Tweaked bitstring code.
2003-09-03 15:31 stewartadcock
* LatestChanges: Updated LatestChanges.
2003-09-03 15:30 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h, util/gaul/gaul_config_win.h: Bumped up
patch level.
2003-09-03 15:20 stewartadcock
* config.h, config.status, util/Makefile, util/Makefile.am,
util/Makefile.in, util/nn_util.c, util/str_match.c,
util/str_util.c, util/gaul/gaul_config.h, util/gaul/log_util.h,
util/gaul/nn_util.h, util/gaul/str_match.h, util/gaul/str_util.h:
Removed unneeded string handling functions.
2003-08-27 17:56 stewartadcock
* debian/changelog: debian package updates.
2003-08-27 17:54 stewartadcock
* ROADMAP: debian package update.
2003-08-27 10:56 stewartadcock
* config.status, configure, configure.in, examples/Makefile,
src/Makefile, tests/Makefile, util/Makefile: Corrected previous
alpha "fix".
2003-08-27 10:48 stewartadcock
* LatestChanges, Makefile, aclocal.m4, config.h, config.status,
configure, configure.in, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/Makefile.am, util/Makefile.in, util/gaul/gaul_config.h: Final
preparations for new release: 0.1846
2003-08-26 16:49 stewartadcock
* util/gaul/gaul_config_win.h, windows/README.TXT: MS Windows stuff
added to repository.
2003-08-26 16:21 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, examples/Makefile.in, src/Makefile,
src/ga_core.c, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Initial preparations for new GAUL release
0.1846.
2003-08-22 08:44 stewartadcock
* examples/mixed.c: Fixed some erronerous comments.
2003-08-21 18:57 stewartadcock
* examples/mixed.c: Previous addition of examples/mixed.c didn't
seem to actually add it.
2003-08-21 17:51 stewartadcock
* tests/test_slang.sl: Fixed some erronerous comments.
2003-08-20 22:01 stewartadcock
* LatestChanges, examples/Makefile, examples/Makefile.am,
examples/Makefile.in: Added examples/mixed.c, an example of mixed
chromosome types.
2003-08-20 22:00 stewartadcock
* src/ga_optim.c: Avoid mutation/crossover loops if the respective
probabilites are set to zero.
2003-08-20 10:43 stewartadcock
* Makefile, aclocal.m4, config.h, config.status, configure,
libtool, debian/Makefile, examples/Makefile, examples/Makefile.in,
src/Makefile, src/ga_core.c, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Have really fixed that deterministic
crowding segfault now!
2003-08-20 09:58 stewartadcock
* LatestChanges, Makefile, config.status, libtool, debian/Makefile,
examples/Makefile, src/Makefile, src/ga_core.c, src/ga_io.c,
src/gaul/ga_core.h, tests/Makefile, util/Makefile: Fixed
occassional segfault in deterministic crowding code.
2003-08-19 16:27 stewartadcock
* Makefile, ROADMAP, config.h, config.status, configure,
configure.in, gaul-devel-noslang.spec, gaul-devel.spec, libtool,
debian/Makefile, examples/Makefile, src/Makefile, tests/Makefile,
util/Makefile, util/gaul/gaul_config.h,
util/gaul/gaul_config_win.h: Bumped patch version. Updated
roadmap.
2003-08-19 15:38 stewartadcock
* util/gaul/gaul_config_win.h: Include io.h
2003-08-19 15:18 stewartadcock
* LatestChanges, src/ga_optim.c, src/ga_utility.c: Prevent some
deprecated functions from being compiled.
2003-08-19 14:41 stewartadcock
* LatestChanges, Makefile, config.h, config.status,
debian/Makefile, examples/Makefile, src/Makefile, src/ga_core.c,
src/gaul/ga_optim.h, tests/Makefile, tests/Makefile.am,
tests/Makefile.in, tests/test_slang.c, tests/test_slang.sl,
util/Makefile, util/gaul/gaul_config.h: Added S-Lang test/example
code.
2003-08-19 14:40 stewartadcock
* src/ga_intrinsics.c: Added a couple of missing S-Lang intrinsic
functions.
2003-08-19 14:38 stewartadcock
* src/ga_optim.c: Display message if ga_evolution_threaded() not
compiled.
2003-08-18 12:21 stewartadcock
* LatestChanges, src/ga_io.c, util/gaul/gaul_config_win.h: Added
versions of disk i/o functions using MS Windows API instead of
POSIX API.
2003-08-16 09:53 stewartadcock
* LatestChanges, Makefile, config.h, config.status, configure,
debian/Makefile, examples/Makefile, src/Makefile, src/Makefile.am,
src/Makefile.in, src/ga_core.c, src/ga_io.c, src/gaul.h,
tests/Makefile, util/Makefile, util/gaul/gaul_config.h: Split disk
i/o functions into their own source file to facilitate a future
native windows port.
2003-08-14 00:55 stewartadcock
* LatestChanges, configure, libtool, examples/Makefile,
examples/Makefile.am, examples/Makefile.in, examples/btree.c,
examples/btree.h: removed unused binary tree code.
2003-08-14 00:12 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, examples/Makefile.in, src/Makefile,
tests/Makefile, util/Makefile, util/gaul/gaul_config.h,
util/gaul/gaul_config_win.h: Bumped patch version.
2003-08-14 00:08 stewartadcock
* LatestChanges, util/gaul/gaul_config_win.h,
util/gaul/gaul_util.h: Applied the minor changes required for
compilation with Dev-C++ on MS Windows.
2003-08-13 21:09 stewartadcock
* util/mpi_util_fake.c: Fixed include path.
2003-08-13 10:41 stewartadcock
* LatestChanges, util/Makefile, util/Makefile.am, util/Makefile.in,
util/dstr_util.c, util/gaul/dstr_util.h: Removed unused dynamic
string handling code.
2003-08-13 10:32 stewartadcock
* LatestChanges, Makefile, Makefile.in, config.h, config.h.in,
config.status, configure, configure.in, debian/Makefile,
examples/Makefile, examples/Makefile.in, src/Makefile,
src/Makefile.in, src/ga_core.c, src/ga_utility.c, tests/Makefile,
tests/Makefile.in, util/Makefile, util/Makefile.in, util/avltree.c,
util/dstr_util.c, util/linkedlist.c, util/memory_chunks.c,
util/nn_util.c, util/random_util.c, util/table_util.c,
util/timer_util.c, util/gaul/gaul_config.h: Prepended "GA_" to some
constants' names to reduce occurrance of clashes with external
code.
2003-08-08 09:32 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
libtool, debian/Makefile, examples/Makefile, examples/Makefile.in,
src/Makefile, src/gaul/ga_core.h, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h, util/gaul/gaul_util.h,
util/gaul/log_util.h: Some changes to reduce the number of warnings
produced with the icc '-w2' switch.
2003-08-01 14:49 stewartadcock
* src/gaul/ga_core.h: Fiddling with comments.
2003-08-01 00:24 stewartadcock
* src/ga_simplex.c: Fixed minor typo in comments.
2003-07-26 11:05 stewartadcock
* LatestChanges, Makefile, config.h, config.status, configure,
libtool, debian/Makefile, examples/Makefile, examples/Makefile.in,
src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h, util/gaul/gaul_util.h,
util/gaul/log_util.h, util/gaul/mpi_util.h: Merged ISO C99 changes.
2003-07-25 15:44 stewartadcock
* LatestChanges, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/onemax.c: Added onemax example.
2003-07-25 15:30 stewartadcock
* LatestChanges, examples/Makefile.am, examples/g_dejong.c,
examples/goldberg1.c, examples/goldberg2.c, examples/pingpong.c,
examples/pingpong9.c, examples/pingpong_sa.c,
examples/pingpong_tabu.c, examples/pingpong_tabu2.c,
examples/royalroad.c, examples/royalroad_bitstring.c,
examples/royalroad_ss.c, examples/wildfire.c,
examples/wildfire_forked.c, examples/wildfire_loadbalancing.c:
Removed use of the deprecated ga_genesis() function from the
example functions.
2003-07-25 15:15 stewartadcock
* LatestChanges, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/diagnostics.c, tests/Makefile,
tests/Makefile.am, tests/Makefile.in, tests/diagnostics.c,
tests/test_bitstrings.c, tests/test_prng.c, tests/test_utils.c:
Added a minimal test suite.
2003-07-25 13:57 stewartadcock
* Makefile, aclocal.m4, config.h, config.status, configure,
libtool, debian/Makefile, examples/Makefile, examples/Makefile.in,
src/Makefile, src/ga_bitstring.c, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Fixed long-standing grey-encoded bitstring
bug.
2003-07-24 15:14 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool, debian/Makefile,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Bumped up patch level.
2003-07-24 15:11 stewartadcock
* Makefile, Makefile.am, Makefile.in, config.status, configure,
configure.in, debian/Makefile, debian/Makefile.am, debian/files:
Debian files now distributable.
2003-07-24 12:50 stewartadcock
* Makefile, aclocal.m4, config.h, config.status, configure,
configure.in, gaul-devel-noslang.spec, gaul-devel.spec, libtool,
examples/Makefile, examples/Makefile.in, src/Makefile,
tests/Makefile, util/Makefile, util/gaul/gaul_config.h,
util/gaul/gaul_util.h: Prepare for release 0.1845
2003-07-24 12:46 stewartadcock
* src/ga_bitstring.c, LatestChanges: Fixed misplaced s_free() call.
2003-07-23 13:39 stewartadcock
* config.h, config.h.in, config.status, configure, configure.in,
src/gaul/ga_core.h, util/compatibility.c,
util/gaul/compatibility.h: Tweaked some defines to avoid unlikely
syntax problems.
2003-07-21 14:30 stewartadcock
* src/ga_gradient.c, src/ga_simplex.c, src/ga_utility.c,
util/avltree.c, util/timer_util.c: Some cosmetic code changes.
2003-07-21 09:48 stewartadcock
* examples/nnevolve.c, util/nn_util.c: Fixed some of the copyright
comments.
2003-07-17 15:14 stewartadcock
* examples/wildfire_loadbalancing.c: 4 processors rather than 2.
2003-07-16 22:34 stewartadcock
* LatestChanges, Makefile, Makefile.am, Makefile.in, config.h,
config.status, configure.in, gaul-devel-noslang.spec,
gaul-devel.spec, examples/Makefile, examples/Makefile.am,
examples/Makefile.in, examples/btree.c, examples/btree.h,
examples/chromostubs.c, examples/chromostubs.h, examples/dejong.c,
examples/dejong.h, examples/diagnostics.c, examples/fitting.c,
examples/fitting_sd.c, examples/fitting_simplex.c,
examples/g_dejong.c, examples/goldberg1.c, examples/goldberg1.h,
examples/goldberg2.c, examples/goldberg2.h, examples/nnevolve.c,
examples/pingpong.c, examples/pingpong.h, examples/pingpong9.c,
examples/pingpong_sa.c, examples/pingpong_tabu.c,
examples/pingpong_tabu2.c, examples/royalroad.c,
examples/royalroad_bitstring.c, examples/royalroad_ss.c,
examples/saveload.c, examples/struggle.c, examples/struggle2.c,
examples/struggle3.c, examples/struggle4.c, examples/struggle5.c,
examples/struggle5_forked.c, examples/struggle5_mp.c,
examples/struggle_dc.c, examples/struggle_forked.c,
examples/struggle_randomsearch.c, examples/struggle_ss.c,
examples/struggle_systematicsearch.c, examples/test_ga.c,
examples/test_sd.c, examples/test_simplex.c, examples/wildfire.c,
examples/wildfire.h, examples/wildfire_forked.c,
examples/wildfire_loadbalancing.c, src/Makefile, src/Makefile.am,
src/Makefile.in, src/ga_bitstring.c, src/ga_chromo.c,
src/ga_climbing.c, src/ga_compare.c, src/ga_core.c,
src/ga_crossover.c, src/ga_deterministiccrowding.c,
src/ga_gradient.c, src/ga_intrinsics.c, src/ga_mutate.c,
src/ga_optim.c, src/ga_qsort.c, src/ga_randomsearch.c,
src/ga_replace.c, src/ga_sa.c, src/ga_seed.c, src/ga_select.c,
src/ga_similarity.c, src/ga_simplex.c, src/ga_stats.c,
src/ga_systematicsearch.c, src/ga_tabu.c, src/ga_utility.c,
src/gaul.h, src/gaul/ga_bitstring.h, src/gaul/ga_chromo.h,
src/gaul/ga_climbing.h, src/gaul/ga_core.h,
src/gaul/ga_deterministiccrowding.h, src/gaul/ga_gradient.h,
src/gaul/ga_intrinsics.h, src/gaul/ga_optim.h, src/gaul/ga_qsort.h,
src/gaul/ga_randomsearch.h, src/gaul/ga_sa.h, src/gaul/ga_search.h,
src/gaul/ga_similarity.h, src/gaul/ga_simplex.h,
src/gaul/ga_systematicsearch.h, src/gaul/ga_tabu.h,
src/gaul/ga_utility.h, tests/Makefile, tests/Makefile.am,
tests/Makefile.in, util/Makefile, util/Makefile.am,
util/Makefile.in, util/avltree.c, util/compatibility.c,
util/dstr_util.c, util/linkedlist.c, util/log_util.c,
util/log_util_parallel.c, util/memory_chunks.c, util/memory_util.c,
util/mpi_util.c, util/mpi_util_fake.c, util/nn_util.c,
util/random_util.c, util/str_match.c, util/str_util.c,
util/table_util.c, util/timer_util.c, util/gaul/gaul_config.h,
util/gaul/gaul_config.h.in: Changed the website referenced in
source comments to http://gaul/sourceforge.net/
2003-07-09 15:37 stewartadcock
* Makefile, config.h, config.status, configure, configure.in,
gaul-devel-noslang.spec, gaul-devel.spec, libtool,
examples/Makefile, src/Makefile, tests/Makefile, util/Makefile,
util/gaul/gaul_config.h: Bumped-up patch number.
2003-07-09 15:26 stewartadcock
* LatestChanges, src/ga_qsort.c: Custom timer code removed from
sorting routines.
2003-07-09 15:23 stewartadcock
* src/Makefile, src/Makefile.am, src/Makefile.in, util/Makefile,
util/Makefile.am, util/Makefile.in: Gaul headers now installed in
$(includedir)/gaul/
2003-07-09 15:16 stewartadcock
* src/gaul/ga_bitstring.h, src/gaul/ga_chromo.h,
src/gaul/ga_climbing.h, src/gaul/ga_core.h,
src/gaul/ga_deterministiccrowding.h, src/gaul/ga_gradient.h,
src/gaul/ga_intrinsics.h, src/gaul/ga_optim.h, src/gaul/ga_qsort.h,
src/gaul/ga_randomsearch.h, src/gaul/ga_sa.h, src/gaul/ga_search.h,
src/gaul/ga_similarity.h, src/gaul/ga_simplex.h,
src/gaul/ga_systematicsearch.h, src/gaul/ga_tabu.h,
src/gaul/ga_utility.h, util/gaul/avltree.h,
util/gaul/compatibility.h, util/gaul/dstr_util.h,
util/gaul/gaul_config.h, util/gaul/gaul_config.h.in,
util/gaul/gaul_util.h, util/gaul/linkedlist.h,
util/gaul/log_util.h, util/gaul/memory_chunks.h,