OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
MatchState.h
Go to the documentation of this file.
1 #ifndef OPAL_MatchState_HH
2 #define OPAL_MatchState_HH 1
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: MatchState.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Enum MatchState:
13 //
14 // ------------------------------------------------------------------------
15 //
16 // $Date: 2000/03/27 09:33:44 $
17 // $Author: Andreas Adelmann $
18 //
19 // ------------------------------------------------------------------------
20 
21 
22 // Enum MatchState
23 // ------------------------------------------------------------------------
25 // Flag values transmitted to the match function.
26 // [b]NOTE:[/b] The order of definition of the constants matters for
27 // control of evaluation and printing.
28 
29 enum MatchState { // State print for
30  INTERNAL, // Internal call level > 2
31  PROGRESS, // New minimum found level > 1
32  START, // First call level > 0
33  RESTART, // Algorithm restarted level > 0
34  CHECK, // Check required level > 0
35  CONVERGED, // Match has converged level > 0
36  FAILED, // Match failed level > 0
37  CALL_LIMIT, // Call limit exceeded level > 0
38  ACCURACY_LIMIT, // Tolerance too small level > 0
39  TERMINATED // Terminated by user level > 0
40 };
41 
42 #endif // OPAL_MatchState_HH
MatchState
The possible states of a matching process.
Definition: MatchState.h:29