libutap
0.93
Uppaal Timed Automata Parser
common.h
Go to the documentation of this file.
1
// -*- mode: C++; c-file-style: "stroustrup"; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2
3
/* libutap - Uppaal Timed Automata Parser.
4
Copyright (C) 2002-2006 Uppsala University and Aalborg University.
5
6
This library is free software; you can redistribute it and/or
7
modify it under the terms of the GNU Lesser General Public License
8
as published by the Free Software Foundation; either version 2.1 of
9
the License, or (at your option) any later version.
10
11
This library is distributed in the hope that it will be useful, but
12
WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
Lesser General Public License for more details.
15
16
You should have received a copy of the GNU Lesser General Public
17
License along with this library; if not, write to the Free Software
18
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19
USA
20
*/
21
22
#ifndef UTAP_COMMON_HH
23
#define UTAP_COMMON_HH
24
25
#include <cinttypes>
26
#include <string>
27
#include <vector>
28
29
namespace
UTAP
30
{
31
namespace
Constants
32
{
33
enum
kind_t
34
{
35
PLUS
,
36
MINUS
,
37
MULT
,
38
DIV
,
39
MOD
,
40
BIT_AND
,
41
BIT_OR
,
42
BIT_XOR
,
43
BIT_LSHIFT
,
44
BIT_RSHIFT
,
45
AND
,
46
OR
,
47
XOR
,
48
MIN
,
49
MAX
,
50
RATE
,
51
FRACTION
,
52
53
/********************************************************
54
* Relational operators
55
*/
56
LT
,
57
LE
,
58
EQ
,
59
NEQ
,
60
GE
,
61
GT
,
62
63
/********************************************************
64
* TIGA operators in properties.
65
*/
66
SIMULATION_LE
,
67
SIMULATION_GE
,
68
REFINEMENT_LE
,
69
REFINEMENT_GE
,
70
TIOCOMPOSITION
,
71
TIOCONJUNCTION
,
72
TIOQUOTIENT
,
73
74
/********************************************************
75
* Unary operators
76
*/
77
NOT
,
78
FORALL
,
79
EXISTS
,
80
SUM
,
81
82
/********************************************************
83
* Built-in functions
84
*/
85
ABS_F
,
FABS_F
,
FMOD_F
,
FMA_F
,
FMAX_F
,
FMIN_F
,
FDIM_F
,
86
EXP_F
,
EXP2_F
,
EXPM1_F
,
LN_F
,
LOG_F
,
LOG10_F
,
LOG2_F
,
LOG1P_F
,
87
POW_F
,
SQRT_F
,
CBRT_F
,
HYPOT_F
,
88
SIN_F
,
COS_F
,
TAN_F
,
ASIN_F
,
ACOS_F
,
ATAN_F
,
ATAN2_F
,
89
SINH_F
,
COSH_F
,
TANH_F
,
ASINH_F
,
ACOSH_F
,
ATANH_F
,
90
ERF_F
,
ERFC_F
,
TGAMMA_F
,
LGAMMA_F
,
91
CEIL_F
,
FLOOR_F
,
TRUNC_F
,
ROUND_F
,
FINT_F
,
92
LDEXP_F
,
ILOGB_F
,
LOGB_F
,
NEXTAFTER_F
,
COPYSIGN_F
,
93
FPCLASSIFY_F
,
ISFINITE_F
,
ISINF_F
,
ISNAN_F
,
ISNORMAL_F
,
SIGNBIT_F
,
94
ISUNORDERED_F
,
95
RANDOM_F
,
RANDOM_ARCSINE_F
,
RANDOM_BETA_F
,
RANDOM_GAMMA_F
,
96
RANDOM_NORMAL_F
,
RANDOM_POISSON_F
,
RANDOM_WEIBULL_F
,
RANDOM_TRI_F
,
97
98
/********************************************************
99
* Assignment operators
100
*/
101
ASSIGN
,
102
ASSPLUS
,
103
ASSMINUS
,
104
ASSDIV
,
105
ASSMOD
,
106
ASSMULT
,
107
ASSAND
,
108
ASSOR
,
109
ASSXOR
,
110
ASSLSHIFT
,
111
ASSRSHIFT
,
112
113
/*******************************************************
114
* CTL Quantifiers
115
*/
116
EF
,
117
EG
,
118
AF
,
119
AG
,
120
LEADSTO
,
121
A_UNTIL
,
122
A_WEAKUNTIL
,
123
AG_R_Piotr
,
124
EF_R_Piotr
,
125
A_BUCHI
,
126
PMAX
,
127
PROBAMINBOX
,
//#runs,(boundType|bounded-expr),bound,predicate,prob-bound
128
PROBAMINDIAMOND
,
//#runs,(boundType|bounded-expr),bound,predicate,prob-bound
129
PROBABOX
,
//#runs,(boundType|bounded-expr),bound,predicate,until-pred
130
PROBADIAMOND
,
//#runs,(boundType|bounded-expr),bound,predicate,until-pred
131
PROBACMP
,
132
PROBAEXP
,
133
SIMULATE
,
134
SIMULATEREACH
,
135
BOX
,
136
DIAMOND
,
137
138
/*******************************************************
139
* Control Synthesis Operator
140
*/
141
CONTROL
,
142
PO_CONTROL
,
143
EF_CONTROL
,
144
CONTROL_TOPT
,
145
CONTROL_TOPT_DEF1
,
146
CONTROL_TOPT_DEF2
,
147
SMC_CONTROL
,
148
CONSISTENCY
,
149
RESTRICT
,
150
IMPLEMENTATION
,
151
SPECIFICATION
,
152
SYNTAX_COMPOSITION
,
153
154
/*******************************************************
155
* Get supremum or infimum of variables/clocks
156
*/
157
SUP_VAR
,
INF_VAR
,
158
159
/*******************************************************
160
* Verify a LSC scenario
161
*/
162
SCENARIO
,
//identifier of the LSC instance
163
SCENARIO2
,
//scenario property of size 2 "obsTA.lmin --> obsTA.lmax"
164
165
/*******************************************************
166
* Additional constants used by ExpressionProgram's and
167
* the TypeCheckBuilder (but not by the parser, although
168
* some of then ought to be used, FIXME).
169
*/
170
IDENTIFIER
,
171
CONSTANT
,
172
ARRAY
,
173
POSTINCREMENT
,
174
PREINCREMENT
,
175
POSTDECREMENT
,
176
PREDECREMENT
,
177
UNARY_MINUS
,
178
LIST
,
179
DOT
,
180
INLINEIF
,
181
COMMA
,
182
SYNC
,
183
DEADLOCK
,
184
FUNCALL
,
185
186
/*******************************************************
187
* Types
188
*/
189
UNKNOWN
,
190
VOID_TYPE
,
191
CLOCK
,
192
INT
,
193
DOUBLE
,
194
BOOL
,
195
SCALAR
,
196
LOCATION
,
197
CHANNEL
,
198
COST
,
199
INVARIANT
,
200
INVARIANT_WR
,
201
GUARD
,
202
DIFF
,
203
CONSTRAINT
,
204
FORMULA
,
205
BRANCHPOINT
,
206
PROBABILITY
,
207
TIOGRAPH
,
208
//LSC
209
INSTANCELINE
,
210
MESSAGE
,
211
CONDITION
,
212
UPDATE
,
213
214
RANGE
,
215
LABEL
,
216
RECORD
,
217
REF
,
218
URGENT
,
219
COMMITTED
,
220
BROADCAST
,
221
HYBRID
,
222
TYPEDEF
,
223
PROCESS
,
224
PROCESSSET
,
225
INSTANCE
,
// TA template (instantiated or not)
226
SYSTEM_META
,
227
FUNCTION
,
228
LSCINSTANCE
,
// LSC template (instantiated or not)
229
230
231
/******************************************************
232
* MITL Extension
233
*/
234
MITLFORMULA
,
235
MITLRELEASE
,
236
MITLUNTIL
,
237
MITLCONJ
,
238
MITLDISJ
,
239
MITLNEXT
,
240
MITLATOM
,
241
MITLEXISTS
,
242
MITLFORALL
,
243
/*Dynamic */
244
SPAWN
,
245
EXIT
,
246
NUMOF
,
247
FORALLDYNAMIC
,
248
EXISTSDYNAMIC
,
249
SUMDYNAMIC
,
250
FOREACHDYNAMIC
,
251
DYNAMICEVAL
,
252
PROCESSVAR
,
253
DOUBLEINVGUARD
,
254
255
};
256
257
/**********************************************************
258
* Synchronisations:
259
*/
260
enum
synchronisation_t
261
{
262
SYNC_QUE
,
263
SYNC_BANG
,
264
SYNC_CSP
265
};
266
267
}
268
270
enum class
sync_use_t
{
unused
,
io
,
csp
};
271
273
typedef
enum
274
{
275
S_XTA
,
// entire system
276
S_DECLARATION
,
S_LOCAL_DECL
,
S_INST
,
S_SYSTEM
,
S_PARAMETERS
,
277
S_INVARIANT
,
S_EXPONENTIALRATE
,
S_SELECT
,
S_GUARD
,
S_SYNC
,
S_ASSIGN
,
278
S_EXPRESSION
,
S_EXPRESSION_LIST
,
S_PROPERTY
,
S_XTA_PROCESS
,
279
S_PROBABILITY
,
/*LSC*/
S_INSTANCELINE
,
S_MESSAGE
,
S_UPDATE
,
S_CONDITION
280
}
xta_part_t
;
281
282
}
283
284
#endif
UTAP::Constants::TIOCONJUNCTION
Definition:
common.h:71
UTAP::Constants::ASIN_F
Definition:
common.h:88
UTAP::Constants::BIT_AND
Definition:
common.h:40
UTAP::Constants::ACOS_F
Definition:
common.h:88
UTAP::Constants::CHANNEL
Definition:
common.h:197
UTAP::Constants::PROCESSVAR
Definition:
common.h:252
UTAP::Constants::SCENARIO2
Definition:
common.h:163
UTAP::Constants::ASSIGN
Definition:
common.h:101
UTAP::Constants::RANDOM_NORMAL_F
Definition:
common.h:96
UTAP::Constants::FOREACHDYNAMIC
Definition:
common.h:250
UTAP::Constants::ASINH_F
Definition:
common.h:89
UTAP::Constants::SIMULATE
Definition:
common.h:133
UTAP::Constants::DOUBLEINVGUARD
Definition:
common.h:253
UTAP::Constants::CONSTRAINT
Definition:
common.h:203
UTAP::Constants::EXPM1_F
Definition:
common.h:86
UTAP::Constants::BIT_OR
Definition:
common.h:41
UTAP::Constants::MITLEXISTS
Definition:
common.h:241
UTAP::Constants::PROBAMINDIAMOND
Definition:
common.h:128
UTAP::Constants::LOG2_F
Definition:
common.h:86
UTAP::Constants::EQ
Definition:
common.h:58
UTAP::Constants::SCENARIO
Definition:
common.h:162
UTAP::Constants::SIMULATION_LE
Definition:
common.h:66
UTAP::Constants::ISFINITE_F
Definition:
common.h:93
UTAP::S_INST
Definition:
common.h:276
UTAP::S_SYNC
Definition:
common.h:277
UTAP::Constants::BIT_XOR
Definition:
common.h:42
UTAP::Constants::COPYSIGN_F
Definition:
common.h:92
UTAP::Constants::EXP_F
Definition:
common.h:86
UTAP::Constants::SPECIFICATION
Definition:
common.h:151
UTAP::S_CONDITION
Definition:
common.h:279
UTAP::Constants::LT
Definition:
common.h:56
UTAP::Constants::FMOD_F
Definition:
common.h:85
UTAP::Constants::MULT
Definition:
common.h:37
UTAP::Constants::DYNAMICEVAL
Definition:
common.h:251
UTAP::Constants::DIAMOND
Definition:
common.h:136
UTAP::Constants::BOX
Definition:
common.h:135
UTAP::Constants::INVARIANT_WR
Definition:
common.h:200
UTAP::Constants::SYNC_BANG
Definition:
common.h:263
UTAP::Constants::SYSTEM_META
Definition:
common.h:226
UTAP::Constants::NEXTAFTER_F
Definition:
common.h:92
UTAP::Constants::PROBAEXP
Definition:
common.h:132
UTAP::Constants::PROBAMINBOX
Definition:
common.h:127
UTAP::Constants::MITLNEXT
Definition:
common.h:239
UTAP::Constants::ASSDIV
Definition:
common.h:104
UTAP::Constants::kind_t
kind_t
Definition:
common.h:33
UTAP::S_PARAMETERS
Definition:
common.h:276
UTAP::Constants::CONTROL_TOPT
Definition:
common.h:144
UTAP::Constants::LN_F
Definition:
common.h:86
UTAP::Constants::ISINF_F
Definition:
common.h:93
UTAP::Constants::FUNCALL
Definition:
common.h:184
UTAP::Constants::PROBADIAMOND
Definition:
common.h:130
UTAP::Constants::MITLCONJ
Definition:
common.h:237
UTAP::Constants::SYNTAX_COMPOSITION
Definition:
common.h:152
UTAP::Constants::RANDOM_BETA_F
Definition:
common.h:95
UTAP::Constants::RANDOM_ARCSINE_F
Definition:
common.h:95
UTAP::Constants::CONTROL_TOPT_DEF1
Definition:
common.h:145
UTAP::Constants::A_UNTIL
Definition:
common.h:121
UTAP::Constants::BRANCHPOINT
Definition:
common.h:205
UTAP::Constants::COS_F
Definition:
common.h:88
UTAP::Constants::FPCLASSIFY_F
Definition:
common.h:93
UTAP::sync_use_t
sync_use_t
Synchronization usage options: I/O (with ? or !) or CSP (plain)
Definition:
common.h:270
UTAP::Constants::TRUNC_F
Definition:
common.h:91
UTAP::Constants::ARRAY
Definition:
common.h:172
UTAP::Constants::SMC_CONTROL
Definition:
common.h:147
UTAP::Constants::AND
Definition:
common.h:45
UTAP::S_EXPONENTIALRATE
Definition:
common.h:277
UTAP::Constants::LOG_F
Definition:
common.h:86
UTAP::Constants::TAN_F
Definition:
common.h:88
UTAP::Constants::ILOGB_F
Definition:
common.h:92
UTAP::Constants::PROCESSSET
Definition:
common.h:224
UTAP::Constants::RANDOM_TRI_F
Definition:
common.h:96
UTAP::Constants::ABS_F
Definition:
common.h:85
UTAP::Constants::CBRT_F
Definition:
common.h:87
UTAP::Constants::RANDOM_WEIBULL_F
Definition:
common.h:96
UTAP::S_DECLARATION
Definition:
common.h:276
UTAP::Constants::SYNC
Definition:
common.h:182
UTAP::Constants::RECORD
Definition:
common.h:216
UTAP::S_INSTANCELINE
Definition:
common.h:279
UTAP::Constants::LIST
Definition:
common.h:178
UTAP::sync_use_t::csp
UTAP::Constants::FORMULA
Definition:
common.h:204
UTAP::S_EXPRESSION
Definition:
common.h:278
UTAP::Constants::CLOCK
Definition:
common.h:191
UTAP::Constants::PROBABILITY
Definition:
common.h:206
UTAP::Constants::SCALAR
Definition:
common.h:195
UTAP::S_EXPRESSION_LIST
Definition:
common.h:278
UTAP::Constants::LOGB_F
Definition:
common.h:92
UTAP::S_GUARD
Definition:
common.h:277
UTAP::xta_part_t
xta_part_t
Type for specifying which XTA part to parse (syntax switch)
Definition:
common.h:273
UTAP::Constants::DIFF
Definition:
common.h:202
UTAP::Constants::URGENT
Definition:
common.h:218
UTAP::Constants::FORALLDYNAMIC
Definition:
common.h:247
UTAP::Constants::UNKNOWN
Definition:
common.h:189
UTAP::Constants::ATAN2_F
Definition:
common.h:88
UTAP::Constants::FINT_F
Definition:
common.h:91
UTAP::Constants::RATE
Definition:
common.h:50
UTAP::Constants::FORALL
Definition:
common.h:78
UTAP::Constants::PROBABOX
Definition:
common.h:129
UTAP::Constants::FRACTION
Definition:
common.h:51
UTAP::Constants::SUMDYNAMIC
Definition:
common.h:249
UTAP::Constants::COMMA
Definition:
common.h:181
UTAP::Constants::ASSLSHIFT
Definition:
common.h:110
UTAP::Constants::SIGNBIT_F
Definition:
common.h:93
UTAP::S_PROBABILITY
Definition:
common.h:279
UTAP::Constants::BOOL
Definition:
common.h:194
UTAP::Constants::PLUS
Definition:
common.h:35
UTAP::Constants::LOG1P_F
Definition:
common.h:86
UTAP::Constants::PROBACMP
Definition:
common.h:131
UTAP::Constants::SYNC_QUE
Definition:
common.h:262
UTAP::Constants::ROUND_F
Definition:
common.h:91
UTAP::S_XTA_PROCESS
Definition:
common.h:278
UTAP::Constants::CONSISTENCY
Definition:
common.h:148
UTAP::Constants::SPAWN
Definition:
common.h:244
UTAP::Constants::MAX
Definition:
common.h:49
UTAP::Constants::ASSMULT
Definition:
common.h:106
UTAP::Constants::A_WEAKUNTIL
Definition:
common.h:122
UTAP::Constants::GUARD
Definition:
common.h:201
UTAP::Constants::CONSTANT
Definition:
common.h:171
UTAP::Constants::FLOOR_F
Definition:
common.h:91
UTAP::Constants::ASSAND
Definition:
common.h:107
UTAP::Constants::EXISTS
Definition:
common.h:79
UTAP::Constants::POW_F
Definition:
common.h:87
UTAP::Constants::DOUBLE
Definition:
common.h:193
UTAP::Constants::SINH_F
Definition:
common.h:89
UTAP::Constants::TGAMMA_F
Definition:
common.h:90
UTAP::Constants::MINUS
Definition:
common.h:36
UTAP::Constants::RANDOM_F
Definition:
common.h:95
UTAP::Constants::MIN
Definition:
common.h:48
UTAP::Constants::AG_R_Piotr
Definition:
common.h:123
UTAP::Constants::ASSRSHIFT
Definition:
common.h:111
UTAP::Constants::PREDECREMENT
Definition:
common.h:176
UTAP::Constants::ERFC_F
Definition:
common.h:90
UTAP::Constants::BIT_RSHIFT
Definition:
common.h:44
UTAP::Constants::LGAMMA_F
Definition:
common.h:90
UTAP::Constants::REF
Definition:
common.h:217
UTAP::Constants::PROCESS
Definition:
common.h:223
UTAP::Constants::TIOCOMPOSITION
Definition:
common.h:70
UTAP::S_SYSTEM
Definition:
common.h:276
UTAP::Constants::LEADSTO
Definition:
common.h:120
UTAP::Constants::GT
Definition:
common.h:61
UTAP::S_MESSAGE
Definition:
common.h:279
UTAP::Constants::CEIL_F
Definition:
common.h:91
UTAP::Constants::MITLRELEASE
Definition:
common.h:235
UTAP::Constants::TIOQUOTIENT
Definition:
common.h:72
UTAP::Constants::FDIM_F
Definition:
common.h:85
UTAP::Constants::EXP2_F
Definition:
common.h:86
UTAP::Constants::ASSPLUS
Definition:
common.h:102
UTAP::Constants::MITLFORALL
Definition:
common.h:242
UTAP::Constants::CONTROL
Definition:
common.h:141
UTAP::Constants::LOCATION
Definition:
common.h:196
UTAP::S_XTA
Definition:
common.h:275
UTAP::Constants::IMPLEMENTATION
Definition:
common.h:150
UTAP::Constants::SIN_F
Definition:
common.h:88
UTAP::Constants::FMAX_F
Definition:
common.h:85
UTAP::S_INVARIANT
Definition:
common.h:277
UTAP::Constants::INSTANCELINE
Definition:
common.h:209
UTAP::Constants::XOR
Definition:
common.h:47
UTAP::Constants::SUP_VAR
Definition:
common.h:157
UTAP::Constants::ATANH_F
Definition:
common.h:89
UTAP::Constants::COMMITTED
Definition:
common.h:219
UTAP::Constants::ACOSH_F
Definition:
common.h:89
UTAP::Constants::EXIT
Definition:
common.h:245
UTAP::S_UPDATE
Definition:
common.h:279
UTAP::Constants::ATAN_F
Definition:
common.h:88
UTAP::Constants::COSH_F
Definition:
common.h:89
UTAP::sync_use_t::io
UTAP::Constants::EF_R_Piotr
Definition:
common.h:124
UTAP::Constants::EG
Definition:
common.h:117
UTAP::Constants::RANDOM_POISSON_F
Definition:
common.h:96
UTAP::Constants::INSTANCE
Definition:
common.h:225
UTAP::Constants::OR
Definition:
common.h:46
UTAP::Constants::MITLATOM
Definition:
common.h:240
UTAP::Constants::COST
Definition:
common.h:198
UTAP::Constants::INLINEIF
Definition:
common.h:180
UTAP::Constants::ISNAN_F
Definition:
common.h:93
UTAP::Constants::POSTDECREMENT
Definition:
common.h:175
UTAP::Constants::ASSXOR
Definition:
common.h:109
UTAP::Constants::TIOGRAPH
Definition:
common.h:207
UTAP::Constants::MESSAGE
Definition:
common.h:210
UTAP::Constants::RANGE
Definition:
common.h:214
UTAP::Constants::CONTROL_TOPT_DEF2
Definition:
common.h:146
UTAP::Constants::TANH_F
Definition:
common.h:89
UTAP::Constants::PMAX
Definition:
common.h:126
UTAP::Constants::EXISTSDYNAMIC
Definition:
common.h:248
UTAP::Constants::MITLUNTIL
Definition:
common.h:236
UTAP::Constants::RESTRICT
Definition:
common.h:149
UTAP::Constants::BIT_LSHIFT
Definition:
common.h:43
UTAP::Constants::NEQ
Definition:
common.h:59
UTAP::Constants::UNARY_MINUS
Definition:
common.h:177
UTAP::Constants::INT
Definition:
common.h:192
UTAP::Constants::FUNCTION
Definition:
common.h:227
UTAP::Constants::PREINCREMENT
Definition:
common.h:174
UTAP::Constants::ISUNORDERED_F
Definition:
common.h:94
UTAP::Constants::EF
Definition:
common.h:116
UTAP::Constants::A_BUCHI
Definition:
common.h:125
UTAP::Constants::NUMOF
Definition:
common.h:246
UTAP::Constants::MOD
Definition:
common.h:39
UTAP::Constants::ASSMOD
Definition:
common.h:105
UTAP::Constants::LABEL
Definition:
common.h:215
UTAP::S_ASSIGN
Definition:
common.h:277
UTAP::Constants::LSCINSTANCE
Definition:
common.h:228
UTAP::Constants::SIMULATEREACH
Definition:
common.h:134
UTAP::Constants::AG
Definition:
common.h:119
UTAP::Constants::TYPEDEF
Definition:
common.h:222
UTAP::Constants::REFINEMENT_GE
Definition:
common.h:69
UTAP::Constants::SUM
Definition:
common.h:80
UTAP::Constants::MITLDISJ
Definition:
common.h:238
UTAP::Constants::ISNORMAL_F
Definition:
common.h:93
UTAP::Constants::FMIN_F
Definition:
common.h:85
UTAP::Constants::SYNC_CSP
Definition:
common.h:264
UTAP::Constants::FABS_F
Definition:
common.h:85
UTAP::Constants::BROADCAST
Definition:
common.h:220
UTAP::Constants::EF_CONTROL
Definition:
common.h:143
UTAP::Constants::MITLFORMULA
Definition:
common.h:234
UTAP::Constants::HYPOT_F
Definition:
common.h:87
UTAP::Constants::INVARIANT
Definition:
common.h:199
UTAP::Constants::RANDOM_GAMMA_F
Definition:
common.h:95
UTAP::Constants::AF
Definition:
common.h:118
UTAP::Constants::LE
Definition:
common.h:57
UTAP::S_PROPERTY
Definition:
common.h:278
UTAP::Constants::CONDITION
Definition:
common.h:211
UTAP
Definition:
lexer.cc:817
UTAP::S_SELECT
Definition:
common.h:277
UTAP::Constants::LOG10_F
Definition:
common.h:86
UTAP::Constants::SIMULATION_GE
Definition:
common.h:67
UTAP::Constants::IDENTIFIER
Definition:
common.h:170
UTAP::Constants::HYBRID
Definition:
common.h:221
UTAP::Constants::FMA_F
Definition:
common.h:85
UTAP::Constants::REFINEMENT_LE
Definition:
common.h:68
UTAP::Constants::synchronisation_t
synchronisation_t
Definition:
common.h:260
UTAP::Constants::VOID_TYPE
Definition:
common.h:190
UTAP::Constants::INF_VAR
Definition:
common.h:157
UTAP::sync_use_t::unused
UTAP::Constants::DEADLOCK
Definition:
common.h:183
UTAP::Constants::PO_CONTROL
Definition:
common.h:142
UTAP::Constants::LDEXP_F
Definition:
common.h:92
UTAP::Constants::DOT
Definition:
common.h:179
UTAP::Constants::GE
Definition:
common.h:60
UTAP::Constants::UPDATE
Definition:
common.h:212
UTAP::Constants::SQRT_F
Definition:
common.h:87
UTAP::Constants::POSTINCREMENT
Definition:
common.h:173
UTAP::Constants::ERF_F
Definition:
common.h:90
UTAP::Constants::ASSOR
Definition:
common.h:108
UTAP::Constants::NOT
Definition:
common.h:77
UTAP::Constants::ASSMINUS
Definition:
common.h:103
UTAP::S_LOCAL_DECL
Definition:
common.h:276
UTAP::Constants::DIV
Definition:
common.h:38
src
utap
common.h
Generated by
1.8.13