1 #include<cstdlib>
2 #include <iostream>
3 #include "nodes.h"
4 using namespace std;
5
6 int main(int argv, char ** argc)
7 {
8 tree::state<int> a{"A", 65500};
9 tree::state<int> c{"C", 0};
10 tree::state<int> g{"G", 65500};
11 tree::state<int> t{"T", 65500};
12
13 vector< tree::state<int> > posible_states = {a,c,g,t};
14
15 tree::Pstates<int> node_status{posible_states};
16 tree::NODE<int> cr1{"T01", 3};
17 tree::NODE<int> cl1{"T00",2};
18
19
20
21
22 tree::NODE<tree::Pstates<int> > root{"T0",node_status};
23 return 0;
24 }
25