OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
MatchLimits.h
Go to the documentation of this file.
1 #ifndef OPAL_MatchLimits_HH
2 #define OPAL_MatchLimits_HH 1
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: MatchLimits.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Enum MatchLimits:
13 //
14 // ------------------------------------------------------------------------
15 //
16 // $Date: 2000/03/27 09:33:44 $
17 // $Author: Andreas Adelmann $
18 //
19 // ------------------------------------------------------------------------
20 
21 
22 // Enum MatchLimits
23 // Possible limits for matching variables and constraints.
24 // Note: LOWER_LIMIT + UPPER_LIMIT == BOTH_LIMITS.
25 // ------------------------------------------------------------------------
27 
28 enum {
29  NO_LIMIT = 0, // No limits present.
30  LOWER_LIMIT = 1, // Lower limit only.
31  UPPER_LIMIT = 2, // Upper limit only.
32  BOTH_LIMITS = 3, // Interval limits.
33  EQUALITY = 4 // Equality prescribed.
34 };
35 
36 #endif // OPAL_MatchLimits_HH
37