Total Complexity | 7 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class DecimalIntBench |
||
8 | { |
||
9 | |||
10 | public function benchFactorial() |
||
14 | } |
||
15 | |||
16 | public function benchSubFactorial() |
||
17 | { |
||
18 | $five = new ImmutableDecimal(5); |
||
19 | $five->subFactorial(); |
||
20 | } |
||
21 | |||
22 | public function benchDoubleFactorial() |
||
23 | { |
||
24 | $five = new ImmutableDecimal(5); |
||
25 | $five->doubleFactorial(); |
||
26 | } |
||
27 | |||
28 | public function benchSemiFactorial() |
||
32 | } |
||
33 | |||
34 | public function benchLCM() |
||
38 | } |
||
39 | |||
40 | public function benchGCD() |
||
44 | } |
||
45 | |||
46 | public function benchIsPrime() |
||
52 | } |