https://gitlab.informatik.uni-bremen.de/grapa/java/maxcliqueenumeration
Revision 11b30123c80c717f2ed14158faeed9ecb3cdc815 authored by Darren Strash on 01 March 2016, 14:08:53 UTC, committed by Darren Strash on 01 March 2016, 14:08:53 UTC
1 parent 6057776
Raw File
Tip revision: 11b30123c80c717f2ed14158faeed9ecb3cdc815 authored by Darren Strash on 01 March 2016, 14:08:53 UTC
Start development on faster bipartite matching
Tip revision: 11b3012
LightWeightReductionSparseFullMISS.h
#ifndef LIGHTWEIGHT_REDUCTION_SPARSE_FULL_MISS_H
#define LIGHTWEIGHT_REDUCTION_SPARSE_FULL_MISS_H

#include "LightWeightReductionSparseStaticOrderMISS.h"
#include "CliqueColoringStrategy.h"

#include <vector>
#include <list>

class LightWeightReductionSparseFullMISS : public LightWeightReductionSparseStaticOrderMISS
{
public:
    LightWeightReductionSparseFullMISS(std::vector<std::vector<int>> const &vAdjacencyArray);

    virtual void Color(std::vector<int> const &vVertexOrder, std::vector<int> &vVerticesToReorder, std::vector<int> &vColors);
};

#endif //LIGHTWEIGHT_REDUCTION_SPARSE_FULL_MISS_H
back to top