Assert.assertEquals(0, csp.getConstraints(Z).size());
}
@Test
public void testDomainChanges() {
Domain colors2 = new Domain(colors.asList());
Assert.assertEquals(colors, colors2);
CSP csp = new CSP(variables);
csp.addConstraint(C1);
Assert.assertNotNull(csp.getDomain(X));