I can specify variable's domain in this way:
MyVar in 1..10
or
MyVar in {1,10,15}
but I have a variable which I would like to specify like this:
Activity_1__room in {room_1, room_2} % i.e. as atoms not as integers
Is it possible to do it? Of course, it is possible to encode the names to integers but is it really necessary?