https://github.com/stamatak/standard-RAxML
Revision 69a7edcba961f95f732e07ce64e7e5b1c7ae548b authored by Alexis Stamatakis on 04 October 2023, 07:33:55 UTC, committed by GitHub on 04 October 2023, 07:33:55 UTC
Add Linux ARM64 for the Makefile.SSE3.** configs
2 parent s 685b4f0 + 981d716
Raw File
Tip revision: 69a7edcba961f95f732e07ce64e7e5b1c7ae548b authored by Alexis Stamatakis on 04 October 2023, 07:33:55 UTC
Merge pull request #71 from martin-g/linux-arm64-support-2
Tip revision: 69a7edc
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