using System.Collections;
using System;

public interface IAppInterface
{
	ArrayList generateProblem(int cpuLoad, int noOfProblems);
	int setProblem(ArrayList problemList, int currentProblem);
	int acceptResult(Object Child);
	String showResult();
	int calculate();
	string startUp();
}
