WarpPI/core/src/main/java/it/cavallium/warppi/math/parser/features/FeaturePower.java

19 lines
479 B
Java

package it.cavallium.warppi.math.parser.features;
import it.cavallium.warppi.math.MathContext;
import it.cavallium.warppi.math.functions.Power;
import it.cavallium.warppi.util.Error;
public class FeaturePower extends FeatureDoubleImpl {
public FeaturePower(Object child1, Object child2) {
super(child1, child2);
}
@Override
public Power toFunction(MathContext context) throws Error {
return new Power(context, getFunction1(), getFunction2());
}
}