try{
System.out.println("\n\nTEST PROPOSE PLACES\nZ3 (avec "+z3.getNbFauteuils()+" places restantes) au depart: "+ z3.toString());
reInitZ3();
proposition = (ArrayList)new AttributionPlaces().proposePlaces(z3, 64);
System.out.println("TEST DECOUPAGE 1\n" +z3.toString()+"\n\nResultat:\n"+proposition.toString());
}catch(NombreTotalPlacesInsuffisantException ntpie){
ntpie.printStackTrace();
}
try{
// reInitZ3();
System.out.println("TEST DECOUPAGE");
proposition = (ArrayList)new AttributionPlaces().proposePlaces(z, 15);
System.out.println("TEST DECOUPAGE TERMINE:\n"+z.toString()+"\nResultat:\n"+proposition.toString());
}catch(NombreTotalPlacesInsuffisantException ntpie){
ntpie.printStackTrace();
}
try{
// reInitZ3();
System.out.println("TEST DECOUPAGE \n"+z.toString()+"\n\n");
proposition = (ArrayList)new AttributionPlaces().proposePlaces(z, 16);
System.out.println("Resultat:\n"+proposition.toString());
}catch(NombreTotalPlacesInsuffisantException ntpie){
ntpie.printStackTrace();
}