HiI have a set `Files`. I want TLC to explore next steps of my `process` with all subset combinations of `Files`.E.g.process DeleteX \in DeleteWorkersprocess DeleteOp:someFiles := CHOOSE x \in SUBSET {p \in Files: p.size < TargetSize}: TRUE;await Cardinatlity(someFiles) > 0;... next steps ...end process;But i see that next steps are disabled with Total/Distinct states as 0/0.I think it is because CHOOSE always takes `{}`.How can i tell TLC to explore all `someFiles` where it is a subset of `Files with my predicate` applied ?ThanksAshish