Boost logo

Boost-Commit :

From: john_at_[hidden]
Date: 2008-03-20 06:35:20


Author: johnmaddock
Date: 2008-03-20 06:35:19 EDT (Thu, 20 Mar 2008)
New Revision: 43736
URL: http://svn.boost.org/trac/boost/changeset/43736

Log:
Added multi-array news and fixed graph news.
Text files modified:
   website/public_html/beta/feed/history.rss | 48 ++++++++++++++++++++++++++++++++++++++++
   website/public_html/beta/feed/history/boost_1_35_0.qbk | 7 +++++
   website/public_html/beta/feed/news.rss | 48 ++++++++++++++++++++++++++++++++++++++++
   3 files changed, 102 insertions(+), 1 deletions(-)

Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss (original)
+++ website/public_html/beta/feed/history.rss 2008-03-20 06:35:19 EDT (Thu, 20 Mar 2008)
@@ -85,6 +85,38 @@
     <h3><span class="link">Updated Libraries</span></h3>
     <ul>
       <li>
+ <span class="library"><a href="/libs/graph/doc/index.html">Graph</a>:</span>
+ Generic graph
+ components and algorithms. Highlights:
+ <ul>
+ <li>
+ <code><span class="identifier">kolmogorov_max_flow</span></code>,
+ from Stephan Diederich as part of the 2006 Google Summer of Code.
+ </li>
+ <li>
+ <code><span class="identifier">read_dimacs_max_flow</span></code>
+ and <code><span class="identifier">write_dimacs_max_flow</span></code>
+ for max-flow problems, from Stephan Diederich.
+ </li>
+ <li>
+ <code><span class="identifier">read_graphml</span></code> and <code><span class="identifier">write_graphml</span></code> for GraphML input/output,
+ from Tiago de Paula Peixoto.
+ </li>
+ <li>
+ <code><span class="identifier">minimum_cycle_ratio</span></code> and
+ <code><span class="identifier">maximum_cycle_ratio</span></code>,
+ from Dmitry Bufistov and Andrey Parfenov.
+ </li>
+ <li>
+ <code><span class="identifier">boyer_myrvold_planarity_test</span></code>,
+ along with a suite of algorithms for planar graphs, from Aaron Windsor.
+ </li>
+ <li>
+ LEDA Adaptor improvements, from Jens Müller.
+ </li>
+ </ul>
+ </li>
+ <li>
         <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
   A TR1 hash
         function object, from Daniel James. Highlights:
@@ -117,6 +149,22 @@
         </ul>
       </li>
       <li>
+ <span class="library"><a href="/libs/multi_array/index.html">Multi Array</a>:</span>
+ <ul>
+ <li>
+ Added "dimensionality" compile-time constante to the MultiArray
+ concept.
+ </li>
+ <li>
+ For greater control over error situations, uses of C++ assert have been
+ replaced with BOOST_ASSERT.
+ </li>
+ <li>
+ Fixed a bug with simultaneous resizing and reindexing.
+ </li>
+ </ul>
+ </li>
+ <li>
         <span class="library"><a href="/libs/multi_index/doc/index.html">Multi-index Containers</a>:</span>
         <ul>
           <li>

Modified: website/public_html/beta/feed/history/boost_1_35_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_35_0.qbk (original)
+++ website/public_html/beta/feed/history/boost_1_35_0.qbk 2008-03-20 06:35:19 EDT (Thu, 20 Mar 2008)
@@ -60,7 +60,7 @@
   * `read_graphml` and `write_graphml` for GraphML input/output, from Tiago de Paula Peixoto.
   * `minimum_cycle_ratio` and `maximum_cycle_ratio`, from Dmitry Bufistov and Andrey Parfenov.
   * `boyer_myrvold_planarity_test`, along with a suite of algorithms for planar graphs, from Aaron Windsor.
- * LEDA Adaptor improvements, from Jens Müller.
+ * LEDA Adaptor improvements, from Jens M'''ü'''ller.
 * [phrase library..[@/libs/functional/hash/index.html Hash]:]
   A TR1 hash function object, from Daniel James. Highlights:
   * Support for `long long`, `std::complex`.
@@ -72,6 +72,11 @@
     some existing code. See [@/libs/iostreams/doc/index.html?path=12 Release Notes]
     for details.
   * Numerous other bug fixes and optimizations.
+* [phrase library..[@/libs/multi_array/index.html Multi Array]:]
+ * Added "dimensionality" compile-time constante to the MultiArray concept.
+ * For greater control over error situations, uses of C++ assert have
+ been replaced with BOOST_ASSERT.
+ * Fixed a bug with simultaneous resizing and reindexing.
 * [phrase library..[@/libs/multi_index/doc/index.html Multi-index Containers]:]
   * New [@/libs/multi_index/doc/tutorial/key_extraction.html#global_fun `global_fun`]
     predefined key extractor.

Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss (original)
+++ website/public_html/beta/feed/news.rss 2008-03-20 06:35:19 EDT (Thu, 20 Mar 2008)
@@ -85,6 +85,38 @@
     <h3><span class="link">Updated Libraries</span></h3>
     <ul>
       <li>
+ <span class="library"><a href="/libs/graph/doc/index.html">Graph</a>:</span>
+ Generic graph
+ components and algorithms. Highlights:
+ <ul>
+ <li>
+ <code><span class="identifier">kolmogorov_max_flow</span></code>,
+ from Stephan Diederich as part of the 2006 Google Summer of Code.
+ </li>
+ <li>
+ <code><span class="identifier">read_dimacs_max_flow</span></code>
+ and <code><span class="identifier">write_dimacs_max_flow</span></code>
+ for max-flow problems, from Stephan Diederich.
+ </li>
+ <li>
+ <code><span class="identifier">read_graphml</span></code> and <code><span class="identifier">write_graphml</span></code> for GraphML input/output,
+ from Tiago de Paula Peixoto.
+ </li>
+ <li>
+ <code><span class="identifier">minimum_cycle_ratio</span></code> and
+ <code><span class="identifier">maximum_cycle_ratio</span></code>,
+ from Dmitry Bufistov and Andrey Parfenov.
+ </li>
+ <li>
+ <code><span class="identifier">boyer_myrvold_planarity_test</span></code>,
+ along with a suite of algorithms for planar graphs, from Aaron Windsor.
+ </li>
+ <li>
+ LEDA Adaptor improvements, from Jens Müller.
+ </li>
+ </ul>
+ </li>
+ <li>
         <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
   A TR1 hash
         function object, from Daniel James. Highlights:
@@ -117,6 +149,22 @@
         </ul>
       </li>
       <li>
+ <span class="library"><a href="/libs/multi_array/index.html">Multi Array</a>:</span>
+ <ul>
+ <li>
+ Added "dimensionality" compile-time constante to the MultiArray
+ concept.
+ </li>
+ <li>
+ For greater control over error situations, uses of C++ assert have been
+ replaced with BOOST_ASSERT.
+ </li>
+ <li>
+ Fixed a bug with simultaneous resizing and reindexing.
+ </li>
+ </ul>
+ </li>
+ <li>
         <span class="library"><a href="/libs/multi_index/doc/index.html">Multi-index Containers</a>:</span>
         <ul>
           <li>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk