1 /* @author rich2 * Created on 11-Mar-20043 *4 * This code is covered by a Creative Commons5 * Attribution, Non Commercial, Share Alike license6 * <a HREF="http://creativecommons.org/licenses/by-nc-sa/1.0">License</a>7 */8 package org.lsmp.djep.groupJep.values;9 import org.nfunk.jep.type.*;10 11 /**12 * Groups which have a natural conversion to complex numbers.13 * 14 * @author Rich Morris15 * Created on 11-Mar-200416 */17 public interface HasComplexValueI {18 public Complex getComplexValue();19 }20