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