Returns i to the e.
| 16 | |
| 17 | // Returns i to the e. |
| 18 | static int64_t IntegerPower(int i, int e) { |
| 19 | int64_t p = 1; |
| 20 | while (e-- > 0) |
| 21 | p *= i; |
| 22 | return p; |
| 23 | } |
| 24 | |
| 25 | // Checks that for given settings of the string generator: |
| 26 | // * it generates strings that are non-decreasing in length. |