scoreDirector.afterVariableChanged(seatDesignation, "seat");
// There will always be enough allowed seats: ok to do this for this problem, but not ok for most problems
undesignatedSeatList.remove(bestSeat);
}
// For the GUI's combobox list mainly, not really needed
Collections.sort(seatDesignationList, new PersistableIdComparator());
manners2009.setSeatDesignationList(seatDesignationList);
}