pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update Boost to 1.33.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/b607f3a099fd
branches: trunk
changeset: 498116:b607f3a099fd
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Fri Aug 12 20:58:45 2005 +0000
description:
Update Boost to 1.33.0:
New Libraries
* Iostreams Library: Framework for defining streams, stream
buffers and i/o filters, from Jonathan Turkanis.
* Functional/Hash Library: A TR1 hash function object that can be
extended to hash user defined types, from Daniel James.
* Parameter Library: Write functions that accept arguments by
name: especially useful when a function has more than one
argument with a useful default value, since named arguments can
be passed in any order.
* Pointer Container Library: Containers for storing heap-allocated
polymorphic objects to ease OO-programming, from Thorsten Ottosen.
* Wave: Standards conformant implementation of the mandated
C99/C++ preprocessor functionality packed behind an easy to use
iterator interface, from Hartmut Kaiser.
Updated Libraries
* Assignment Library: Support for Pointer Container Library and
new efficient functions ref_list_of() and cref_list_of() for
generating anonymous ranges.
* Bind Library: Bind expressions now support comparisons and
negation. Example: bind(&X::name, _1) < bind(&X::name, _2).
* Date-Time Library:
o Added local time and time zone classes.
o Added format-based Input/Output facets.
o For a complete list of changes, see the library change history.
* Graph Library: Introduced several new algorithms and improved
existing algorithms:
o Experimental Python bindings, from Doug Gregor and Indiana
University.
o floyd_warshall_all_pairs_shortest_paths, from Lauren Foutz
and Scott Hill.
o astar_search, from Kristopher Beevers and Jufeng Peng.
o fruchterman_reingold_force_directed_layout, from Doug
Gregor and Indiana University.
o biconnected_components and articulation_points, from
Jeremy Siek, Janusz Piwowarski, and Doug Gregor.
o sequential_vertex_coloring has been updated, tested, and
documented.
o gursoy_atun_layout, from Jeremiah Willcock and Doug Gregor
of Indiana University.
o king_ordering, from D. Kevin McGrath of Indiana University.
o cuthill_mckee ordering has been recast as an invocation of
breadth_first_search and now supports graphs with multiple
components.
o dijkstra_shortest_paths now uses a relaxed heap as
its priority queue, improving its complexity to O(V log V) and
improving real-world performance for larger graphs.
o read_graphviz now has a new, Spirit-based parser that
works for all graph types and supports arbitrary
properties on the graph, from Ron Garcia. The old,
Bison-based GraphViz reader has been deprecated and will
be removed in a future Boost release. write_graphviz also
supports dynamic properties.
o subgraph: get_property now refers to the subgraph
property, not the root graph's property.
o See the history for additional changes and bug fixes.
* Multi-index Containers Library:
o New hashed indices.
o Added serialization support.
o For a complete list of changes, see the library release notes.
* Program Options Library:
o Option descriptions are now printed with word wrapping.
o Command line parser can bypass unregistered options,
instead of throwing.
o Removed support for "implicit" (optional) values.
o New customization method
'command_line_parser::extra_style_parser'. Unlike
'additional_parser', allows the user to parse several
tokens and return a vector of options, not just a single
option.
o Work with disabled exceptions.
* Property Map Library: Introduced the dynamic properties class,
which provides dynamically-typed access to a set of property maps.
* Random Number Library: improved initialization for
mersenne_twister, algorithm by Makoto Matsumoto and Takuji
Nishimura, implemented for Boost by Jens Maurer.
Note: All test vectors for mersenne_twisters constructed or
seeded without parameters or with a single unsigned int parameter
become invalid.
* Range Library: Minor addition of convenience functions to
iterator range like front(), back() and operator[]().
* Regex Library:
o Rewritten front end parser now supports (?imsx-imsx)
constructs, plus lookbehind assertions and conditional
expressions.
o Thin wrapper classes improve integration with MFC/ATL code.
o Full (optional) Unicode support via the ICU library.
Refer to the regex history page for more information on these
and other small changes.
* Serialization Library:
o DLL version.
o Auto-linking.
o Serialization of variants.
o Improved seialization of shared pointers.
* Signals Library: added slot blocking/unblocking, from Frantz
Maerten. Huge improvements to signal invocation performance from
Robert Zeh.
This update has been tested on NetBSD 2.0.2, 3.0_BETA and current.
diffstat:
devel/boost-build/buildlink3.mk | 4 +-
devel/boost-docs/PLIST | 988 +++++++++++++++++++++++++++++++++----
devel/boost-headers/PLIST | 558 ++++++++++++++++++--
devel/boost-headers/buildlink3.mk | 4 +-
devel/boost-libs/Makefile | 4 +-
devel/boost-libs/PLIST | 8 +-
devel/boost-libs/buildlink3.mk | 4 +-
devel/boost-python/Makefile | 4 +-
devel/boost-python/buildlink3.mk | 4 +-
meta-pkgs/boost/Makefile | 8 +-
meta-pkgs/boost/Makefile.common | 6 +-
meta-pkgs/boost/distinfo | 12 +-
meta-pkgs/boost/patches/patch-ac | 32 +-
meta-pkgs/boost/patches/patch-ad | 10 +-
14 files changed, 1412 insertions(+), 234 deletions(-)
diffs (truncated from 3230 to 300 lines):
diff -r 0f15fce0d6af -r b607f3a099fd devel/boost-build/buildlink3.mk
--- a/devel/boost-build/buildlink3.mk Fri Aug 12 20:23:43 2005 +0000
+++ b/devel/boost-build/buildlink3.mk Fri Aug 12 20:58:45 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2005/02/26 22:48:35 jmmv Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2005/08/12 20:58:45 jmmv Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
BOOST_BUILD_BUILDLINK3_MK:= ${BOOST_BUILD_BUILDLINK3_MK}+
@@ -11,7 +11,7 @@
BUILDLINK_PACKAGES+= boost-build
.if !empty(BOOST_BUILD_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.boost-build+= boost-build>=1.32.0
+BUILDLINK_DEPENDS.boost-build+= boost-build>=1.33.*
BUILDLINK_DEPMETHOD.boost-build?= build
BUILDLINK_PKGSRCDIR.boost-build?= ../../devel/boost-build
.endif # BOOST_BUILD_BUILDLINK3_MK
diff -r 0f15fce0d6af -r b607f3a099fd devel/boost-docs/PLIST
--- a/devel/boost-docs/PLIST Fri Aug 12 20:23:43 2005 +0000
+++ b/devel/boost-docs/PLIST Fri Aug 12 20:58:45 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2005/02/26 22:48:35 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/08/12 20:58:45 jmmv Exp $
share/doc/boost/boost.css
share/doc/boost/boost.png
share/doc/boost/google_logo_40wht.png
@@ -18,6 +18,7 @@
share/doc/boost/libs/algorithm/string/doc/intro.xml
share/doc/boost/libs/algorithm/string/doc/quickref.xml
share/doc/boost/libs/algorithm/string/doc/rationale.xml
+share/doc/boost/libs/algorithm/string/doc/release_notes.xml
share/doc/boost/libs/algorithm/string/doc/string_algo.xml
share/doc/boost/libs/algorithm/string/doc/usage.xml
share/doc/boost/libs/algorithm/string/example/Jamfile
@@ -92,8 +93,9 @@
share/doc/boost/libs/config/config.htm
share/doc/boost/libs/config/configure
share/doc/boost/libs/config/index.html
+share/doc/boost/libs/config/tools/Jamfile
share/doc/boost/libs/config/tools/configure.in
-share/doc/boost/libs/config/tools/generate
+share/doc/boost/libs/config/tools/generate.cpp
share/doc/boost/libs/conversion/cast.htm
share/doc/boost/libs/conversion/cast_test.cpp
share/doc/boost/libs/conversion/index.html
@@ -118,16 +120,23 @@
share/doc/boost/libs/date_time/example/gregorian/days_since_year_start.cpp
share/doc/boost/libs/date_time/example/gregorian/days_till_new_year.cpp
share/doc/boost/libs/date_time/example/gregorian/end_of_month_day.cpp
+share/doc/boost/libs/date_time/example/gregorian/find_last_day_of_months.cpp
share/doc/boost/libs/date_time/example/gregorian/localization.cpp
share/doc/boost/libs/date_time/example/gregorian/month_add.cpp
share/doc/boost/libs/date_time/example/gregorian/period_calc.cpp
share/doc/boost/libs/date_time/example/gregorian/print_holidays.cpp
share/doc/boost/libs/date_time/example/gregorian/print_month.cpp
+share/doc/boost/libs/date_time/example/local_time/calc_rules.cpp
+share/doc/boost/libs/date_time/example/local_time/flight.cpp
+share/doc/boost/libs/date_time/example/local_time/local_date_time.cpp
+share/doc/boost/libs/date_time/example/local_time/seconds_since_epoch.cpp
+share/doc/boost/libs/date_time/example/local_time/simple_time_zone.cpp
share/doc/boost/libs/date_time/example/posix_time/Jamfile.v2
share/doc/boost/libs/date_time/example/posix_time/local_utc_conversion.cpp
share/doc/boost/libs/date_time/example/posix_time/print_hours.cpp
share/doc/boost/libs/date_time/example/posix_time/time_math.cpp
share/doc/boost/libs/date_time/example/posix_time/time_periods.cpp
+share/doc/boost/libs/date_time/example/tutorial/io_tutorial.cpp
share/doc/boost/libs/date_time/index.html
share/doc/boost/libs/date_time/src/date_time.doc
share/doc/boost/libs/date_time/src/gregorian/date_generators.cpp
@@ -141,55 +150,81 @@
share/doc/boost/libs/date_time/xmldoc/acknowledgements.xml
share/doc/boost/libs/date_time/xmldoc/buildinfo.xml
share/doc/boost/libs/date_time/xmldoc/calculations.xml
-share/doc/boost/libs/date_time/xmldoc/catalog.xml
share/doc/boost/libs/date_time/xmldoc/changes.xml
share/doc/boost/libs/date_time/xmldoc/conceptual.xml
+share/doc/boost/libs/date_time/xmldoc/custom_time_zone.xml
share/doc/boost/libs/date_time/xmldoc/date_algorithms.xml
share/doc/boost/libs/date_time/xmldoc/date_class.xml
share/doc/boost/libs/date_time/xmldoc/date_duration.xml
+share/doc/boost/libs/date_time/xmldoc/date_facet.xml
+share/doc/boost/libs/date_time/xmldoc/date_input_facet.xml
share/doc/boost/libs/date_time/xmldoc/date_iterators.xml
share/doc/boost/libs/date_time/xmldoc/date_period.xml
share/doc/boost/libs/date_time/xmldoc/date_time.xml
share/doc/boost/libs/date_time/xmldoc/date_time_autodoc.boostbook
-share/doc/boost/libs/date_time/xmldoc/day_clock_class.xml
+share/doc/boost/libs/date_time/xmldoc/date_time_docs_howto.html
+share/doc/boost/libs/date_time/xmldoc/date_time_fo_stylesheet.xsl
+share/doc/boost/libs/date_time/xmldoc/date_time_io.xml
share/doc/boost/libs/date_time/xmldoc/design_concepts.xml
share/doc/boost/libs/date_time/xmldoc/design_goals.xml
share/doc/boost/libs/date_time/xmldoc/details.xml
share/doc/boost/libs/date_time/xmldoc/domain_concepts.xml
share/doc/boost/libs/date_time/xmldoc/doxy.xml
+share/doc/boost/libs/date_time/xmldoc/ex_calc_rules.xml
share/doc/boost/libs/date_time/xmldoc/ex_date_period_calc.xml
share/doc/boost/libs/date_time/xmldoc/ex_dates_as_strings.xml
share/doc/boost/libs/date_time/xmldoc/ex_days_alive.xml
share/doc/boost/libs/date_time/xmldoc/ex_days_between_new_years.xml
share/doc/boost/libs/date_time/xmldoc/ex_end_of_month_day.xml
+share/doc/boost/libs/date_time/xmldoc/ex_find_last_day_of_months.xml
+share/doc/boost/libs/date_time/xmldoc/ex_flight.xml
share/doc/boost/libs/date_time/xmldoc/ex_local_utc_conversion.xml
share/doc/boost/libs/date_time/xmldoc/ex_localization.xml
+share/doc/boost/libs/date_time/xmldoc/ex_meeting_planner.xml
share/doc/boost/libs/date_time/xmldoc/ex_month_add.xml
share/doc/boost/libs/date_time/xmldoc/ex_print_holidays.xml
share/doc/boost/libs/date_time/xmldoc/ex_print_hours.xml
share/doc/boost/libs/date_time/xmldoc/ex_print_month.xml
+share/doc/boost/libs/date_time/xmldoc/ex_seconds_since_epoch.xml
+share/doc/boost/libs/date_time/xmldoc/ex_simple_time_zone.xml
share/doc/boost/libs/date_time/xmldoc/ex_time_math.xml
share/doc/boost/libs/date_time/xmldoc/ex_time_periods.xml
share/doc/boost/libs/date_time/xmldoc/examples.xml
+share/doc/boost/libs/date_time/xmldoc/exclusive_date_time.xml
+share/doc/boost/libs/date_time/xmldoc/format_flags.xml
share/doc/boost/libs/date_time/xmldoc/gregorian.xml
share/doc/boost/libs/date_time/xmldoc/gregorian_autodoc.boostbook
share/doc/boost/libs/date_time/xmldoc/gregorian_calendar.xml
+share/doc/boost/libs/date_time/xmldoc/io_objects.xml
+share/doc/boost/libs/date_time/xmldoc/io_tutorial.xml
share/doc/boost/libs/date_time/xmldoc/license.xml
-share/doc/boost/libs/date_time/xmldoc/local_time_adjust.xml
+share/doc/boost/libs/date_time/xmldoc/local_date_time.xml
+share/doc/boost/libs/date_time/xmldoc/local_time.xml
+share/doc/boost/libs/date_time/xmldoc/local_time_autodoc.boostbook
+share/doc/boost/libs/date_time/xmldoc/local_time_period.xml
share/doc/boost/libs/date_time/xmldoc/motivation.xml
share/doc/boost/libs/date_time/xmldoc/posix_time.xml
share/doc/boost/libs/date_time/xmldoc/posix_time_autodoc.boostbook
+share/doc/boost/libs/date_time/xmldoc/posix_time_zone.xml
share/doc/boost/libs/date_time/xmldoc/ptime_class.xml
share/doc/boost/libs/date_time/xmldoc/ref_tag_fix.pl
share/doc/boost/libs/date_time/xmldoc/references.xml
share/doc/boost/libs/date_time/xmldoc/serialization.xml
+share/doc/boost/libs/date_time/xmldoc/snap_to_details.xml
+share/doc/boost/libs/date_time/xmldoc/table_template.xml
share/doc/boost/libs/date_time/xmldoc/terminology.xml
share/doc/boost/libs/date_time/xmldoc/tests.xml
share/doc/boost/libs/date_time/xmldoc/time_duration.xml
+share/doc/boost/libs/date_time/xmldoc/time_facet.xml
+share/doc/boost/libs/date_time/xmldoc/time_input_facet.xml
share/doc/boost/libs/date_time/xmldoc/time_iterators.xml
share/doc/boost/libs/date_time/xmldoc/time_period.xml
+share/doc/boost/libs/date_time/xmldoc/time_zone.xml
+share/doc/boost/libs/date_time/xmldoc/time_zone_base.xml
share/doc/boost/libs/date_time/xmldoc/tradeoffs.xml
+share/doc/boost/libs/date_time/xmldoc/tz_database.xml
share/doc/boost/libs/date_time/xmldoc/usage_examples.xml
+share/doc/boost/libs/detail/utf8_codecvt_facet.cpp
share/doc/boost/libs/disjoint_sets/Jamfile
share/doc/boost/libs/disjoint_sets/bibliography.html
share/doc/boost/libs/disjoint_sets/disjoint_set_test.cpp
@@ -256,11 +291,22 @@
share/doc/boost/libs/functional/binders.html
share/doc/boost/libs/functional/function_test.cpp
share/doc/boost/libs/functional/function_traits.html
+share/doc/boost/libs/functional/hash/doc/Jamfile.v2
+share/doc/boost/libs/functional/hash/doc/hash.qbk
+share/doc/boost/libs/functional/hash/examples/Jamfile.v2
+share/doc/boost/libs/functional/hash/examples/books.cpp
+share/doc/boost/libs/functional/hash/examples/books.hpp
+share/doc/boost/libs/functional/hash/examples/point.cpp
+share/doc/boost/libs/functional/hash/examples/portable.cpp
+share/doc/boost/libs/functional/hash/index.html
share/doc/boost/libs/functional/index.html
share/doc/boost/libs/functional/mem_fun.html
share/doc/boost/libs/functional/negators.html
share/doc/boost/libs/functional/ptr_fun.html
+share/doc/boost/libs/functional/sublibs
share/doc/boost/libs/graph/LICENSE
+share/doc/boost/libs/graph/doc/AStarHeuristic.html
+share/doc/boost/libs/graph/doc/AStarVisitor.html
share/doc/boost/libs/graph/doc/AdjacencyGraph.html
share/doc/boost/libs/graph/doc/AdjacencyMatrix.html
share/doc/boost/libs/graph/doc/BFSVisitor.html
@@ -292,6 +338,9 @@
share/doc/boost/libs/graph/doc/adjacency_list.html
share/doc/boost/libs/graph/doc/adjacency_list_traits.html
share/doc/boost/libs/graph/doc/adjacency_matrix.html
+share/doc/boost/libs/graph/doc/astar_heuristic.html
+share/doc/boost/libs/graph/doc/astar_search.html
+share/doc/boost/libs/graph/doc/astar_visitor.html
share/doc/boost/libs/graph/doc/awpaper.sty
share/doc/boost/libs/graph/doc/bandwidth.html
share/doc/boost/libs/graph/doc/bc_clustering.html
@@ -302,6 +351,7 @@
share/doc/boost/libs/graph/doc/bgl-cover.jpg
share/doc/boost/libs/graph/doc/bgl_named_params.html
share/doc/boost/libs/graph/doc/bibliography.html
+share/doc/boost/libs/graph/doc/biconnected_components.html
share/doc/boost/libs/graph/doc/biconnected_components.w
share/doc/boost/libs/graph/doc/breadth_first_search.html
share/doc/boost/libs/graph/doc/breadth_first_visit.html
@@ -313,6 +363,7 @@
share/doc/boost/libs/graph/doc/copy_graph.html
share/doc/boost/libs/graph/doc/cuthill_mckee_ordering.html
share/doc/boost/libs/graph/doc/dag_shortest_paths.html
+share/doc/boost/libs/graph/doc/default.css
share/doc/boost/libs/graph/doc/depth_first_search.html
share/doc/boost/libs/graph/doc/depth_first_visit.html
share/doc/boost/libs/graph/doc/dfs_visitor.html
@@ -322,6 +373,7 @@
share/doc/boost/libs/graph/doc/edge_list.html
share/doc/boost/libs/graph/doc/edmunds_karp_max_flow.html
share/doc/boost/libs/graph/doc/eg1-iso.cpp
+share/doc/boost/libs/graph/doc/erdos_renyi_generator.html
share/doc/boost/libs/graph/doc/exception.html
share/doc/boost/libs/graph/doc/faq.html
share/doc/boost/libs/graph/doc/figs/Makefile
@@ -346,6 +398,8 @@
share/doc/boost/libs/graph/doc/figs/bfs_family.gif
share/doc/boost/libs/graph/doc/figs/bfs_visitor.fig
share/doc/boost/libs/graph/doc/figs/bfs_visitor.gif
+share/doc/boost/libs/graph/doc/figs/biconnected.dot
+share/doc/boost/libs/graph/doc/figs/biconnected.png
share/doc/boost/libs/graph/doc/figs/central_point_dominance.gif
share/doc/boost/libs/graph/doc/figs/concepts.fig
share/doc/boost/libs/graph/doc/figs/concepts.gif
@@ -367,16 +421,23 @@
share/doc/boost/libs/graph/doc/figs/file_dep.gif
share/doc/boost/libs/graph/doc/figs/forward_or_cross_edges.fig
share/doc/boost/libs/graph/doc/figs/forward_or_cross_edges.gif
+share/doc/boost/libs/graph/doc/figs/ga-circle.png
+share/doc/boost/libs/graph/doc/figs/ga-heart.png
+share/doc/boost/libs/graph/doc/figs/ga-square.png
share/doc/boost/libs/graph/doc/figs/graph_search.fig
share/doc/boost/libs/graph/doc/figs/graph_search.gif
share/doc/boost/libs/graph/doc/figs/knights_tour.fig
share/doc/boost/libs/graph/doc/figs/knights_tour.gif
share/doc/boost/libs/graph/doc/figs/max-flow.gif
+share/doc/boost/libs/graph/doc/figs/python.gif
+share/doc/boost/libs/graph/doc/figs/python_ico.gif
share/doc/boost/libs/graph/doc/figs/quick_start.fig
share/doc/boost/libs/graph/doc/figs/quick_start.gif
share/doc/boost/libs/graph/doc/figs/rel_betweenness_centrality.gif
share/doc/boost/libs/graph/doc/figs/search_states.fig
share/doc/boost/libs/graph/doc/figs/search_states.gif
+share/doc/boost/libs/graph/doc/figs/seq_vertex_coloring.graffle
+share/doc/boost/libs/graph/doc/figs/sequential_vertex_coloring.png
share/doc/boost/libs/graph/doc/figs/sigma_st.gif
share/doc/boost/libs/graph/doc/figs/sigma_stv.gif
share/doc/boost/libs/graph/doc/figs/stl_iter.fig
@@ -399,10 +460,13 @@
share/doc/boost/libs/graph/doc/figs/wheel_graph.gif
share/doc/boost/libs/graph/doc/file_dependency_example.html
share/doc/boost/libs/graph/doc/filtered_graph.html
+share/doc/boost/libs/graph/doc/floyd_warshall_shortest.html
+share/doc/boost/libs/graph/doc/fruchterman_reingold.html
share/doc/boost/libs/graph/doc/graph_coloring.html
share/doc/boost/libs/graph/doc/graph_concepts.html
share/doc/boost/libs/graph/doc/graph_theory_review.html
share/doc/boost/libs/graph/doc/graph_traits.html
+share/doc/boost/libs/graph/doc/gursoy_atun_layout.html
share/doc/boost/libs/graph/doc/history.html
share/doc/boost/libs/graph/doc/incident.html
share/doc/boost/libs/graph/doc/incremental_components.html
@@ -419,6 +483,7 @@
share/doc/boost/libs/graph/doc/jwebfrob.pl
share/doc/boost/libs/graph/doc/kamada_kawai_spring_layout.html
share/doc/boost/libs/graph/doc/kevin_bacon.html
+share/doc/boost/libs/graph/doc/king_ordering.html
share/doc/boost/libs/graph/doc/known_problems.html
share/doc/boost/libs/graph/doc/kruskal_min_spanning_tree.html
share/doc/boost/libs/graph/doc/layout_tolerance.html
@@ -430,6 +495,7 @@
share/doc/boost/libs/graph/doc/mungeaux.csh
share/doc/boost/libs/graph/doc/null_visitor.html
share/doc/boost/libs/graph/doc/opposite.html
+share/doc/boost/libs/graph/doc/plod_generator.html
share/doc/boost/libs/graph/doc/predecessor_recorder.html
share/doc/boost/libs/graph/doc/prim_minimum_spanning_tree.html
share/doc/boost/libs/graph/doc/profile.htm
@@ -438,12 +504,17 @@
share/doc/boost/libs/graph/doc/property_writer.html
share/doc/boost/libs/graph/doc/publications.html
share/doc/boost/libs/graph/doc/push_relabel_max_flow.html
+share/doc/boost/libs/graph/doc/python.html
share/doc/boost/libs/graph/doc/quick_tour.html
share/doc/boost/libs/graph/doc/random.html
-share/doc/boost/libs/graph/doc/read-graphviz.html
+share/doc/boost/libs/graph/doc/random_layout.html
+share/doc/boost/libs/graph/doc/read_graphviz.html
+share/doc/boost/libs/graph/doc/read_graphviz.rst
share/doc/boost/libs/graph/doc/reverse_graph.html
+share/doc/boost/libs/graph/doc/sequential_vertex_coloring.html
share/doc/boost/libs/graph/doc/sloan_ordering.htm
share/doc/boost/libs/graph/doc/sloan_start_end_vertices.htm
+share/doc/boost/libs/graph/doc/small_world_generator.html
share/doc/boost/libs/graph/doc/sparse_matrix_ordering.html
share/doc/boost/libs/graph/doc/stanford_graph.html
share/doc/boost/libs/graph/doc/strong_components.html
@@ -473,6 +544,7 @@
share/doc/boost/libs/graph/example/adjacency_list.expected
share/doc/boost/libs/graph/example/adjacency_list_io.cpp
share/doc/boost/libs/graph/example/adjacency_matrix.cpp
+share/doc/boost/libs/graph/example/astar-cities.cpp
share/doc/boost/libs/graph/example/bcsstk01
Home |
Main Index |
Thread Index |
Old Index