org.lsmp.djep.groupJep.values.HasComplexValueI 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.
/* @author rich
* Created on 11-Mar-2004
*/
package org.lsmp.djep.groupJep.values;
import org.nfunk.jep.type.*;
/**
* Group elements which have a natural conversion to complex numbers.
*
* @author Rich Morris
* Created on 11-Mar-2004
*/
public interface HasComplexValueI {
public Complex getComplexValue();
}