public ArrayList<Short> getPrefSocialPrestige() {
   ArrayList<Short> result = new ArrayList<Short>(householdPrefs.size());
   for (HouseholdPrefs prefs : householdPrefs) {
     result.add(prefs.getPrefSocialPrestige());
   }
   return result;
 }