APEMoST

src/define_defaults.h

Go to the documentation of this file.
00001 /*
00002     APEMoST - Automated Parameter Estimation and Model Selection Toolkit
00003     Copyright (C) 2009  Johannes Buchner
00004 
00005     This program is free software: you can redistribute it and/or modify
00006     it under the terms of the GNU General Public License as published by
00007     the Free Software Foundation, either version 3 of the License, or
00008     (at your option) any later version.
00009 
00010     This program is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013     GNU General Public License for more details.
00014 
00015     You should have received a copy of the GNU General Public License
00016     along with this program.  If not, see <http://www.gnu.org/licenses/>.
00017  */
00018 
00024 #ifndef N_BETA
00025 #define N_BETA 20
00026 #endif
00027 
00035 #ifndef BETA_0
00036 #define BETA_0 -0.001
00037 #endif
00038 
00041 #ifndef BURN_IN_ITERATIONS
00042 #define BURN_IN_ITERATIONS 10000
00043 #endif
00044 
00048 #ifndef ITER_LIMIT
00049 #define ITER_LIMIT 100000
00050 #endif
00051 
00054 #ifndef MUL
00055 #define MUL 0.85
00056 #endif
00057 
00063 #ifndef N_SWAP
00064 #define N_SWAP -30
00065 #endif
00066 
00067 #ifndef PARAMS_FILENAME
00068 #define PARAMS_FILENAME "params"
00069 #endif
00070 #ifndef DATA_FILENAME
00071 #define DATA_FILENAME "data"
00072 #endif
00073 
00077 #ifndef TARGET_ACCEPTANCE_RATE
00078 #define TARGET_ACCEPTANCE_RATE 0.50
00079 #endif
00080 
00084 #ifndef MAX_AR_DEVIATION
00085 #define MAX_AR_DEVIATION 0.01
00086 #endif