@param [Vertex] other the
other vertex to compare to @return [Boolean] whether the two
vertices are equal, determined
solelyby{#name} and {#payload} equality
# File lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 92
def shallow_eql?(other)
return true if equal?(other)
other &&
name == other.name &&
payload == other.payload
end