Maximum Acyclic Subgraph - Multiple Sequence Alignment
MaximumAcyclicSubgraph
Edge.h
1 #pragma once
2 #include "Node.h"
3 #include<string>
4 #include<utility>
5 
6 using std::string;
7 
8 class Edge {
9  public:
10  Edge();
13 };
Definition: Node.h:8
Node * second
second node of the edge
Definition: Edge.h:12
Node * first
first node of the edge
Definition: Edge.h:11
Definition: Edge.h:8
Edge()
default constructor Edge
Definition: Edge.cc:4