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