org.lsmp.djep.groupJep.interfaces.HasDivI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jep Show documentation
Show all versions of jep Show documentation
JEP is a Java library for parsing and evaluating mathematical expressions. Use groupId org.fudaa to deploy it in maven central
The newest version!
/* @author rich
* Created on 05-Mar-2004
*/
package org.lsmp.djep.groupJep.interfaces;
/**
* An IntergralDomainI which also has a notion of division,
* which is not necessarily closed i.e. the integers.
*
* @author Rich Morris
* Created on 05-Mar-2004
*/
public interface HasDivI {
/** get division of two numbers. i.e. a * ( b^-1).
* Strictly speeking */
public Number div(Number a,Number b);
}