The Fib multimedia system
Fib is a system for storing multimedia data (like images or films).
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
version.h
Go to the documentation of this file.
1 /**
2  * file name: version.h
3  * @author Betti Oesterholz
4  * @date 28.02.2010
5  * @mail webmaster@BioKom.info
6  *
7  * System: C++
8  *
9  * This file contains switches for the fib -enviroment.
10  * Copyright (C) @c GPL3 2010 Betti Oesterholz
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  *
25  *
26  * This file contains the versionsinformation for the fib -enviroment
27  * implementation.
28  * This includes descriptions of declarations for versioned
29  * programming switches.
30  *
31  */
32 /*
33 History:
34 26.04.2009 Oesterholz created
35 */
36 
37 
38 /**************************************
39 * Version Information
40 **************************************/
41 
42 //Versionsinformation for the fib -enviroment
43 #define FIB_ENVIROMENT_VERSION 0
44 #define FIB_ENVIROMENT_VERSION_NAME V0.0.0
45 
46 
47 
48 /**************************************
49 * versioned programming switches
50 **************************************/
51 
52 /**
53  * This feature sets a maximum for the evaluation time for the fitness
54  * with cFibObjectFitnessBasicAlgorithm.
55  *
56  * created: 28.02.2010 Betti Oesterholz
57  * Status: tested
58  *//*
59 History:
60 */
61 #define FATURE_MAX_FITNESS_EVALUATION_TIME
62 
63 
64 /**
65  * With this feature the original fib -object of the
66  * cFibObjectFitnessAlgorithm will be balanced.
67  * The value of the feature are the number of max underobjects per
68  * listelement.
69  *
70  * @see cFibObjectFitnessAlgorithm
71  * @see nBalanceLists::balanceFibTreeLists()
72  * created: 28.08.2010 Betti Oesterholz
73  * Status: tested
74  *//*
75 History:
76 */
77 //#define FEATURE_ALGORITHM_WITH_BALANCED_FIB_OBJECT 8
78 
79 
80 /**
81  * With this feature the the runEnviroment program will save also the best
82  * actual individual, with it's lists reduced with eliminateListTrees()
83  * (no listtrees).
84  *
85  * @see runEnviroment
86  * @see nBalanceLists::eliminateListTrees()
87  * created: 03.10.2010 Betti Oesterholz
88  * Status: tested
89  *//*
90 History:
91 */
92 //#define FEATURE_RUN_ENVIROMENT_SAVE_BEST_REDUCED_LIST
93 
94 
95 
96 
97 
98 
99 
100 
101 
102