| 513 | Algorithm.__init__(self, fallback_entries) |
| 514 | |
| 515 | class AlgorithmDeviceAdjacentDifference(Algorithm): |
| 516 | algorithm_name = "device_adjacent_difference" |
| 517 | cpp_configuration_template_name = "adjacent_difference_config_template" |
| 518 | config_selection_params = [ |
| 519 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False)] |
| 520 | def __init__(self, fallback_entries): |
| 521 | Algorithm.__init__(self, fallback_entries) |
| 522 | |
| 523 | class AlgorithmDeviceAdjacentDifferenceInplace(Algorithm): |
| 524 | algorithm_name = "device_adjacent_difference_inplace" |
no test coverage detected