Advertisement
cciaranddunne

Untitled

Nov 6th, 2017
2,449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fun b_norm_form strat (m, 0) = (m, false)
  2.   | b_norm_form strat (m, i) = if not (has_b_redex m) then (m, true)
  3.                                else b_norm_form strat (strat m, i-1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement