| 594 | Algorithm.__init__(self, fallback_entries) |
| 595 | |
| 596 | class AlgorithmDevicePartitionThreeWay(Algorithm): |
| 597 | algorithm_name = "device_partition_three_way" |
| 598 | cpp_configuration_template_name = "partition_three_way_config_template" |
| 599 | config_selection_params = [ |
| 600 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False)] |
| 601 | def __init__(self, fallback_entries): |
| 602 | Algorithm.__init__(self, fallback_entries) |
| 603 | |
| 604 | class AlgorithmDeviceSearchN(Algorithm): |
| 605 | algorithm_name = "device_search_n" |
no test coverage detected