• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

gaul/H22-Apr-2005-1,340490

Makefile.amH A D20-Apr-20052.4 KiB9051

Makefile.inH A D20-Apr-200520.4 KiB626526

READMEH A D03-Jan-20031.3 KiB4724

ga_bitstring.cH A D06-Oct-200418 KiB690299

ga_chromo.cH A D12-Apr-200536.5 KiB1,237611

ga_climbing.cH A D18-Feb-20058.8 KiB294124

ga_compare.cH A D24-Feb-200512.3 KiB396171

ga_core.cH A D12-Apr-200596.6 KiB3,2391,488

ga_crossover.cH A D18-Jun-200437.6 KiB1,179663

ga_de.cH A D12-Apr-200528.7 KiB710494

ga_deterministiccrowding.cH A D18-Feb-20059 KiB283144

ga_gradient.cH A D14-Apr-200514.4 KiB415192

ga_intrinsics.cH A D21-Mar-200548.7 KiB1,491645

ga_io.cH A D11-Apr-200532.8 KiB974518

ga_mutate.cH A D18-Feb-200529.3 KiB1,013521

ga_optim.cH A D24-Feb-2005166.9 KiB5,5723,170

ga_qsort.cH A D24-Feb-200511.8 KiB447253

ga_randomsearch.cH A D20-Apr-20044.1 KiB13948

ga_rank.cH A D24-Feb-20052.2 KiB648

ga_replace.cH A D17-Jul-20032.8 KiB9229

ga_sa.cH A D22-Apr-20059.1 KiB291123

ga_seed.cH A D18-Feb-200511.1 KiB389170

ga_select.cH A D23-Aug-200436.1 KiB1,224588

ga_similarity.cH A D29-Apr-200423 KiB648278

ga_simplex.cH A D14-Apr-200530.3 KiB983498

ga_stats.cH A D07-Jul-20045.4 KiB16271

ga_systematicsearch.cH A D18-Feb-20054.8 KiB16056

ga_tabu.cH A D28-Feb-200514.2 KiB483256

ga_utility.cH A D12-Apr-200523.6 KiB812444

gaul.hH A D12-Apr-200533.3 KiB627419

README

1gaul-devel/src/README
2=====================
3
4This directory contains the core GAUL source-code.  The files are:
5
6gaul.h                 The public header file to be included in source code
7                       which will link against the GAUL library.
8
9ga_core.{c,h}          Population and entity handling routines.
10
11ga_bitstring.{c,h}     Low-level bitstring handling functions.
12
13ga_chromo.c            Built-in chromosome handling routines.
14
15ga_utility.{c,h}       High level GA and convenience routines.
16
17ga_similarity.{c,h}    Entity and chromosome similarity measures.
18
19ga_select.c            Selection operators.
20
21ga_seed.c              Initialisation operators.
22
23ga_sa.{c,h}            Simulated Annealling optimisation functions.
24
25ga_stats.c             Convenience statistical functions.
26
27ga_tabu.{c,h}          Tabu Search functions.
28
29ga_climbing.{c,h}      Hill climbing optimisation functions.
30
31ga_simplex.{c,h}       Simplex search functions.
32
33ga_replace.c           Crowding, elimination and elitism operators.
34
35ga_qsort.{c,h}         Functions used internally to sort entities by fitness.
36
37ga_optim.{c,h}         Evolutionary optimisation functions.
38
39ga_mutate.c            Mutation operators.
40
41ga_intrinsics.{c,h}    Definition of S-Lang intrinsic functions.
42
43ga_crossover.c         Crossover operators.
44
45Stewart Adcock, 30 October 2002
46
47