DIAlign
similarityMatrix.h
1 #ifndef SIMILARITY_MATRIX_H
2 #define SIMILARITY_MATRIX_H
3 
4 #include <vector>
5 
6 namespace DIAlign
7 {
14  struct SimMatrix
15  {
16  std::vector<double> data;
17  int n_row;
18  int n_col;
19  };
20 
26  // TODO: It should be called Path matrix.
28  {
29  std::vector<bool> data;
30  int n_row;
31  int n_col;
32  };
33 } // namespace DIAlign
34 
35 #endif // SIMILARITY_MATRIX_H
Generic namespace for all classes and functions of DIAlign.
Definition: affinealignment.cpp:29
std::vector< double > data
Similarity data.
Definition: similarityMatrix.h:16
Path matrix.
Definition: similarityMatrix.h:27
Similarity matrix.
Definition: similarityMatrix.h:14