struct QPanda::TopologyMatch::node

struct node
{
    // fields

    int cost_fixed;
    int cost_heur;
    int cost_heur2;
    int depth;
    std::vector<int> qubits;
    std::vector<int> locations;
    int nswaps;
    int done;
    std::vector<std::vector<edge>> swaps;
};