// Interface for the Newton Raphson Program
// By Neil Broadbent
public interface NewtonInterface
{
    public double getNewton();
}
