Skip to content

Commit

Permalink
fix regression fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Woosub-Kim committed Jan 8, 2024
1 parent 10289c6 commit c6f4f2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/strucclustutils/createcomplexreport.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define FOLDSEEK_CREATECOMPLEXREPORT_H
#include "Matcher.h"
#include "MemoryMapped.h"
#include "set"

const unsigned int NOT_AVAILABLE_CHAIN_KEY = 4294967295;
const double MAX_ASSIGNED_CHAIN_RATIO = 1.0;
Expand All @@ -16,7 +17,8 @@ const unsigned int MIN_PTS = 2;
typedef std::pair<std::string, std::string> compNameChainName_t;
typedef std::map<unsigned int, unsigned int> chainKeyToComplexId_t;
typedef std::map<unsigned int, std::vector<unsigned int>> complexIdToChainKeys_t;
typedef std::vector<std::vector<unsigned int>> cluster_t;
//typedef std::vector<std::vector<unsigned int>> cluster_t;
typedef std::set<std::vector<unsigned int>> cluster_t;
typedef std::map<std::pair<unsigned int, unsigned int>, double> distMap_t;
typedef std::string resultToWrite_t;
typedef std::string chainName_t;
Expand Down

0 comments on commit c6f4f2a

Please sign in to comment.