1234567891011121314151617181920212223 |
- #ifndef _TEST_H_
- #define _TEST_H_
- #pragma once
- #include <vector>
- #pragma pack(1)
- struct CompareResult {
- double highest_similarity;
- double average_similarity;
- std::vector<std::vector<double>> full_offsets;
- std::vector<std::vector<double>> fragment_offsets;
- ~CompareResult() {
- full_offsets.clear();
- fragment_offsets.clear();
- }
- };
- #pragma pack()
- #endif // _TEST_H_
|