Files
Datastructs/SimpleSearch/SearchSummary.h
2025-11-01 17:29:11 +01:00

9 lines
198 B
C

#ifndef SIMPLESEARCH_SEARCHSUMMARY_H
#define SIMPLESEARCH_SEARCHSUMMARY_H
struct SearchSummary {
long long comparisons = 0;
double timeSpentMs = 0;
};
#endif //SIMPLESEARCH_SEARCHSUMMARY_H