// Interface for the Newton Raphson Program
// By www.neiljohan.com
public interface NewtonInterface
{
    public double getNewton();
}
