Package jmathexpr.arithmetic.rule

Examples of jmathexpr.arithmetic.rule.DistributiveLaw$LeftSubtraction


    @Override
    public Set solve() throws EquationSolveException {
        rules = new RuleMachine(this);
       
        rules.addRule(new Fraction());
        rules.addRule(new DistributiveLaw());
        rules.addRule(new AssociativeLaw());
        rules.addRule(new VariableOnBothSides());
        rules.addRule(new AxpBeC());
        rules.addRule(new AxeB());
View Full Code Here


    public Set solve() throws EquationSolveException {
        rules = new RuleMachine(this);
       
        rules.addRule(new SeparateRadicals());
        rules.addRule(new Square());
        rules.addRule(new DistributiveLaw());
        rules.addRule(new ToLinearEquation());
        rules.addRule(new ToQuadraticEquation());

        Set result = rules.execute();
       
View Full Code Here

TOP

Related Classes of jmathexpr.arithmetic.rule.DistributiveLaw$LeftSubtraction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.