def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return gmpy_gcd(a, b)
Example #2
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return gmpy_gcd(a, b)