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 // tree::NODE<int> root{"T0",1};
19 
20 // tree::NODE<Pstates<int> > cr1{"T01", 3};
21 // tree::NODE<Pstates<int> > cl1{"T00",2};
22    tree::NODE<tree::Pstates<int> > root{"T0",node_status};
23    return 0;
24 }
25