Skip to content

Commit

Permalink
fix links in archive/boost_docs/libs/graph (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-kwsm committed Apr 28, 2017
1 parent 046658d commit ab852e9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion archive/boost_docs/libs/graph/EventVisitor.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# EventVisitor Concept
このコンセプトは単独イベントビジタのインタフェースを定義する。 EventVisitor は適用メンバ関数 (`operator()`) を持つ。これは、 EventVisitor 内の `event_filter` typedef で指定されるイベントが起きた時に、グラフアルゴリズム内で実行される。 EventVisitor を組み合わせて [EventVistorList](EventVistorList.md) を作成できる。
このコンセプトは単独イベントビジタのインタフェースを定義する。 EventVisitor は適用メンバ関数 (`operator()`) を持つ。これは、 EventVisitor 内の `event_filter` typedef で指定されるイベントが起きた時に、グラフアルゴリズム内で実行される。 EventVisitor を組み合わせて [EventVisitorList](EventVisitorList.md) を作成できる。

以下に、 BGL アルゴリズムによって実行されるイベントのタグのリストを示す。各タグは、アルゴリズムのビジタのメンバ関数と対応している。例えば、[`breadth_first_search()`](breadth_first_search.md)[BFSVisitor](BFSVisitor.md) には `cycle_edge()` というメンバ関数がある。これに対応するタグは `on_cycle_edge` だ。 `operator()` の第1引数は、イベントタグによって決まる、辺か頂点の記述子でなければならない。

Expand Down
4 changes: 2 additions & 2 deletions archive/boost_docs/libs/graph/bellman_visitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ boost/graph/bellman_ford_shortest_paths.hpp


## メンバ関数
このクラスは [BellmanFordVisitor](BellmanFordVisitor.me) に要求される全てのメンバ関数を実装している。それぞれの関数で、適切なイベントが EventVisitorList の中の [EventVisitor](./EventVisitor.md) にディスパッチされる。
このクラスは [BellmanFordVisitor](BellmanFordVisitor.md) に要求される全てのメンバ関数を実装している。それぞれの関数で、適切なイベントが EventVisitorList の中の [EventVisitor](./EventVisitor.md) にディスパッチされる。


## 非メンバ関数
Expand All @@ -31,7 +31,7 @@ boost/graph/bellman_ford_shortest_paths.hpp
## 関連項目
[Visitorコンセプト](visitor_concepts.md)

イベントビジタ: [`predecessor_recorder`](predecessor_recorder.md)[`distance_recorder`](distance_recorder.me)[`time_stamper`](./time_stamper.md)[`property_writer`](property_writer.md)
イベントビジタ: [`predecessor_recorder`](predecessor_recorder.md)[`distance_recorder`](distance_recorder.md)[`time_stamper`](./time_stamper.md)[`property_writer`](property_writer.md)


***
Expand Down
2 changes: 1 addition & 1 deletion archive/boost_docs/libs/graph/depth_first_visit.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void depth_first_visit(IncidenceGraph& g,
* IncidenceGraph[link ./IncidenceGraph.md]
* DFSVisitor[link ./DFSVisitor.md]
この関数は [depth-firstパターン](graph/doc/graph_theory_review.md#dfs-algorithm) を使って、始点 `s` と同じ連結成分中にある全ての頂点を訪れる。時々単独で有用ではあるが、この関数の主な目的は `depth_first_search()` の実装のためにある。
この関数は [depth-firstパターン](graph_theory_review.md#dfs-algorithm) を使って、始点 `s` と同じ連結成分中にある全ての頂点を訪れる。時々単独で有用ではあるが、この関数の主な目的は `depth_first_search()` の実装のためにある。
ユーザによって提供される `DFSVisitor` はアルゴリズムの内側の各イベント・ポイントで行われるアクションを決定する。
Expand Down
2 changes: 1 addition & 1 deletion archive/boost_docs/libs/graph/dfs_visitor.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# dfs_visitor<EventVisitorList>
このクラスは、(`std::pair` を使って作られる) [EventVisitor](EventVisitor) のリストを [DFSVisitor](./DFSVisitor.md) に変換するアダプタである。
このクラスは、(`std::pair` を使って作られる) [EventVisitor](EventVisitor.md) のリストを [DFSVisitor](./DFSVisitor.md) に変換するアダプタである。


## コード例
Expand Down
2 changes: 1 addition & 1 deletion archive/boost_docs/libs/graph/edge_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ boost/graph/edge_list.hpp
## モデル
[EdgeListGraph](./EdgeListGraph)
[EdgeListGraph](EdgeListGraph.md)
## 関連型
Expand Down

0 comments on commit ab852e9

Please sign in to comment.