00001 /* 00002 * Copyright (C) 2009 Kamil Dudka <xdudka00@stud.fit.vutbr.cz> 00003 * 00004 * This file is part of nucad (Non-Uniform CA Designer). 00005 * 00006 * nucad is free software: you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation, either version 3 of the License, or 00009 * any later version. 00010 * 00011 * nucad is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with nucad. If not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 00025 #ifndef CONFIG_H 00026 #define CONFIG_H 00027 00032 #define CA_CYCLIC_NEIGHBORHOOD 1 00033 00035 #define GA_INITAL_NGEN 8192 00036 00038 #define GA_PER_FIT_NGEN 1048576 00039 00041 #define GA_PER_FIT_NGEN_POWER 10 00042 00044 #define GA_POP_SIZE 1 00045 00047 #define GA_MIN_SLNS 1024 00048 00050 #define GA_MAX_SLNS 1024 00051 00053 #define GA_MAX_RUNS 1048576 00054 00056 #define GA_MAX_TIME_PER_RUN 1200000 00057 00059 #define GA_VERBOSE_MODE 0 00060 00062 #define GA_PARTIAL_RESULTS 1 00063 00065 #define GF_INCLUDE_TRIVIAL 0 00066 00068 #define GF_INCLUDE_COMPLEX 0 00069 00070 #endif // CONFIG_H
1.5.4