MCPcopy Create free account
hub / github.com/BirolLab/abyss / contiguousOut

Method contiguousOut

Assembly/DotWriter.h:56–62  ·  view source on GitHub ↗

Return whether this vertex is contiguous and not palindromic. */

Source from the content-addressed store, hash-verified

54
55/** Return whether this vertex is contiguous and not palindromic. */
56bool 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. */
65V adjacentVertexIn(const V& u, const Graph& g)

Callers

nothing calls this directly

Calls 3

contiguous_outFunction · 0.85
adjacent_verticesFunction · 0.70
isPalindromeMethod · 0.45

Tested by

no test coverage detected