mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
18 lines
377 B
C++
18 lines
377 B
C++
//
|
|
// Factors.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 29/07/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Factors_hpp
|
|
#define Factors_hpp
|
|
|
|
namespace NumberTheory {
|
|
unsigned int greatest_common_divisor(unsigned int a, unsigned int b);
|
|
unsigned int least_common_multiple(unsigned int a, unsigned int b);
|
|
}
|
|
|
|
#endif /* Factors_hpp */
|