You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #23, we introduced a new algorithm which tries one type substitution, then backtracks and tries another substitution if it doesn't work. Backtracking is scary, because it could end up doing an exponential amount of work. And in this case it doesn't seem like the backtracking is needed, because we have a Fun patternF _ we need to pattern-match on, so we don't need to try many possibilities, we only have to try the ones which can potentially get us something of the form Fun patternF _.
The text was updated successfully, but these errors were encountered:
In #23, we introduced a new algorithm which tries one type substitution, then backtracks and tries another substitution if it doesn't work. Backtracking is scary, because it could end up doing an exponential amount of work. And in this case it doesn't seem like the backtracking is needed, because we have a
Fun patternF _
we need to pattern-match on, so we don't need to try many possibilities, we only have to try the ones which can potentially get us something of the formFun patternF _
.The text was updated successfully, but these errors were encountered: