Scheduler
math.h
Go to the documentation of this file.
1 
10 #ifndef MATH_H
11 #define MATH_H
12 
13 #include <vector>
14 namespace Utils
15 {
16  int lcm(std::vector<int> array);
17  int gcd(std::vector<int> array);
18 }
19 #endif
int lcm(std::vector< int > array)
Definition: math.cpp:19
Definition: context.h:16
int gcd(std::vector< int >)
Definition: math.cpp:50