%{ #include "wisebase.h" /********************************************************/ /* Wisetools version 3 file */ /* */ /* this file is copyright (c) Ewan Birney 1996 */ /* this file is part of the wisetools sequence analysis */ /* package */ /********************************************************/ /********************************************************/ /* Variable is a structure which is shared between */ /* compile and runtime dynamite for managing variables */ /* for fast code. The data line is only present in */ /* the run-time version */ /********************************************************/ /***** RCS Info *****************************************/ /* $Id: variable.dy,v 1.1.1.1 2001/06/18 13:59:57 birney Exp $ $Log: variable.dy,v $ Revision 1.1.1.1 2001/06/18 13:59:57 birney moved wise2 to ensembl cvs repository Revision 1.1.1.1 1998/08/28 09:30:58 birney Wise2 * Revision 1.1 1996/05/02 15:29:32 birney * Initial revision * */ /********************************************************/ #define ZERO_DIMENSION 152 #define ONE_FIXED_DIMENSION 153 #define ONE_QUERY_DIMENSION 154 #define TWO_FIXED_DIMENSION 155 #define TWO_QUERY_DIMENSION 156 %} struct MatrixVariable char * name; int type; int dim1; int dim2; char * source; void * data; !link %{ #include "variable.h" %}