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