@@ -69,6 +69,10 @@ |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | |
72 | + /** |
|
73 | + * @param integer $a |
|
74 | + * @param integer $b |
|
75 | + */ |
|
72 | 76 | private function gcd($a,$b) { |
73 | 77 | return ($a % $b) ? $this->gcd($b,$a % $b) : $b; |
74 | 78 | } |