()
| 103 | } |
| 104 | |
| 105 | static void test_3() { |
| 106 | Variable Y = new Variable("Y"); |
| 107 | Query query = new Query("noop_nobind", new Term[] { tree, Y }); |
| 108 | System.out.print("noop_nobind"); |
| 109 | for (int i = 0; i < num_trials; ++i) { |
| 110 | timer.start(); |
| 111 | query.hasSolution(); |
| 112 | timer.stop(); |
| 113 | data[3][i] = timer.getElapsedTimeInMillis(); |
| 114 | System.out.print(""); |
| 115 | } |
| 116 | System.out.println(" done"); |
| 117 | } |
| 118 | |
| 119 | static void test_4() { |
| 120 | Variable Y = new Variable("Y"); |
no test coverage detected