Return whether this vertex is contiguous and not palindromic. */
| 54 | |
| 55 | /** Return whether this vertex is contiguous and not palindromic. */ |
| 56 | bool contiguousOut(const Graph& g, const V& u) |
| 57 | { |
| 58 | return contiguous_out(g, u) |
| 59 | && !u.isPalindrome() |
| 60 | && !u.isPalindrome(SENSE) |
| 61 | && !(*adjacent_vertices(u, g).first).isPalindrome(); |
| 62 | } |
| 63 | |
| 64 | /** Return the in-adjacent vertex. */ |
| 65 | V adjacentVertexIn(const V& u, const Graph& g) |
nothing calls this directly
no test coverage detected