Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/modules/ROOT/pages/visitors/TSPTourVisitor.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ none

[cols=",",]
|===
|`V` |A type that is a model of Dijkstra Visitor.
|`V` |A type that is a model of TSP Tour Visitor.

|`vis` |An object of type `V`.

Expand Down Expand Up @@ -42,4 +42,4 @@ each vertex of the graph when it is visited as part of the TSP tour.
== Models

* xref:visitors/tsp_tour_visitor.adoc[`tsp_tour_visitor`]
* xref:visitors/tsp_tour_len_visitor.adoc[`tsp_tour_len_tsp_visitor`]
* xref:visitors/tsp_tour_len_visitor.adoc[`tsp_tour_len_visitor`]
3 changes: 2 additions & 1 deletion doc/modules/ROOT/pages/visitors/tsp_tour_len_visitor.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Records the vertices of a TSP tour into an output iterator and computes the
total tour length.

*Defined in:* `<boost/graph/metric_tsp_approx.hpp>` +
*Models:* TSP Tour Visitor
*Models:* xref:visitors/TSPTourVisitor.adoc[TSP Tour Visitor] +
*Used with:* xref:algorithms/utility/metric_tsp_approx.adoc[`metric_tsp_approx()`]

== Usage

Expand Down
3 changes: 2 additions & 1 deletion doc/modules/ROOT/pages/visitors/tsp_tour_visitor.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
Records the vertices of a TSP tour into an output iterator.

*Defined in:* `<boost/graph/metric_tsp_approx.hpp>` +
*Models:* TSP Tour Visitor
*Models:* xref:visitors/TSPTourVisitor.adoc[TSP Tour Visitor] +
*Used with:* xref:algorithms/utility/metric_tsp_approx.adoc[`metric_tsp_approx()`]

== Usage

Expand Down
Loading