コード例 #1
0
 def sqrt(self, a):
     """Compute square root of ``a``. """
     return python_sqrt(a)
コード例 #2
0
ファイル: sympyintegerring.py プロジェクト: FireJade/sympy
 def sqrt(self, a):
     """Compute square root of ``a``. """
     return SymPyIntegerType(python_sqrt(int(a)))
コード例 #3
0
ファイル: pythonintegerring.py プロジェクト: alhirzel/sympy
 def sqrt(self, a):
     """Compute square root of ``a``. """
     return python_sqrt(a)
コード例 #4
0
 def sqrt(self, a):
     """Compute square root of ``a``. """
     return SymPyIntegerType(python_sqrt(int(a)))