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