(Event+Time).Variant Operators  2.3
Operators for Timed Discrete Event Systems in Dioids
global.h
1 #pragma once
2 
3 
4 class global
5 {
6 public:
7  static int LIMIT_TRANS_DELTA;
8  static unsigned NB_ITER;
9  static unsigned NB_LOOPS;
10  static unsigned char TST_IS;
11  static unsigned char TST_XIS;
12  static unsigned char TST_RESIDUEQ;
13  static unsigned char TST_RESIDUINEQ;
14  static unsigned char TST_ALL;
15  static unsigned char TST_KLEENE;
16  static long INF;
17  static long _INF;
18 
19  enum OPLUS_ALG {oplus_std, oplus_CD};
20  enum OTIMES_ALG{otimes_std, otimes_CD };
21  enum STAR_ALG{ star_CD, star_alternate};
22  enum MAT_STAR_ALG{ mat_star_gauss, mat_star_block,mat_star_mmgd };
23  static OPLUS_ALG oplus_alg;
24  static OTIMES_ALG otimes_alg;
25  static STAR_ALG star_alg;
26  static MAT_STAR_ALG mat_star_alg;
27 };
Definition: global.h:4
static int LIMIT_TRANS_DELTA
global parameters/constants
Definition: global.h:7