I'm reading about an algorithm (it's a path-finding algorithm based on A*), and it contains a mathematical symbol I'm unfamiliar with: ∀
Here is the context:
v(s) >= g(s) = min[s'∈pred(s)](v(s') + c(s', s)) ∀s != s[start]
Note: items in [brackets] are supposed to be subscript
Can someone explain the meaning of ∀?