Optimization step 'generate_features': Added overloading for IsTypeExist.

This commit is contained in:
Maksim Andrianov 2019-06-25 15:03:07 +03:00 committed by mpimenov
parent 94eb883725
commit a1a6b29c95
2 changed files with 12 additions and 0 deletions

View file

@ -541,6 +541,17 @@ bool FeatureParams::IsTypeExist(uint32_t t) const
return (find(m_types.begin(), m_types.end(), t) != m_types.end());
}
bool FeatureParams::IsTypeExist(uint32_t comp, uint8_t level) const
{
for (uint32_t type : m_types)
{
ftype::TruncValue(type, level);
if (type == comp)
return true;
}
return false;
}
uint32_t FeatureParams::FindType(uint32_t comp, uint8_t level) const
{
for (uint32_t const type : m_types)

View file

@ -280,6 +280,7 @@ public:
bool PopAnyType(uint32_t & t);
bool PopExactType(uint32_t t);
bool IsTypeExist(uint32_t t) const;
bool IsTypeExist(uint32_t comp, uint8_t level) const;
/// Find type that matches "comp" with "level" in classificator hierarchy.
uint32_t FindType(uint32_t comp, uint8_t level) const;