Package jmathexpr.arithmetic.rule

Examples of jmathexpr.arithmetic.rule.AssociativeLaw$AdditionSubtraction


    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());

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

TOP

Related Classes of jmathexpr.arithmetic.rule.AssociativeLaw$AdditionSubtraction

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.