(Event+Time).Variant Operators  2.3
Operators for Timed Discrete Event Systems in Dioids
etvoTools.h
1 #ifndef TOOLS_H
2 #define TOOLS_H
3 namespace etvo
4 {
5 
6 class Tools
7 {
8  public:
9  static int lcm(int,int);
10  static int gcd(int,int);
11  static unsigned int lcm(unsigned int, unsigned int);
12  static unsigned int gcd(unsigned int, unsigned int);
13  static long lcm(long,long);
14  static long gcd(long,long);
15 
16  static int Min(int , int);
17  static int Max(int , int);
18 
19  static long Min(long , long);
20  static long Max(long , long);
21 
22  static int MaxInfinity();
23  static int MinInfinity();
24 };
25 }
26 
27 #endif // TOOLS_H
Definition: etvoException.cpp:5
Definition: etvoTools.h:6