template struct QPanda::CNodeCandidate

Composition of each candidate in phase 1.

#include <OBMTQMapping.h>

template <typename T>
struct CNodeCandidate
{
    // fields

    Dep dep;
    T cNode;
    uint32_t weight;

    // methods

    bool operator > (const CNodeCandidate& rhs) const;
};