With the following predicate, the solver returns "NoAnswer"
init_membership(state) = AND(
DictContains(?state, "test", 0)
)
REQUEST(
init_membership({"admins": [], "members": [], "test": 0})
)
I was able to solve this by manually adding the {"admins": [], "members": [], "test": 0} to the edb, but I assume this should be done automatically.