https://github.com/jsollari/popABC
Raw File
Tip revision: 3ebe7b76043299bc4b6a541b5be0d7012895ca1c authored by Joao Sollari Lopes on 21 November 2017, 15:04:40 UTC
remove binaries folder
Tip revision: 3ebe7b7
firstpass.h
/*
	@author:	joao lopes
	@workplace: Reading University
	@date: 		1st May 2009

*/
#ifndef FIRSTPASS_H_
#define FIRSTPASS_H_

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <time.h>

#include "mylib.h"

#define MAXNPRIOR 10000		//maximum number of parameter values to be stored
#define MAXDATA 250000000	//maximum number of data (nparam+nstats)*nsim to be analysed

static int RecLine = 500000;//record step per lines analysed

#endif /*FIRSTPASS_H_*/
back to top