()
| 60 | |
| 61 | |
| 62 | public static void report_all_flags() { |
| 63 | System.out.println("REPORTING ALL FLAGS: \n"); |
| 64 | |
| 65 | Query q = new Query("current_prolog_flag(X, Y)"); |
| 66 | while (q.hasMoreSolutions()) { |
| 67 | Map<String,Term> sol = q.nextSolution(); |
| 68 | System.out.println(String.format("\t Value of %s: %s", sol.get("X").toString(), sol.get(("Y")))); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | |
| 73 | public static void report_versions() { |
no test coverage detected