| 670 | |
| 671 | |
| 672 | class AlgorithmDeviceAdjacentDifference(Algorithm): |
| 673 | algorithm_name = "device_adjacent_difference" |
| 674 | cpp_configuration_template_name = "adjacent_difference_config_template" |
| 675 | config_selection_params = [ |
| 676 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False) |
| 677 | ] |
| 678 | |
| 679 | def __init__(self, fallback_entries): |
| 680 | Algorithm.__init__(self, fallback_entries) |
| 681 | |
| 682 | |
| 683 | class AlgorithmDeviceAdjacentDifferenceInplace(Algorithm): |
no test coverage detected