Fix dead links (#79)

This commit is contained in:
E Kawashima 2016-11-02 23:51:15 +09:00 committed by Noel Belcourt
parent cf6e8efdf4
commit c48c80f51f
7 changed files with 11 additions and 10 deletions

View File

@ -13,12 +13,12 @@ Bugs and feature requests can be reported through the [Trac issue tracker](https
You can submit your changes through a [pull request](https://github.com/boostorg/graph/pulls). One of the maintainers will take a look (remember that it can take some time).
There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost [mailing-list](https://groups.google.com/forum/#!forum/boost-devel-archive) using the tag [graph].
There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost [mailing-list](http://lists.boost.org/mailman/listinfo.cgi/boost-users) using the tag [graph].
## Development ##
Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://svn.boost.org/trac/boost/wiki/TryModBoost#InstallingModularBoost)):
Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)):
git clone https://github.com/boostorg/boost
cd boost

View File

@ -33,7 +33,7 @@ or form.</p>
<li><a href="http://www.bioconductor.org/repository/devel/vignette/RBGL.pdf">
BGL interface for language R.</a></li>
<li><a href="http://www.cuj.com/documents/s=8470/cuj0307tan/">CUJ Article about Electronic Design Automation</a></li>
<li><a href="http://rubyforge.org/projects/rgl/">A BGL-inspired Ruby Graph Library</a></li>
<li><a href="http://www.rubydoc.info/github/monora/rgl">A BGL-inspired Ruby Graph Library</a></li>
<li><a href="http://www.codeproject.com/cs/miscctrl/quickgraph.asp">A BGL-inspired C# Graph Library</a></li>
<li><a href="http://map1.squeakfoundation.org/sm/package/5729d80a-822b-4bc2-9420-ef7ecaea8553">A BGL-inspired Squeak (Smalltalk) Graph Library</a></li>
<li><a href="http://www.datasim.nl/education/coursedetails.asp?coursecategory=CPP&coursecode=ADCPP">BGL course at DataSim</a></li>

View File

@ -70,7 +70,7 @@ write_graphviz_dp(std::ostream&amp; out, const Graph&amp; g,
<p>
This is to write a BGL graph object into an output stream in graphviz dot format
so that users can make use of <a href="http://www.research.att.com/sw/tools/graphviz/">AT&amp;T graphviz</a>
so that users can make use of <a href="http://www.graphviz.org/">graphviz</a>
to draw a picture with nice layout.
<p>
The first version with two parameters will write the graph into a

View File

@ -18,7 +18,7 @@
// and page 34 or http://www.graphviz.org/pdf/dotguide.pdf
//
// See documentation for this code at:
// http://www.boost.org/libs/graph/doc/read-graphviz.html
// http://www.boost.org/libs/graph/doc/read_graphviz.html
//
// Author: Jeremiah Willcock

View File

@ -14,7 +14,7 @@
// http://www.graphviz.org/cvs/doc/info/lang.html
//
// See documentation for this code at:
// http://www.boost.org/libs/graph/doc/read-graphviz.html
// http://www.boost.org/libs/graph/doc/read_graphviz.html
//
// Author: Ronald Garcia

View File

@ -10,10 +10,11 @@
#ifndef BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
#define BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
// Gursoy-Atun graph layout, based on:
// Gürsoy-Atun graph layout, based on:
// "Neighbourhood Preserving Load Balancing: A Self-Organizing Approach"
// in EuroPar 2000, p. 234 of LNCS 1900
// http://springerlink.metapress.com/link.asp?id=pcu07ew5rhexp9yt
// in 6th International Euro-Par Conference Munich, Germany, August 29 September 1, 2000 Proceedings,
// pp 234-241
// http://dx.doi.org/10.1007/3-540-44520-X_32
#include <boost/config/no_tr1/cmath.hpp>
#include <boost/throw_exception.hpp>

View File

@ -18,7 +18,7 @@
// and page 34 or http://www.graphviz.org/pdf/dotguide.pdf
//
// See documentation for this code at:
// http://www.boost.org/libs/graph/doc/read-graphviz.html
// http://www.boost.org/libs/graph/doc/read_graphviz.html
//
// Author: Jeremiah Willcock