https://github.com/stamatak/standard-RAxML
Revision dd40860e18a04e5ad9e265fdfd552ce0c3c3adbe authored by stamatak on 05 February 2014, 12:31:19 UTC, committed by stamatak on 05 February 2014, 12:31:19 UTC
1 parent 041014c
Raw File
Tip revision: dd40860e18a04e5ad9e265fdfd552ce0c3c3adbe authored by stamatak on 05 February 2014, 12:31:19 UTC
added option to output the number of unique trees in the pairwise RF distance calculation (-f r) option
Tip revision: dd40860
rmq.h
#ifndef _rmq_h_
#define _rmq_h_

#include <math.h>

#define false 0
#define true 1

typedef int DT;                 // use long for 64bit-version (but take care of fast log!)
typedef unsigned int DTidx;     // for indexing in arrays
typedef unsigned char DTsucc;
typedef unsigned short DTsucc2;
typedef int bool;
DTidx query(DTidx, DTidx);
void RMQ_succinct(DT* a, DTidx n);
void RMQ_succinct_destroy(void);

#endif
back to top