1 #include "problem.hpp"
2 #include <iostream>
3 
main(void)4 int main(void)
5 {
6     Problem p(3);
7     p.p_stack.sanity_check();
8     p.p_stack.split(1,2);
9     p.p_stack.sanity_check();
10     assert(p.p_stack.fixed_cells().size() == 1);
11     assert(p.p_stack.fixed_cells()[1] == 1);
12     assert(*(p.p_stack.cellStartPtr(1)) == 1);
13 }