WarpPI/rules/src/main/java/rules/ExponentRule9.java
2018-09-22 11:17:30 +02:00

63 lines
1.7 KiB
Java

package rules;
/*
SETTINGS: (please don't move this part)
PATH=ExponentRule9
*/
import it.cavallium.warppi.math.Function;
import it.cavallium.warppi.math.FunctionOperator;
import it.cavallium.warppi.math.MathContext;
import it.cavallium.warppi.math.functions.Multiplication;
import it.cavallium.warppi.math.functions.Power;
import it.cavallium.warppi.math.rules.Rule;
import it.cavallium.warppi.math.rules.RuleType;
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
/**
* Exponent rule
* (a ^ b) ^ c = a ^ (b * c)
*
* @author Andrea Cavalli
*
*/
public class ExponentRule9 implements Rule {
// Rule name
@Override
public String getRuleName() {
return "ExponentRule9";
}
// Rule type
@Override
public RuleType getRuleType() {
return RuleType.EXPANSION;
}
/* Rule function
Returns:
- null if it's not executable on the function "f"
- An ObjectArrayList<Function> if it did something
*/
@Override
public ObjectArrayList<Function> execute(final Function f) {
boolean isExecutable = false;
if (f instanceof Power) {
final FunctionOperator fnc = (FunctionOperator) f;
if (fnc.getParameter1() instanceof Power)
isExecutable = true;
}
if (isExecutable) {
final MathContext root = f.getMathContext();
final ObjectArrayList<Function> result = new ObjectArrayList<>();
final FunctionOperator powC = (FunctionOperator) f;
final FunctionOperator powB = (FunctionOperator) powC.getParameter1();
final Function p = new Power(root, powB.getParameter1(), new Multiplication(root, powB.getParameter2(), powC.getParameter2()));
result.add(p);
return result;
} else
return null;
}
}