Find the best Rector rule to solve your problem. Searching through 824 rules.
Found 1 rule. That's the one:
Changes pow(val, val2) to ** (exp) parameter
pow(val, val2)
**
-pow(1, 2); +1**2;