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
The last two lines of the angelicSearch algorithm appear a bit incorrect.
for eachsequencein REFINEMENTS(hla, outcome, hierarchy) do frontier ← INSERT(APPEND(prefix, sequence, suffix), frontier)
There is no state defined as outcome in the entire algorithm.
We cannot apply the refinements function to a single state as under the angelic semantics we consider an entire set of reachable states.
The refinements function should be modified to accept a set of possible states and it should return all those HLAs which are applicable in at least one of the states in the set.
@norvig Please have a look at this. Please correct me if I am wrong.
The text was updated successfully, but these errors were encountered:
The last two lines of the angelicSearch algorithm appear a bit incorrect.
for each sequence in REFINEMENTS(hla, outcome, hierarchy) do
frontier ← INSERT(APPEND(prefix, sequence, suffix), frontier)
@norvig Please have a look at this. Please correct me if I am wrong.
The text was updated successfully, but these errors were encountered: