From: Myun2 Date: Fri, 15 Oct 2010 15:31:16 +0000 (+0900) Subject: math/gcd_lcm.hpp Add. X-Git-Tag: 20111130_shapeup_prev~46^2~22 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=aaf8dc790f27b1364fe43c9a841b478fb123f5eb;p=roast%2Froast.git math/gcd_lcm.hpp Add. --- diff --git a/roast/include/roast/math/gcd_lcm.hpp b/roast/include/roast/math/gcd_lcm.hpp new file mode 100644 index 00000000..1b4a63cf --- /dev/null +++ b/roast/include/roast/math/gcd_lcm.hpp @@ -0,0 +1,20 @@ +// Roast+ License + +/* + +*/ +#ifndef __SFJP_ROAST__math__gcd_lcm_HPP__ +#define __SFJP_ROAST__math__gcd_lcm_HPP__ + +namespace roast +{ + template + T gcd_(T a, T b) + { + } + + int gcd(int a, int b){ return gcd_(a,b); } + +}//end of namespace roast + +#endif//__SFJP_ROAST__math__gcd_lcm_HPP__