package partition;
/**
 * @author beal
 * interface for a partition of integers
 *
 */
public interface Partition {
	int size();
	int classNumber();
    int find(int x) ;
    void union(int x, int y);
}
