コード例 #1
0
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return python_gcd(a, b)
コード例 #2
0
ファイル: sympyintegerring.py プロジェクト: FireJade/sympy
 def gcd(self, a, b):
     """Compute GCD of ``a`` and ``b``. """
     return SymPyIntegerType(python_gcd(int(a), int(b)))
コード例 #3
0
ファイル: pythonintegerring.py プロジェクト: alhirzel/sympy
 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)))