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

..16-Dec-2007-

MSVCPP/H07-May-2022-195193

config/H16-Dec-2007-11,2048,980

maxfct/H16-Dec-2007-930662

templates/H16-Dec-2007-7064

AUTHORSH A D30-Sep-200574 32

COPYINGH A D30-Sep-200317.6 KiB341281

INSTALLH A D02-May-20072.5 KiB8255

Makefile.amH A D04-Oct-200543 32

Makefile.cvsH A D26-Oct-200444 53

Makefile.inH A D16-Oct-200718 KiB586514

READMEH A D02-May-20071 KiB3824

acinclude.m4H A D16-Oct-200719.3 KiB604559

aclocal.m4H A D16-Oct-2007258.6 KiB7,3036,513

bootstrapH A D02-May-2007137 86

configureH A D16-Oct-2007707.9 KiB22,31417,698

configure.acH A D02-May-20071.6 KiB5142

maxfct.kdevelopH A D02-May-20075.9 KiB198197

README

1+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
2
3Function maximization (maxfct): A simple GA example with Open BEAGLE
4
5Copyright (C) 2001-2003
6by  Christian Gagne <cgagne@gmail.com>
7and Marc Parizeau <parizeau@gel.ulaval.ca>
8
9+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
10
11
12Getting started
13===============
14
15  Example is compiled in binary 'maxfct'. Usage options is described by
16  executing it with command-line argument '-OBusage'. The detailed help can
17  also be obtained with argument '-OBhelp'.
18
19Objective
20=========
21
22  Find the maximum of the following 5D function (LaTeX syntax):
23  $f(x) = \frac{161.8}{(u_N^2 \sum_{k=0}^{N-1}(x_k^2 + u_k^2))}$
24  with $x = <x_0, x_1, ..., x_{N-1}>$, $u_{k+1} = x_k + u_k$, $x_k$
25  in $[-200,200]$ for all $k$, $N = 5$ and $u_0 = 10$.
26
27Representation
28==============
29
30  Bit strings of 125 bits, constructed from the function's 5 arguments $x_i$,
31  each encoded with 25 bits on the interval $[-200,200]$.
32
33Fitness
34=======
35
36  Value of $f(x_1,x_2,x_3,x_4,x_5)$.
37
38