// $Id: Series.java,v 1.1 1999/09/11 19:53:13 leavens Exp $

package lib;

public interface Series {
    /** the value of the ath term in the series */
    double value(double a);

    /** the next value of a in the series */
    double next(double a);
}
