1 /* $Id: diagdef.h 157221 2015-01-22 18:38:57Z twu $ */
2 #ifndef DIAGDEF_INCLUDED
3 #define DIAGDEF_INCLUDED
4 
5 #include "bool.h"
6 
7 #define T Diag_T
8 struct T {
9   Chrpos_T diagonal;
10   int querystart;
11   int queryend;
12   int nconsecutive;
13   bool dominatedp;
14   double score;
15 };
16 
17 #undef T
18 #endif
19 
20