예제 #1
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return python_gcd(a, b)
예제 #2
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return SymPyIntegerType(python_gcd(int(a), int(b)))
예제 #3
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return python_gcd(a, b)
예제 #4
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return SymPyIntegerType(python_gcd(int(a), int(b)))