WarpPI/src/main/resources/rules/ExponentRule4.java

80 lines
2.2 KiB
Java

/*
SETTINGS: (please don't move this part)
PATH=ExponentRule4
*/
import org.warp.picalculator.math.Function;
import org.warp.picalculator.math.FunctionOperator;
import org.warp.picalculator.math.FunctionDynamic;
import org.warp.picalculator.math.FunctionSingle;
import org.warp.picalculator.math.MathContext;
//Imports
import org.warp.picalculator.Error;
import org.warp.picalculator.math.Function;
import org.warp.picalculator.math.MathContext;
import org.warp.picalculator.math.functions.Expression;
import org.warp.picalculator.math.functions.Multiplication;
import org.warp.picalculator.math.functions.Number;
import org.warp.picalculator.math.functions.Power;
import org.warp.picalculator.math.rules.Rule;
import org.warp.picalculator.math.rules.RuleType;
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
/**
* Exponent rule
* (a*b)^n=a^n*b^n
*
* @author Andrea Cavalli
*
*/
public class ExponentRule4 implements Rule {
// Rule name
@Override
public String getRuleName() {
return "ExponentRule4";
}
// 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(Function f) {
boolean isExecutable = false;
if (f instanceof Power) {
FunctionOperator fnc = (FunctionOperator) f;
if (fnc.getParameter1() instanceof Multiplication && fnc.getParameter2() instanceof Number) {
isExecutable = true;
}
}
if (isExecutable) {
MathContext root = f.getMathContext();
ObjectArrayList<Function> result = new ObjectArrayList<>();
FunctionOperator fnc = (FunctionOperator) f;
FunctionOperator mult = (FunctionOperator) fnc.getParameter1();
Function a = mult.getParameter1();
Function b = mult.getParameter2();
Function n = fnc.getParameter2();
Function p1 = new Power(root, a, n);
Function p2 = new Power(root, b, n);
Function retMult = new Multiplication(root, p1, p2);
result.add(retMult);
return result;
} else {
return null;
}
}
}