~ubuntu-branches/ubuntu/quantal/psicode/quantal

« back to all changes in this revision

Viewing changes to src/bin/detcas/globaldefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2006-09-10 14:01:33 UTC
  • Revision ID: james.westby@ubuntu.com-20060910140133-ib2j86trekykfsfv
Tags: upstream-3.2.3
ImportĀ upstreamĀ versionĀ 3.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
** GLOBALDEFS.H
 
3
**
 
4
** Global defines for DETCAS
 
5
**
 
6
** C. David Sherrill
 
7
** University of California, Berkeley
 
8
** April 1998
 
9
**
 
10
*/
 
11
 
 
12
#define MAX_RAS_SPACES 4
 
13
#define IOFF_MAX       10302
 
14
#define INDEX(i,j) ( (i>j) ? (ioff[(i)] + (j)): (ioff[(j)] + (i)) )
 
15
#define MIN0(a,b) (((a)<(b)) ? (a) : (b))
 
16
#define MAX0(a,b) (((a)>(b)) ? (a) : (b))
 
17
#define MAX_COMMENT 10
 
18