Source code for frex.models.constraints.constraint_solution_section_set
from typing import Tuple, Dict
from dataclasses import dataclass
from dataclasses_json import dataclass_json
from frex.models.constraints import ConstraintSolutionSection
[docs]@dataclass_json
@dataclass
class ConstraintSolutionSectionSet:
"""
A grouping of constraint solution sections that was solved by the constraint solution.
"""
sections: Tuple[ConstraintSolutionSection, ...]