source: branches/stable/GDE/MAFFT/mafft-7.055-with-extensions/core/fft.h

Last change on this file was 10371, checked in by aboeckma, 11 years ago

updated mafft version. Added extensions (no svn ignore, yet)

File size: 287 bytes
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include <stddef.h>
4#include <math.h>
5#include "mtxutl.h"
6
7#define PI 3.14159265358979323846
8#define END_OF_VEC -1
9
10#define NKOUHO   20
11#define NKOUHO_LONG   500
12
13#define MAX(X,Y)    ( ((X)>(Y))?(X):(Y) )
14#define MIN(X,Y)    ( ((X)<(Y))?(X):(Y) )
15
Note: See TracBrowser for help on using the repository browser.