/*
 * Small Prime Interface
 */

import java.rmi.*;

public interface SmallPrimeInf extends Remote {

  public int[] genSmallPrimes(int mp, int kp) throws RemoteException;

}
