}
@Test(groups = "1s")
public void testGeometricalRestart1() {
Solver solver = buildQ(4);
SearchMonitorFactory.geometrical(solver, 2, 1.2, new NodeCounter(2), 2);
solver.findAllSolutions();
// not 2, because of restart, that found twice the same solution
Assert.assertEquals(solver.getMeasures().getSolutionCount(), 2);
Assert.assertEquals(solver.getMeasures().getRestartCount(), 2);
Assert.assertEquals(solver.getMeasures().getNodeCount(), 12);