montepy.geometry_operators module#

Classes:

Operator(*values)

Enumeration of the allowed geometry set logic.

class montepy.geometry_operators.Operator(*values)#

Bases: Enum

Enumeration of the allowed geometry set logic.

Attributes:

COMPLEMENT

Represents the complement of a set.

GROUP

Grouping operator that represents parentheses.

INTERSECTION

Represents the intersection of sets.

UNION

Represents the union of sets.

COMPLEMENT = '#'#

Represents the complement of a set.

GROUP = '()'#

Grouping operator that represents parentheses.

INTERSECTION = '*'#

Represents the intersection of sets.

UNION = ':'#

Represents the union of sets.