コード例 #1
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
コード例 #2
0
ファイル: sympyintegerring.py プロジェクト: FireJade/sympy
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))
コード例 #3
0
ファイル: pythonintegerring.py プロジェクト: alhirzel/sympy
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return python_gcdex(a, b)
コード例 #4
0
 def gcdex(self, a, b):
     """Compute extended GCD of ``a`` and ``b``. """
     return map(SymPyIntegerType, python_gcdex(int(a), int(b)))