An "ambiguous" RepSet is one that is not constrained.
(self)
| 1008 | return False |
| 1009 | |
| 1010 | def is_ambiguous(self) -> bool: |
| 1011 | """ |
| 1012 | An "ambiguous" RepSet is one that is not constrained. |
| 1013 | """ |
| 1014 | return not self.is_constrained() |
| 1015 | |
| 1016 | def _possible_pdis(self) -> Set[PackedDimInfo]: |
| 1017 | buffer_set = set() |