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
LightWeightReductionMISR.h
#ifndef LIGHTWEIGHT_REDUCTION_MISR_H
#define LIGHTWEIGHT_REDUCTION_MISR_H

#include "LightWeightReductionMISQ.h"
#include "CliqueColoringStrategy.h"

#include <vector>
#include <list>

class LightWeightReductionMISR : public LightWeightReductionMISQ
{
public:
    LightWeightReductionMISR(std::vector<std::vector<char>> const &vAdjacencyMatrix, std::vector<std::vector<int>> const &adjacencyArray);

    virtual void InitializeOrder(std::vector<int> &P, std::vector<int> &vVertexOrder, std::vector<int> &vColors);
};
#endif //LIGHTWEIGHT_REDUCTION_MISR_H
back to top