graph-v2 icon indicating copy to clipboard operation
graph-v2 copied to clipboard

Hidden and exposed concepts

Open akrzemi1 opened this issue 6 months ago • 0 comments

File graph/graph.hpp contains a lot of concepts, all of which are marked "For exposition only".

The following concepts:

  • basic_targeted_edge
  • basic_sourced_edge
  • basic_sourced_targeted_edge
  • targeted_edge
  • sourced_edge
  • sourced_targeted_edge
  • _common_vertex_range

Are never referencend in any other file. They are only used as building blocks of other concepts. They should be put in a separate namespace, say graph::detail, which will make it abudantly clear that they are just implementaiton details, and will never be proposed for standardization.

The other ones are apparently exposed to the users, so no "For exposition only" remark is appropriate.

I also enclose a diagram of all the concepts and CPOs involved in defining the high-level concepts.

Image

akrzemi1 avatar May 28 '25 15:05 akrzemi1