Package jmathexpr.set

Examples of jmathexpr.set.NTuple


    public Lcm(Expression a, Expression b) {
        args = new OrderedPair(a, b);
    }
   
    public Lcm(Collection<Expression> args) {
        this.args = new NTuple(args);
    }
View Full Code Here


            } else {
                throw new IllegalStateException("Cannot convert to natural number: " + n);
            }
        }
       
        return Naturals.lcm(new NTuple(naturals));
    }
View Full Code Here

TOP

Related Classes of jmathexpr.set.NTuple

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.