template <int p>
bool FComapare (Node *lId, Node* rId)
{
if(lId->getDiff(p) < rId->getDiff(p))
return true;
else if(lId->getDiff(p) == rId->getDiff(p))
{
if(lId->getLT() < rId->getLT())
return true;
else if(lId->getLT() == rId->getLT())
return (lId->getTFG() < rId->getTFG());
}
return false;
}
vector<set<Node*, bool (*)(Node*,Node*) > > m_F;
for (int i = 0;i < partNum; ++i)
{
//This doesn`t workbecause of const problem...
set<Node *, bool (*)(Node*,Node*) > f(&FComapare<i>);
m_F.push_back(f);
}
Я получаю следующую ошибку
error C2664:
'std::set<_Kty,_Pr>::set(bool (__cdecl
*const &)(Node *,Node *))' : cannot convert parameter 1 from 'bool
(__cdecl *)(Node *,Node *)' to 'bool
(__cdecl *const &)(Node *,Node *)' 1>
with 1> [ 1><br>
_Kty=Node *, 1> _Pr=bool (__cdecl *)(Node *,Node *) 1> ]
Reason: cannot convert from
'overloaded-function' to 'bool
(__cdecl *const )(Node *,Node *)' 1><br>
None of the functions with this name
in scope match the target type
Как я могу решить проблему и получить такую же функциональность?
Как правильно определить
vector<set<Node*, bool (*)(Node*,Node*) > > m_F;
Спасибо