Esempio n. 1
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
Esempio n. 2
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))
Esempio n. 3
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
Esempio n. 4
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))