All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lsmp.djep.groupJep.interfaces.HasDivI Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy