示例#1
0
 def lcm(self, a, b):
     """Compute LCM of ``a`` and ``b``. """
     return python_lcm(a, b)
示例#2
0
 def lcm(self, a, b):
     """Compute LCM of ``a`` and ``b``. """
     return SymPyIntegerType(python_lcm(int(a), int(b)))
示例#3
0
 def lcm(self, a, b):
     """Compute LCM of ``a`` and ``b``. """
     return python_lcm(a, b)
示例#4
0
 def lcm(self, a, b):
     """Compute LCM of ``a`` and ``b``. """
     return SymPyIntegerType(python_lcm(int(a), int(b)))