Accommodate n-Dimensional HR coordinates
refs: #3751
Change-Id: Ib705b671daba56f58e09876a48d8b31649bd7ab1
diff --git a/src/conf-parameter.hpp b/src/conf-parameter.hpp
index c3573bb..9bcd95c 100644
--- a/src/conf-parameter.hpp
+++ b/src/conf-parameter.hpp
@@ -110,7 +110,6 @@
, m_infoInterestInterval(HELLO_INTERVAL_DEFAULT)
, m_hyperbolicState(HYPERBOLIC_STATE_OFF)
, m_corR(0)
- , m_corTheta(0)
, m_maxFacesPerPrefix(MAX_FACES_PER_PREFIX_MIN)
, m_isLog4cxxConfAvailable(false)
{
@@ -338,12 +337,12 @@
}
void
- setCorTheta(double ct)
+ setCorTheta(const std::vector<double>& ct)
{
m_corTheta = ct;
}
- double
+ std::vector<double>
getCorTheta() const
{
return m_corTheta;
@@ -435,7 +434,7 @@
int32_t m_hyperbolicState;
double m_corR;
- double m_corTheta;
+ std::vector<double> m_corTheta;
uint32_t m_maxFacesPerPrefix;