private void presentCriteriaAndWaitTillUserReady() {
   System.out.print(
       "Press ENTER to continue when you have finished looking at the output of Ritchie's criteria for this Improviser");
   BufferedReader in = Improvisations.getBufferedReaderIn();
   try {
     in.readLine(); // dont worry about doing anything with this, just pause till some input
     // received to continue
   } catch (Exception e) {
   }
 }