| 475 | |
| 476 | template <typename StringTableT> |
| 477 | void writeNames(const std::filesystem::path &path, const StringTableT &table) |
| 478 | { |
| 479 | const auto fingerprint = storage::tar::FileWriter::GenerateFingerprint; |
| 480 | storage::tar::FileWriter writer{path, fingerprint}; |
| 481 | |
| 482 | serialization::write(writer, "/common/names", table); |
| 483 | } |
| 484 | |
| 485 | template <typename NodeWeightsVectorT> |
| 486 | void readEdgeBasedNodeWeights(const std::filesystem::path &path, NodeWeightsVectorT &weights) |