Searched refs:opt_a (Results 1 - 1 of 1) sorted by relevance

/seL4-l4v-10.1.1/l4v/tools/autocorres/tests/examples/
H A Dtype_strengthen.c146 unsigned opt_a(unsigned m, unsigned n) { function
148 if(n == 0) return opt_a(m - 1, 1);
149 return opt_a(m - 1, opt_a(m, n - 1));
154 return opt_a(n, n);

Completed in 30 milliseconds