class Lp {

	
	static String[] Alternatives_name = { "A", "B", "C", "D", "E", "F" };
	static String[] Objectives_name = { "C1", "C2" };
	// TODO implementer la direction des obj (pour l'instant max)
	static double[][] Perf_table = { { 0.0, 1.0 }, { 0.5, 0.5 }, { 1.0, 0.0 },
			{ 1.0, 1.0 }, { 0.0, 0.0 },{0.5,1 }};
	static String[][] Preference = { { "B", "A" }, { "B", "C" } };
	
	static String[][] Indifference = {{"A","C"}};
	
	public static void main(String[] args){
		for (int hit_count=0;hit_count<100;hit_count++){

			UTAgms.main(Alternatives_name, Objectives_name, Perf_table, Preference, Indifference);
try {
	Thread.sleep(100);
} catch (InterruptedException e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
}
			System.out.println(hit_count);
		}
	}
}