MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / lcm

Function lcm

eos/capSim.py:9–13  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

7
8
9def lcm(a, b):
10 n = a * b
11 while b:
12 a, b = b, a % b
13 return n / a
14
15
16class CapSimulator:

Callers 1

resetMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected