| 661 | Algorithm.__init__(self, fallback_entries) |
| 662 | |
| 663 | class AlgorithmDeviceFindFirstOf(Algorithm): |
| 664 | algorithm_name = "device_find_first_of" |
| 665 | cpp_configuration_template_name = "find_first_of_config_template" |
| 666 | config_selection_params = [ |
| 667 | SelectionType(name="value_type", is_optional=False, select_on_size_only=True)] |
| 668 | def __init__(self, fallback_entries): |
| 669 | Algorithm.__init__(self, fallback_entries) |
| 670 | |
| 671 | class AlgorithmDeviceRunLengthEncode(Algorithm): |
| 672 | algorithm_name = 'device_run_length_encode' |
no test coverage detected