VertexAndEdgeListGraph

The VertexAndEdgeListGraph concept refines the VertexListGraph and the EdgeListGraph concepts. No further requirements are added.

Models

  • adjacency_list

Concept Checking Class

  template <class G>
  struct VertexAndEdgeListGraphConcept
  {
    void constraints() {
      BOOST_CONCEPT_ASSERT(( VertexListGraphConcept<G> ));
      BOOST_CONCEPT_ASSERT(( EdgeListGraphConcept<G> ));
    }
  };