Preprocessor.method_to_id#
- Preprocessor.method_to_id(method, parameters)[source]#
Generate a unique ID for a specific method operation.
- Parameters:
- methodstr
The name of the method.
- parametersdict
A dictionary containing the parameters used by the method.
- Returns:
- str
A string representation of the method operation, which can be used as a unique identifier.
- Raises:
- NotImplementedError
If
method
is not a member ofPreprocessor
.