Class FeatureSingleMemo


public abstract class FeatureSingleMemo extends Feature<FeatureInputSingleMemo>
An abstract base class for features that operate on a single memoized object.

This class extends Feature and specifies FeatureInputSingleMemo as the input type for feature calculations. It is designed to be used with features that need to process a single memoized object, typically for performance optimization in energy calculations.

Subclasses must implement the calculate(FeatureCalculationInput) method to define the specific feature calculation logic.