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