// global.h
// Global variables
// Thomas Pederson, 950505

#ifndef GLOBAL
#define GLOBAL

#include <limits.h>
#include <values.h>

const unsigned int nameLength = 254; // maximum length of node names

enum delete_t {deleteAll, steadyDelete};
enum cross_t {fixedPos, fixedPosSeq};
enum fitness_t {evaluation, windowing, linearNorm};

typedef int coord_t;
typedef float distance_t;
typedef float eval_t;
typedef double eval_long_t;

#endif




