Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions headers/algorithm_names.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* @file algorithm_names.hpp
* @brief Defines constants for algorithm names used throughout BanditPAM.
*
* This file centralizes algorithm name strings to ensure consistency
* across the codebase. See GitHub Issue #238.
*/

#ifndef HEADERS_ALGORITHM_NAMES_HPP_
#define HEADERS_ALGORITHM_NAMES_HPP_

#include <string>

namespace km {
namespace AlgorithmNames {
// Primary algorithms
const std::string BANDITPAM = "BanditPAM";
const std::string BANDITPAM_ORIG = "BanditPAM_orig";
const std::string PAM = "PAM";
const std::string FASTPAM1 = "FastPAM1";
} // namespace AlgorithmNames
} // namespace km

#endif // HEADERS_ALGORITHM_NAMES_HPP_