All pastes #2119862 Raw Edit

Mine

public text v1 · immutable
#2119862 ·published 2012-02-19 03:08 UTC
rendered paste body
	public static String lClosure(State state, ArrayList<TransitionRule> alist) {
		Boolean flag = false;
		Set closure = new TreeSet();
		TransitionRule check = null;
  
		for(int i = 0; i<alist.size(); i++) {
		    check = alist.get(i);
		if(check.CState.Name.equals(state.Name) && check.Input.equals("l")) {
			      return lClosure(check.NState, alist);
	
			
		}