debian/0000775000000000000000000000000012257430462007175 5ustar debian/libboost-python-dev.README.Debian0000664000000000000000000000167211701230712015140 0ustar Multiple Python Runtime Support ------------------------------- The Debian Boost.Python packages support python versions: 2.4, 2.5. This is achieved by decorating the library names with the python version. You can choose either to use Boost.Python with a specific Python version, or use the default Python version. Choosing the default Python --------------------------- You may simply link with -lboost_python. This will always be the default python version. These default symlinks are automatically updated when the Python runtime version changes. Choosing a specific Python Version ---------------------------------- The library names are suffixed by "-py24" and "-py25", allowing you to select the specific Python version desired. This holds true for both the upstream names and the simplified Debian names. So link against -lboost_python-py24 for Python 2.4. -- Steve M. Robbins , Mon, 16 Feb 2009 16:04:22 z debian/README.Debian0000664000000000000000000001370612166145301011237 0ustar Help Save the World ------------------- Boost is a fairly extensive set of libraries, of which I personally use but a very small part. I greatly appreciate folks that send patches to the BTS. Please do have a look at the outstanding bug reports and send me hints or patches if you have extra information. Getting Started --------------- The following table shows which components use a library (shared or static) and the corresponding "-l" flag. All libraries are built for multithreaded applications. Component Link Flag Library Type --------- --------- ------------ Boost.Atomic -lboost_atomic static shared Boost.Chrono -lboost_chrono static shared Boost.Context -lboost_context static shared Boost.Coroutine -lboost_coroutine static x Boost.Date_Time -lboost_date_time static shared Boost.Exception -lboost_exception static x Boost.Filesystem -lboost_filesystem static shared Boost.Graph -lboost_graph static shared Boost.Graph_parallel -lboost_graph_parallel static shared Boost.IOStreams -lboost_iostreams static shared Boost.Locale -lboost_locale static shared Boost.log -lboost_log static shared -lboost_log_setup static shared Boost.Math -lboost_math_c99 static shared -lboost_math_c99f static shared -lboost_math_c99l [1] static shared -lboost_math_tr1 static shared -lboost_math_tr1f static shared -lboost_math_tr1l [1] static shared Boost.MPI -lboost_mpi static shared Boost.Program_options -lboost_program_options static shared Boost.Python -lboost_python-pyPQ [2] static shared -lboost_python [3] static shared -lboost_mpi_python-pyPQ [2] static shared -lboost_mpi_python [3] static shared Boost.Random -lboost_random static shared Boost.Regex -lboost_regex static shared Boost.Serialization -lboost_serialization static shared -lboost_wserialization static shared Boost.Signals -lboost_signals static shared Boost.System -lboost_system static shared Boost.Test -lboost_prg_exec_monitor static shared -lboost_test_exec_monitor static x -lboost_unit_test_framework static shared Boost.Thread -lboost_thread static shared Boost.Timer -lboost_timer static shared Boost.Wave -lboost_wave static shared [1] Not available on all architectures. [2] Boost.Python is built for multiple Python versions. For example, Boost 1.48.0 is built for Python 2.6, 2.7, and 3.2; the corresponding libraries are -lboost_python-py26, -py27, and -py32. [3] Symbolic link to the default version of Python (as of build time). Most of Boost is installed using the package libboostX.Y-dev. The components with a shared library have separate -dev packages. There is extensive documentation available in the libboostX.Y-doc package and at www.boost.org. Debian Packaging of Boost ------------------------- Upstream releases quarterly without guarenteeing any backwards compatibility. Debian chooses to package two versions of Boost simultaneously, to enable users to make the transition on their own time. The -dev packages are decorated with the Boost version, e.g. libboost1.39-dev and libboost1.40-dev. If your code builds only with a specific version of boost, you can directly install that specific version. On the other hand, many of the mature Boost libraries hardly change from one version to the next. If your code uses only such stable libraries, then continually installing versioned -dev packages is a nuisance. Debian therefore has a set of "default" Boost development packages without a version number; e.g. libboost-dev. These packages will pull in the version of boost considered most suitable at any given time. If your code is not tied to a specific Boost version, you can use the unversioned development packages. This strategy was hashed out on debian-release in the Spring of 2009. See threads starting at: http://lists.debian.org/debian-release/2009/03/msg00147.html http://lists.debian.org/debian-release/2009/04/msg00251.html http://lists.debian.org/debian-release/2009/05/msg00011.html Example Code ------------ All example code is shipped in libboostX.Y-doc package. Some of the example code is linked to by the documentation, and thus appears in a directory named /usr/share/doc/libboostX.Y-doc/HTML/libs/*/example Example code that is not linked from the documentation appears in a directory under /usr/share/doc/libboostX.Y-doc/examples/libs/ Use of boost/nondet_random.hpp ------------------------------ The use of this header file is subject to the availability of class boost::random_device::impl. Boost libraries provide only an example implementation which the user may use to fit her needs. Such implementation is distributed by libboostX.Y-dev Debian package in file /usr/share/doc/libboostX.Y-dev/examples/random_device.cpp. This file is generally good enough for most linux users. Simply copy and modify to suit your needs. Boost.Test main() function -------------------------- The Boost unit test framework defines a main() function in the static library boost_unit_test_framework.a. Prior to v 1.34, the shared library also defined main() but it no longer does. Please see the manual and the following thread for more details http://lists.boost.org/boost-users/2008/03/34486.php -- Steve M. Robbins , Sat, 6 Jul 2013 20:56:17 -0500 debian/libboost-dev.examples0000664000000000000000000000004211701230712013307 0ustar libs/random/src/random_device.cpp debian/source/0000775000000000000000000000000012247550410010470 5ustar debian/source/format0000664000000000000000000000001311701230712011667 0ustar 3.0 (quilt)debian/update-control.py0000664000000000000000000000650012163727544012516 0ustar #! /usr/bin/env python # from deb822 import Deb822 import re gOldVersion = None gNewVersion = None class BoostVersion: def __init__(self, version): (self.Major,self.Minor,self.Revision) = version.split('.') self.PackageVersion = self.Major + '.' + self.Minor self.SharedObjectVersion = version def containsPackageVersion(self, string): '''Return true if 'string' contains the Package version string.''' return re.search(self.PackageVersion, string) is not None def containsSharedObjectVersion(self, string): '''Return true if 'string' contains the Shared Object version string.''' return re.search(self.SharedObjectVersion, string) is not None def stripVersion(self, string): '''Remove PackageVersion or SharedObjectVersion if contained in 'string'.''' return self.replaceVersion(string,'') def replaceVersion(self, string, replacement): '''Replace either PackageVersion or SharedObjectVersion if contained in 'string', with 'replacement'.''' string = re.sub(self.SharedObjectVersion, replacement, string) string = re.sub(self.PackageVersion, replacement, string) return string def replaceVersion(string, ver1, ver2): '''Search 'string' for a BoostVersion ver1. If SharedObjectVersion or PackageVersion of ver1 is found, replace by corresponding ver2 version string. Return the updated string.''' string = re.sub(ver1.SharedObjectVersion, ver2.SharedObjectVersion, string) string = re.sub(ver1.PackageVersion, ver2.PackageVersion, string) return string def updateVersionedValue(paragraph, key): if not paragraph.has_key(key): return oldValue = paragraph[key] paragraph[key] = replaceVersion(paragraph[key], gOldVersion, gNewVersion) return (oldValue, paragraph[key]) def conflictsWithPrevious(paragraph): if not paragraph.has_key('Conflicts'): return False nameRe = re.sub('\d', '\\d', paragraph['Package']) return re.search(nameRe, paragraph['Conflicts']) is not None def updateConflicts(paragraph, oldPkgName): newPkgName = paragraph['Package'] needsConflict = (newPkgName.endswith("-dev") and not newPkgName.endswith("-all-dev")) or conflictsWithPrevious(paragraph) if not needsConflict: return if paragraph.has_key('Conflicts'): if paragraph['Conflicts'].find(oldPkgName) == -1: paragraph['Conflicts'] += ', ' + oldPkgName else: paragraph['Conflicts'] = oldPkgName def processSourceParagraph(p): updateVersionedValue(p, 'Source') def processPackageParagraph(p): (oldPkgName, newPkgName) = updateVersionedValue(p, 'Package') updateVersionedValue(p, 'Depends') updateVersionedValue(p, 'Recommends') updateVersionedValue(p, 'Suggests') updateConflicts(p, oldPkgName) def printParagraph(p): for key in p.keys(): print "%s: %s" % (key, p[key]) def processControl(): firstParagraph = True for paragraph in Deb822.iter_paragraphs(open('control')): if firstParagraph: processSourceParagraph(paragraph) printParagraph(paragraph) firstParagraph = False else: processPackageParagraph(paragraph) print printParagraph(paragraph) gOldVersion = BoostVersion('1.53.0') gNewVersion = BoostVersion('1.54.0') processControl() debian/Notes0000664000000000000000000000110011762423533010201 0ustar Documentation ------------- Generate the list of documentation files using wget going through localhost to get the source tree. See generate-docfiles-list.py * need to symlink .../HTML/boost to /usr/include/boost; when put the symlink into the deb, it got converted to a directory during installation; use dh_link to do it * use -Nlibboost-doc with dh_compress to inhibit compressing files in the HTML tree Examples -------- List of example directories obtained using find * -name 'example*' -type d | grep -v '/example.*/example' > debian/example-files debian/copyright0000664000000000000000000001534311701230712011123 0ustar This software is a collection of libraries from the Boost.org site. Most of the libraries use the Boost Software License 1.0, which reads as follows. Boost Software License - Version 1.0 ------------------------------------ Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. There are a few files under a license different from the Boost Software License; however, all licenses do follow these guidelines: License requirements Must be simple to read and understand. Must grant permission to copy, use and modify the software for any use (commercial and non-commercial) for no fee. Must require that the license appear on all copies of the software source code. Must not require that the license appear with executables or other binary uses of the library. Must not require that the source code be available for execution or other binary uses of the library. May restrict the use of the name and description of the library to the standard version found on the Boost web site. Files in tools/jam are covered by /* * /+\ * +\ Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc. * \+/ * * This file is part of jam. * * License is hereby granted to use this software and distribute it * freely, as long as this copyright notice is retained and modifications * are clearly marked. * * ALL WARRANTIES ARE HEREBY DISCLAIMED. */ /* This file is ALSO: * Copyright 2001-2004 David Abrahams. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) */ or by /* * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved. * Copyright (c) 1998-1999 by Silicon Graphics. All rights reserved. * Copyright (c) 1999 by Hewlett-Packard Company. All rights reserved. * * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. * * Permission is hereby granted to use or copy this program * for any purpose, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. */ Files installed under /usr/share/boostbook/xsl/caramel (used by binary "boostbook") are covered by the following license: Software License, Version 1.0 Copyright 2002-2003, Trustees of Indiana University. Copyright 2000-2001, University of Notre Dame. All rights reserved. Indiana University has the exclusive rights to license this product under the following license. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * All redistributions of source code must retain the above copyright notice, the list of authors in the original source code, this list of conditions and the disclaimer listed in this license; * All redistributions in binary form must reproduce the above copyright notice, this list of conditions and the disclaimer listed in this license in the documentation and/or other materials provided with the distribution; * Any documentation included with all redistributions must include the following acknowledgement: "This product includes software developed at the University of Notre Dame and the Pervasive Technology Labs at Indiana University. For technical information contact Andrew Lumsdaine at the Pervasive Technology Labs at Indiana University. For administrative and license questions contact the Advanced Research and Technology Institute at 351 West 10th Street. Indianapolis, Indiana 46202, phone 317-278-4100, fax 317-274-5902." Alternatively, this acknowledgement may appear in the software itself, and wherever such third-party acknowledgments normally appear. * The name Indiana University, the University of Notre Dame or "Caramel" shall not be used to endorse or promote products derived from this software without prior written permission from Indiana University. For written permission, please contact Indiana University Advanced Research & Technology Institute. * Products derived from this software may not be called "Caramel", nor may Indiana University, the University of Notre Dame or "Caramel" appear in their name, without prior written permission of Indiana University Advanced Research & Technology Institute. Indiana University provides no reassurances that the source code provided does not infringe the patent or any other intellectual property rights of any other entity. Indiana University disclaims any liability to any recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. LICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED "AS IS" FOR WHICH NO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. INDIANA UNIVERSITY GIVES NO WARRANTIES AND MAKES NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. INDIANA UNIVERSITY MAKES NO WARRANTIES THAT SOFTWARE IS FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE. debian/libboost-doc.doc-base.in0000664000000000000000000000130111701230712013541 0ustar Document: boost Title: Boost C++ Libraries Author: The Boost.org collaboration Abstract: The Boost web site provides free peer-reviewed portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. Section: Programming/C++ Format: HTML Index: /usr/share/doc/libboost@PKGVERSION@-doc/HTML/index.htm Files: /usr/share/doc/libboost@PKGVERSION@-doc/HTML/* debian/inspect.10000664000000000000000000000222311701230712010710 0ustar .TH INSPECT "1" "July 2009" "inspect " "User Commands" .SH NAME inspect \- Boost code inspection tool .SH SYNOPSIS .B inspect [\fI-cvs\fR] [\fI-text\fR] [\fI-brief\fR] [\fIoptions\fR...] .SH DESCRIPTION It is not uncommon for various common errors or guideline violations to creep into the Boost libraries. The .B inspect program detects and reports several common problems. It can be used to scan a proposed Boost submission to identify various failures. .PP The program is run in the directory to be scanned for errors. Sub-directories are also included in the scan. .PP If the first program argument is -cvs, only files and directories in the CVS tree of the current directory are scanned. Otherwise all files and sub-directories are included in the scan. .IP Options: .HP \fB\-license\fR .HP \fB\-copyright\fR .HP \fB\-crlf\fR .HP \fB\-link\fR .HP \fB\-path_name\fR .HP \fB\-tab\fR .HP \fB\-ascii\fR .HP \fB\-minmax\fR .HP \fB\-unnamed\fR .IP The default is to have all checks on; otherwise options specify desired checks. .SH "SEE ALSO" The full documentation for .B inspect is maintained in HTML; see /usr/share/doc/libboostX.Y-doc/HTML/tools/inspect/index.html debian/pyste.10000664000000000000000000000411711701230712010413 0ustar .TH PYSTE "1" "March 2008" "Pyste version 0.9.30" "User Commands" .SH NAME Pyste \- Boost.Python code generator .SH SYNOPSIS pyste [options] interface\-files .SH DESCRIPTION Pyste is a Boost.Python code generator. The user specifies the classes and functions to be exported using a simple interface file which, following the Boost.Python's philosophy, is simple Python code. Pyste then uses GCCXML to parse all the headers and extract the necessary information to automatically generate C++ code. .TP \fB\-\-module=\fR The name of the module that will be generated; defaults to the first interface filename, without the extension. .TP \fB\-I\fR Add an include path .TP \fB\-D\fR Define symbol .TP \fB\-\-multiple\fR Create various cpps, instead of only one (useful during development) .TP \fB\-\-out=\fR Specify output filename (default: .cpp) in \fB\-\-multiple\fR mode, this will be a directory .TP \fB\-\-no\-using\fR Do not declare "using namespace boost"; use explicit declarations instead .TP \fB\-\-pyste\-ns=\fR Set the namespace where new types will be declared; default is the empty namespace .TP \fB\-\-debug\fR Writes the xml for each file parsed in the current directory .TP \fB\-\-cache\-dir=\fR Directory for cache files (speeds up future runs) .TP \fB\-\-only\-create\-cache\fR Recreates all caches (doesn't generate code). .TP \fB\-\-generate\-main\fR Generates the _main.cpp file (in multiple mode) .TP \fB\-\-file\-list\fR A file with one pyste file per line. Use as a substitute for passing the files in the command line. .TP \fB\-\-gccxml\-path=\fR Path to gccxml executable (default: gccxml) .TP \fB\-\-no\-default\-include\fR Do not use INCLUDE environment variable for include files to pass along gccxml. .TP \fB\-h\fR, \fB\-\-help\fR Print this help and exit .TP \fB\-v\fR, \fB\-\-version\fR Print version information .SH "SEE ALSO" The full documentation for .B Pyste is maintained in HTML format. If you have the .B libboost-doc package installed, the manual starts at .IP .B /usr/share/doc/libboost-doc/HTML/libs/python/pyste/index.html debian/libboost-python-dev.postinst.in0000664000000000000000000000030211701230712015277 0ustar #! /bin/sh set -e update=/usr/share/python/runtime.d/libboost-python@PKGVERSION@-dev.rtupdate if which pyversions >/dev/null; then $update rtupdate none $(pyversions -d) fi #DEBHELPER# debian/example-files0000664000000000000000000000450212164333426011653 0ustar doc/html/boost_asio/examples doc/html/boost_asio/example doc/html/date_time/examples libs/python/example libs/accumulators/example libs/geometry/doc/html/geometry/examples libs/geometry/doc/src/examples libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/sample/src/examples libs/geometry/doc/index/src/examples libs/geometry/index/example libs/geometry/example libs/range/doc/reference/adaptors/examples libs/phoenix/doc/html/phoenix/examples libs/phoenix/doc/examples libs/phoenix/example libs/icl/doc/html/boost_icl/examples libs/icl/example libs/date_time/example libs/move/example libs/scope_exit/example libs/graph/example libs/chrono/example libs/preprocessor/doc/examples libs/xpressive/example libs/mpi/example libs/statechart/example libs/algorithm/minmax/example libs/algorithm/string/example libs/algorithm/example libs/function_types/example libs/units/example libs/bimap/doc/html/boost_bimap/examples libs/bimap/example libs/unordered/examples libs/filesystem/example libs/graph_parallel/example libs/local_function/example libs/multi_index/example libs/log/example libs/program_options/example libs/ratio/example libs/container/example libs/functional/hash/examples libs/heap/examples libs/serialization/example libs/polygon/example libs/asio/example libs/spirit/classic/phoenix/example libs/spirit/classic/example libs/spirit/phoenix/example libs/spirit/repository/example libs/spirit/example libs/proto/example libs/pool/example libs/flyweight/example libs/iostreams/example libs/thread/example libs/property_tree/examples libs/format/example libs/numeric/interval/examples libs/numeric/odeint/examples libs/random/example libs/signals/example libs/function/example libs/mpl/example libs/context/example libs/exception/example libs/type_erasure/example libs/dynamic_bitset/example libs/lockfree/examples libs/test/doc/src/examples libs/test/example libs/coroutine/example libs/smart_ptr/example libs/locale/examples libs/gil/example libs/regex/example libs/property_map/example libs/fusion/example libs/signals2/example libs/multiprecision/example libs/msm/doc/PDF/examples libs/msm/doc/HTML/examples libs/msm/example libs/interprocess/example libs/iterator/example libs/intrusive/example libs/math/example libs/multi_array/example libs/type_traits/doc/html/boost_typetraits/examples libs/type_traits/examples libs/timer/example tools/build/v2/example debian/libboost-mpi-python-dev.postinst.in0000664000000000000000000000030611701230712016066 0ustar #! /bin/sh set -e update=/usr/share/python/runtime.d/libboost-mpi-python@PKGVERSION@-dev.rtupdate if which pyversions >/dev/null; then $update rtupdate none $(pyversions -d) fi #DEBHELPER# debian/libboost-doc.README.Debian0000664000000000000000000000065011701230712013603 0ustar Building Boost.Python Examples ------------------------------ 1. Ensure the package libboostX.YZ-dev is installed (provides bjam). 2. Copy the contents of examples/libs/python/example elsewhere before attempting to build, since the build creates files inside the example directory. 3. Change to the directory created in step 2, then "bjam test". -- Steve M. Robbins , Thu, 11 Aug 2011 22:57:55 -0500 debian/bcp.10000664000000000000000000001072411701230712010014 0ustar .\" ======================================================================= .\" Copyright 2006 Domenico Andreoli .\" .\" Distributed under the Boost Software License, Version 1.0. (See .\" accompanying file LICENSE_1_0.txt or copy at .\" http://www.boost.org/LICENSE_1_0.txt) .\" ======================================================================= .TH BCP "1" "March 2006" "Boost C++ Libraries" "Boost C++ Libraries Documentation" .SH NAME bcp \- extract subsets of Boost .SH SYNOPSIS .B bcp \fB\-\-list\fR [\fIoptions\fR] \fImodule\-list\fR .br .B bcp [\fIoptions\fR] \fImodule\-list output\-path\fR .br .B bcp \fB\-\-report\fR [\fIoptions\fR] \fImodule\-list html\-file\fR .br .B bcp \fB\-\-help\fR .SH DESCRIPTION Copies all the files, including dependencies, found in \fImodule-list\fR to \fIoutput-path\fR. \fIoutput-path\fR must be an existing path. .PP With \fB\-\-list\fR, prints the list of all the files in \fImodule-list\fR, including dependencies. .PP With \fB\-\-report\fR, writes the HTML report to \fIhtml-file\fR. .PP With \fB\-\-help\fR, prints a quick usage reminder. .PP It is useful for Boost authors who want to distribute their library separately from Boost and for Boost users who want to distribute a subset of Boost with their application. .SS \fImodule-list\fR .PP When the --scan option is not used, a list of Boost files or library names to copy. It can be: .IP \- The name of a tool: for example "build" will find "tools/build". .IP \- The name of a library: for example "regex". .IP \- The title of a header: for example "scoped_ptr" will find "boost/scoped_ptr.hpp". .IP \- The name of a header: for example "scoped_ptr.hpp" will find "boost/scoped_ptr.hpp". .IP \- The name of a file: for example "boost/regex.hpp". .PP When the --scan option is used, a list of (probably non-boost) files to scan for Boost dependencies, the files in the module list are not therefore copied/listed. .SS File dependencies C++ source files are scanned for #includes, all #includes present in the Boost source tree will then be scanned for their dependencies and so on. .PP C++ source files are associated with the name of a library, if that library has source code (and possibly build data), then include that source in the dependencies. .PP C++ source files are checked for dependencies on Boost.Test (for example to see if they use cpp_main as an entry point). .PP HTML files are scanned for immediate dependencies (images and style sheets, but not links). .SS HTML report contains: .PP \- all the licenses in effect, plus the files using each license, and the copyright holders using each license .PP \- any files with no recognizable license (please report these to the Boost mailing lists) .PP \- any files with no recognizable copyright holders (please report these to the Boost mailing lists) .PP \- all the copyright holders and the files on which they hold copyright .PP \- file dependency information - indicates the reason for the inclusion of any particular file in the dependencies found .SH OPTIONS .TP \fB\-\-boost\fR=\fIpath\fR sets the location of the Boost tree to path .TP \fB\-\-scan\fR treat the module list as a list of (possibly non\-boost) files to scan for Boost dependencies .TP \fB\-\-cvs\fR only copy files under CVS version control .TP \fB\-\-unix\-lines\fR make sure that all copied files use Unix style line endings .SH EXAMPLES .TP \fBbcp\fR scoped_ptr /foo Copies boost/scoped_ptr.hpp and dependencies to /foo. .TP \fBbcp\fR boost/regex.hpp /foo Copies boost/regex.hpp and all dependencies including the regex source code (in libs/regex/src) and build files (in libs/regex/build) to /foo. Does not copy the regex documentation, test or example code. .TP \fBbcp\fR regex /foo Copies the full regex lib (in libs/regex) including dependencies (such as the Boost.Test source required by the regex test programs) to /foo. .TP \fBbcp\fR regex config build /foo Copies the full regex lib (in libs/regex) plus the config lib (libs/config) and the build system (tools/build) to /foo including all the dependencies. .TP \fBbcp \-\-scan \-\-boost\fR=/boost foo.cpp bar.cpp boost Scans the [non-boost] files foo.cpp and bar.cpp for Boost dependencies and copies those dependencies to the sub-directory boost. .TP \fBbcp \-\-report\fR regex.hpp boost-regex-report.html Creates a HTML report called boost-regex-report.html for the Boost module regex.hpp. .SH AUTHORS Author of bcp is John Maddock. .PP Author of this manpage is Domenico Andreoli, who copied stuff from bcp --help and the HTML documentation. debian/changelog0000664000000000000000000021561412257430462011060 0ustar boost-mpi-source1.54 (1.54.0-4ubuntu3) trusty; urgency=medium * No change rebuild against libicu52 -- Dimitri John Ledkov Sat, 28 Dec 2013 02:02:26 +0000 boost-mpi-source1.54 (1.54.0-4ubuntu2) trusty; urgency=medium * MPI portion of the build. -- Dimitri John Ledkov Wed, 18 Dec 2013 15:14:53 +0000 boost1.54 (1.54.0-4ubuntu1) trusty; urgency=low * Merge from debian, remaining changes: - build for ubuntu main without mpi - debian/patches/eglibc-long-long.patch: Fix build with eglibc 2.18. - debian/rules: Treat ppc64el like ppc64. * Split pyste into a separate package. -- Dimitri John Ledkov Wed, 18 Dec 2013 12:51:34 +0000 boost1.54 (1.54.0-4) unstable; urgency=low [ Dmitrijs Ledkovs ] * Multi-arch most -dev packages (excluding python, mpi). Initial patches based on the work by Helmut Grohne. (Closes: #710413, #693247) * Split boost auxiliary tools into a separate Multi-Arch:foreign package. * Build-depend on dh-python to gain arch-qualified python extension names. * Create permament libboost_python.[a|so] symlinks (LP: #1217237) as python2.7 is the last python2 series release. * Correct the dependency on libstdc++, it's actually libstdc++-4.8-dev, not libstdc++6-4.8-dev. * Demote gccxml from Depends to Recommends in the libboost-python-dev package. (Closes: #726172) * Apply patch from Boost upstream to resolve BOOST_LCAST_HAS_INT128 issue (#8790) (Closes: #727750) [ Steve M. Robbins ] * rules: Disable context for mips64 and mips64el. Closes: #728616. * patches/hppa-long-double-config.patch: New. Fixes definition of BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS for hppa (thanks, Dave Anglin). Closes: #729479. * control.in(libboost1.54-dev): Add "Suggests" relationship to packages libmpfrc++-dev & libntl-dev because Boost.Multiprecision provides wrappers for them. Closes: #731048. [ Matthias Klose ] * Add support for powerpc ELFv2. -- Steve M. Robbins Wed, 04 Dec 2013 00:50:47 -0600 boost1.54 (1.54.0-3) unstable; urgency=low [ Steve M. Robbins ] * control: Add depends on libboost1.54-dev omitted from recently added libraries (atomic, context, and coroutine). * patches/boost-1.54.0-thread-link_atomic.patch: New. Link Boost.Thread to Boost.Atomic if necessary. Closes: #721577, #721544. Also have libboost-thread1.54-dev depend on libboost-atomic1.54-dev. * control: fix short description of libboost-exception1.54-dev; see #720160. [ Matthias Klose ] * Configure with --disable-long-double --wihtout-context on Aarch64 [ Dmitrijs Ledkovs ] * Use anonscm URLs. * libboost-dev: Specify dependency on current libstdc++6-4.8-dev, instead of obsolete libstdc++6-4.4-dev. Fixes Multi-Arch installation (LP: #1209193) * Specify --with-icu=/usr to unconditionally trigger HAVE_ICU define, i.e. independent of icu multiarch. -- Steve M. Robbins Wed, 04 Sep 2013 22:29:56 -0500 boost1.54 (1.54.0-2) unstable; urgency=low * Add packages for Boost.Coroutine. Both coroutine and context are conditionally compiled. * patches/001-coroutine.patch: * patches/002-date-time.patch: New. Upstream maintenance fixes from http://www.boost.org/patches/. * patches/hurd-clock-gettime.patch: New. GNU Hurd has clock_gettime() despite not defining _POSIX_TIMERS. Closes: #714847. -- Steve M. Robbins Sat, 06 Jul 2013 19:52:17 -0500 boost1.54 (1.54.0-1) unstable; urgency=low * New upstream. - Add shared library packages for new library Boost.Log. -- Steve M. Robbins Mon, 01 Jul 2013 21:28:11 -0500 boost1.53 (1.53.0-6) UNRELEASED; urgency=low * Make libboost-graph[-parallel]1.53-dev packages depend on the library package libboost-graph[-parallel]1.53.0 to avoid broken symlinks. -- Dmitrijs Ledkovs Mon, 01 Jul 2013 10:39:16 +0100 boost1.53 (1.53.0-5) unstable; urgency=low * control: Boost.Thread depends on some non header-only libraries: System, Chrono, and DateTime. The latter was already present, but dependencies for libboost-thread1.53-dev updated to include libboost-chrono1.53-dev and libboost-system1.53-dev. Closes: #706648. -- Steve M. Robbins Tue, 28 May 2013 02:52:24 -0500 boost1.53 (1.53.0-4) unstable; urgency=low * rules: Add 'context' to list of libraries when Boost.Context is supported. Closes: #706220. * rules: Disable Boost.Context for additional architectures: alpha, hppa, m68k, powerpcspe, ppc64, sh4, sparc64, and x32. Closes: #703549. -- Steve M. Robbins Sat, 27 Apr 2013 01:12:49 -0500 boost1.53 (1.53.0-3) unstable; urgency=low * rules: Ensure --without-context passed during install stage, too. * patches/chrono-duration.patch: New. Fix conflict between chrono/duration.hpp and apache2/httpd.h (thanks, Kirill Spitsin). Closes: #703325. * control: Make libboost-mpi-python depend on mpi-default-bin so that mpirun is available. Closes: #691635. -- Steve M. Robbins Thu, 21 Mar 2013 23:46:40 -0500 boost1.53 (1.53.0-2) unstable; urgency=low * rules: Build with hardening flags. * control: Depend on dpkg-dev, to get dpkg-buildflags. * rules: context is not supported for ia64, s390, s390x, and sparc. * patches/fix-ftbfs-python-3.3.patch: New. Allow building with multiarch python3.3 (thanks, Dmitrijs Ledkovs). Closes: #691378. -- Steve M. Robbins Wed, 20 Mar 2013 01:45:32 -0500 boost1.53 (1.53.0-1) unstable; urgency=low * New upstream. Update versions in control, rules. Update file lists in documentation-files and example-files. * rules: Stop creating "libboost_foo-mt" compatibility symlinks. Rewrite rules using "dh". README.Debian and NEWS.Debian no longer ship in all packages. * control: Add packages for atomic, context. Remove empty package for mpi-python-dev. -- Steve M. Robbins Tue, 05 Mar 2013 22:14:47 -0600 boost1.52 (1.52.0-1) UNRELEASED; urgency=low * New upstream. -- Steve M. Robbins Sun, 06 Jan 2013 19:04:00 -0600 boost1.50 (1.50.0-2) unstable; urgency=low * control: Fix list formatting in Boost.Chrono long description. Closes: #687296. Add symlink /usr/share/doc/libboost-doc/examples; see #687524. * rules: Install libs/date_time/data into /usr/share/doc/libboost-date-timeX.Y-dev. Closes: #685003. -- Steve M. Robbins Sun, 23 Sep 2012 21:33:04 -0500 boost1.50 (1.50.0-1) unstable; urgency=low * Upstream release of 1.50.0. -- Steve M. Robbins Thu, 28 Jun 2012 21:28:37 -0500 boost1.50 (1.50.0~beta1final-1) experimental; urgency=low * New upstream. This is really the "1.50.0 Beta 1" release. Last release was actually "1.50.0 Beta 1 Release Candidate". -- Steve M. Robbins Fri, 08 Jun 2012 21:59:28 -0500 boost1.50 (1.50.0~beta1-1) experimental; urgency=low * New upstream: Beta 1 release of 1.50. - new lib packages for Boost.Exception. * patches/gcc4.7_trac-6790.patch: * patches/gcc4.7_trac-6854.patch: * patches/gcc4.7_trac-6755.patch: * patches/gcc4.7_trac-76970.patch: * patches/gcc4.7_trac-6331.patch: * patches/gcc4.7_trac-6431.patch: * patches/gcc4.7_trac-6852.patch: Removed. -- Steve M. Robbins Sat, 02 Jun 2012 11:42:00 -0500 boost1.49 (1.49.0-3) unstable; urgency=low * patches/gcc4.7_trac-6790.patch: * patches/gcc4.7_trac-6854.patch: * patches/gcc4.7_trac-6755.patch: * patches/gcc4.7_trac-76970.patch: * patches/gcc4.7_trac-6331.patch: * patches/gcc4.7_trac-6431.patch: * patches/gcc4.7_trac-6852.patch: New. Fixes for gcc 4.7 from upstream. Closes: #671409 -- Steve M. Robbins Sat, 05 May 2012 00:31:50 -0500 boost1.49 (1.49.0-2) unstable; urgency=low * control: Add missing -dev package Conflicts for: chrono, locale, random, and timer. Closes: #666120, 666239. -- Steve M. Robbins Thu, 29 Mar 2012 21:30:22 -0500 boost1.49 (1.49.0-1) unstable; urgency=low * New upstream. -- Steve M. Robbins Sun, 26 Feb 2012 00:31:44 -0600 boost1.49 (1.49.0rc1-1) UNRELEASED; urgency=low * Upstream Release Candidate. * patches/fusion-push-front-broken.patch: Remove. Applied upstream. -- Steve M. Robbins Mon, 20 Feb 2012 15:43:41 -0600 boost1.49 (1.49.0beta1-1) UNRELEASED; urgency=low * Upstream Beta 1 Release Candidate. * patches/foreach.patch: * patches/sh4.patch: * patches/kfreebsd-thread.patch: * patches/math-define-l.patch: * patches/gcc-4.7-threading-detection.patch: Removed. Applied upstream. -- Steve M. Robbins Sat, 28 Jan 2012 21:31:41 -0600 boost1.48 (1.48.0-3) unstable; urgency=low * patches/fusion-push-front-broken.patch: New. Upstream patch that fixes #include . Closes: #653812. * patches/math-define-l.patch: New. Rename class template parameter "L". Closes: #653764. * patches/gcc-4.7-threading-detection.patch: New, from upstream. Enable gcc 4.7 threading detection. Closes: #654425. * patches/mpi-allocator-c++0x.patch: New. Workaround to enable using Boost.MPI with -std=c++0x mode on gcc 4.6. Fix will be in gcc 4.6.3 and 4.7. Closes: #639862. -- Steve M. Robbins Wed, 04 Jan 2012 23:50:52 -0600 boost1.48 (1.48.0-2) unstable; urgency=low * patches/foreach.patch: New. Upstream patch to fix BOOST_FOREACH build issues. Closes: #652677. -- Steve M. Robbins Tue, 20 Dec 2011 00:03:03 -0600 boost1.48 (1.48.0-1) unstable; urgency=low * New upstream. Closes: #634245. - patches/changeset_71050.diff: - patches/date_time_date_formatting_hpp.patch: - patches/fusion-name-qual.patch: - patches/mips-asm.patch: - patches/openssl-no-ssl2.patch: - patches/python2.5-elementtree.patch: Removed. Applied upstream. * New library packages for: chrono, locale, and timer. * patches/pythonid.patch: New. Fix jam option --python-buildid. * patches/hurd-ellint_rd.patch: * patches/hurd-execution_monitor.patch: Remove. Pino Toscano advised that the hurd no longer needs these. -- Steve M. Robbins Sun, 27 Nov 2011 22:18:35 -0600 boost1.46 (1.46.1-7) unstable; urgency=low * control: Fix ungrammatical description for iostreams packages. Closes: #633865. * rules: Dump boostrap log file if bootstrapping fails. * libboost-doc.README.Debian: Remove reference to packages bjam and boost-build; now only need boostX.YZ-dev. Closes: #630529. -- Steve M. Robbins Wed, 17 Aug 2011 23:18:52 -0500 boost1.46 (1.46.1-6) unstable; urgency=low * control(libboost-mpi-python1.46.1, libboost-python1.46.1): Suggests a python interpreter. Closes: #620775. -- Steve M. Robbins Sun, 12 Jun 2011 00:37:42 -0500 boost1.46 (1.46.1-5) unstable; urgency=low * patches/openssl-no-ssl2.patch. New (thanks, Lubo~ Dole~el). Throw exception if sslv2 context requested but OPENSSL_NO_SSL2 defined. Closes: #621402, #622027, #622070. -- Steve M. Robbins Mon, 09 May 2011 21:34:12 -0500 boost1.46 (1.46.1-4) unstable; urgency=low * NEWS.Debian: fix format. * patches/changeset_71050.diff: Fix build with Python 3.2. Closes: #622021 * rules: Switch from dh_pysupport to dh_python2 and dh_python3. * control: Remove X-Python-Version and X-Python3-Version lines, to indicate all versions supported. Ensure all python packages use both ${python:Depends} and ${python:Breaks}. * rules: Remove execute bit from files in usr/share/boost-build. * patches/remove-rpath.patch: Delete. Closes: #619766. -- Steve M. Robbins Sat, 16 Apr 2011 01:45:40 -0500 boost1.46 (1.46.1-3) unstable; urgency=low * control: Remove package bjam; install bjam and Boost.Build with -dev package. The latter now conflicts and replaces the old bjam and boost-build packages. * control: * compat: Use debhelper compatibility level 8. * control: Set Standards-Version to 3.9.1. Don't build using _REENTRANT flag. -- Steve M. Robbins Sat, 19 Mar 2011 18:25:49 -0500 boost1.46 (1.46.1-2) unstable; urgency=low * control (libboost-mpi-python1.46.1): Add conflict with libboost-mpi-python1.46.0. Closes: #618441. * control: new package bjam that installs bjam and manpage. -- Steve M. Robbins Sat, 19 Mar 2011 14:14:47 -0500 boost1.46 (1.46.1-1) unstable; urgency=low * New upstream. * control: Add libboost-random1.46-dev to depends of -all-dev and suggests of -dev. Closes: #615849. -- Steve M. Robbins Sun, 13 Mar 2011 00:37:35 -0600 boost1.46 (1.46.0-1) unstable; urgency=low * New upstream release. - Fixes Boost ticket 4631. Closes: #595955. - Program.Options updated. Closes: #593522. - Also Closes: #537680. * control: * rules: Set versions to 1.46. Remove obsolete conflicts. * rules: Don't use "long double" for architecture "armhf". Closes: #604107. * control: * rules: New packages for Boost.Random. Closes: #610821. -- Steve M. Robbins Tue, 22 Feb 2011 00:18:43 -0600 boost1.45 (1.45.0-1) experimental; urgency=low * New upstream. - patches/kfreebsd-jam.patch: Remove. Applied upstream. - patches/boost-build-pythonid.patch: Remove. Applied upstream. * control: * rules: * documentation-files: * example-files: Updates for new version. -- Steve M. Robbins Tue, 14 Dec 2010 00:58:11 -0600 boost1.44 (1.44.0-2) experimental; urgency=low * rules, control: Build Python extensions for Python 3 in addition to Python 2. * patches/boost-1.44-py3.1.patch: New. Fix Boost.MPI build failure for Python 3 (thanks, Andreas Kloeckner). Closes: #595786. -- Steve M. Robbins Sat, 18 Sep 2010 12:03:46 -0500 boost1.44 (1.44.0-1) experimental; urgency=low * New upstream. Closes: #582690, #594634. - patches/boost-build-pythonid.patch: Modify. Partially applied upstream. - patches/lambda-include-deps.patch: Remove. Applied upstream. - patches/kfreebsd-thread.patch: Refresh. - patches/jam-wall-clean.patch: Remove temporarily. * rules: The python build ID now specified using --python-buildid. * patches/remove-rpath.patch: New. Disable rpath-setting code. -- Steve M. Robbins Sat, 11 Sep 2010 22:24:43 -0500 boost1.42 (1.42.0-4) unstable; urgency=low * rules: Copy "doc" directories to $htmldir with --parents option so that they end up in the right place. Closes: #586578. * patches/lambda-include-deps.patch: New. Adapted from upstream changeset 61881. Closes: #581706. * patches/boost-python-examples.patch: Remove "-mt" suffix from libboost_python. Also patch examples/tutorial/Jamroot. Closes: #577793. * control: Raise priority of libboost-iostreams, since important package aptitude depends on it. Closes: #588608. * patches/fusion-name-qual.patch: qualify names in boost::fusion namespace. Closes: #588204. -- Steve M. Robbins Sun, 25 Jul 2010 22:26:18 -0500 boost1.42 (1.42.0-3) unstable; urgency=low * rules: Add test_exec_monitor. Closes: #539350. (Previous upload was broken.) -- Steve M. Robbins Mon, 01 Mar 2010 20:33:39 -0600 boost1.42 (1.42.0-2) unstable; urgency=low * rules: Add test_exec_monitor. Closes: #539350. -- Steve M. Robbins Sat, 27 Feb 2010 22:04:09 -0600 boost1.42 (1.42.0-1) unstable; urgency=low * New upstream. - documentation-files: Update. * patches/boost-test-invalid-read.patch: Remove. Alternate fix applied upstream. * patches/boost/iostreams/device/mapped_file-header-guard.patch: * patches/boost-graph-printf.patch: Remove. Applied upstream. -- Steve M. Robbins Sat, 06 Feb 2010 20:26:56 -0600 boost1.41 (1.41.0-3) unstable; urgency=low * patches/date_time_date_formatting_hpp.patch: Change std::locale::locale() to std::locale(). Closes: #564860. -- Steve M. Robbins Sun, 17 Jan 2010 22:17:39 -0600 boost1.41 (1.41.0-2) unstable; urgency=low * patches/boost-graph-printf.patch: New. Include stdio.h, to define fprintf() and stderr. * patches/kfreebsd-thread.patch: New (thanks, Petr Salinger). Fix checks for __GLIBC__ source so that it builds on GNU/kFreeBSD. -- Steve M. Robbins Tue, 12 Jan 2010 00:51:40 -0600 boost1.41 (1.41.0-1) unstable; urgency=low * New upstream. Closes: #563108. * patches/boost-build-pythonid.patch: * rules: Switch --pythonid to --xpythonid; c.f. https://svn.boost.org/trac/boost/ticket/3814 * Merge changes from 1.40.0-5: - Switch to source format "3.0 (quilt)". - Remove hard-coding of python versions. * rules: Provide a constant reference to latest documentation. Closes: #548270. * control: Package libboost-mpi-python1.41 conflicts with libboost-mpi-python1.40, since both provide /usr/lib/pyshared/python2.5/boost/mpi.so. * patches/mapped_file-header-guard.patch: New. Add missing header guard (thanks, Sven Geggus). -- Steve M. Robbins Sun, 03 Jan 2010 20:46:58 -0600 boost1.40 (1.40.0-4) unstable; urgency=low * rtupdate: Don't die if link target doesn't exist. Update of libboost_mpi_python links failed when boost-python but not boost-mpi-python installed, causing postinst to fail. Closes: #556625. -- Steve M. Robbins Tue, 17 Nov 2009 20:58:40 -0600 boost1.40 (1.40.0-3) unstable; urgency=low * rules: Keep all headers in package libboostX.Y-dev to avoid bugs about one boost lib using headers of another boost lib. Boost is developed as a monolith. Closes: #548503, #553281, #550006. * control(libboost1.40-dev): Move libboost-python1.40-dev from Depends to Suggests; this is possible now that -dev contains all the header files. Closes: #549935. * patches/boost-build-pythonid.patch: New (thanks, Gaudenz Steinlin). Add --pythonid parameter to the build system to only add an identification to Python libraries. * control: * rtupdate: * rules: Build libboost-mpi-python1.40.0 and libboost-mpi-python1.40-dev. Thanks again to Gaudenz Steinlin. Closes: #552014. * patches/hurd-ellint_rd.patch: * patches/hurd-execution_monitor.patch: New (thanks, Pino Toscano). Patches for building on hurd. Closes: #552383. -- Steve M. Robbins Sat, 14 Nov 2009 22:44:30 -0600 boost1.40 (1.40.0-2) unstable; urgency=low * rules: * control: New package libboost-graph-parallel (thanks, Mathieu Malaterre). Closes: #549203. * [Merge from 1.39.0-5] rules: Rule $(bjam) needs to depend on $(QUILT_STAMPFN) because patches/bootstrap.patch modifies script bootstrap.sh, used to build $(bjam). Thanks to Andreas Ferber for the report and astute analysis. Closes: #545535. Put the "-mt" decoration before the final suffix for compatibility symlinks. Closes: #545773. * [Merge from 1.39.0-6] patches/boost-test-invalid-read.patch: New. Fix invalid read error detected by valgrind. Closes: #538946. * rules: Create "-mt" compatibility links for static libs. Closes: #549467. * control(libboost1.40-dev): Move libboost-python1.40-dev from Suggests to Depends. Workaround for #548503. * control(libboost1.40-all-dev): Add ${misc:Depends}. -- Steve M. Robbins Sun, 04 Oct 2009 07:53:01 -0500 boost1.40 (1.40.0-1) unstable; urgency=low * New upstream. Version string updates to control & rules. File list updates to example-files & documentation-files. - patches/python-enum-same-value.patch: - patches/python-generic-call.patch: - patches/bootstrap.patch: - patches/mpi-python.patch: - patches/boost_python_translate_exception.patch: - patches/wave-cpp.patch: - patches/function-template.patch: Remove. Applied upstream. * NEWS.Debian: Reformat to follow guidelines in Debian Developer's Reference, Section 6.3.4. * control: New package libboost1.40-all-dev that brings in all the Boost -dev packages (c.f. #537739). -- Steve M. Robbins Sat, 05 Sep 2009 13:40:38 -0500 boost1.39 (1.39.0-4) unstable; urgency=low * rules: Create libboostX-mt.so compatibility symlinks. Closes: #541133. See NEWS.Debian for more details. -- Steve M. Robbins Sun, 30 Aug 2009 14:47:14 -0500 boost1.39 (1.39.0-3) unstable; urgency=low * patches/mips-asm.patch: New. Fix build failure on mips (thanks, Florian Lohoff). Closes: #543975. * control: Package -mpi-dev suggests -graph-dev. Closes: #542067. Note that -dev now contains inspect, boostbook and quickbook. Add ${misc:Depends} to each package. * rules: Install manpages for inspect and quickbook. Override lintian warning about license file in -dev (boostbook/xsl/caramel/LICENSE). * README.source: New. Point to /usr/share/doc/quilt/README.source. -- Steve M. Robbins Sat, 29 Aug 2009 10:11:25 -0500 boost1.39 (1.39.0-2) unstable; urgency=low * control: libboost-system1.39-dev must conflict with libboost-system1.38-dev. Closes: #543522. * patches/function-template.patch: Re-instated, since patch did not make it to this release of Boost. Closes: #543576. * rules: * patches/sh4.patch: Add support for Renesas SH CPU. Patch based on initial work by Nobuhiro Iwamatsu. Closes: #535930. -- Steve M. Robbins Tue, 25 Aug 2009 22:40:25 -0500 boost1.39 (1.39.0-1) unstable; urgency=low * New upstream. Closes: #533822. - patches/function-template.patch: - patches/atomic_count.patch: - patches/atomic_count_gcc.patch: - patches/library-naming.patch: - patches/sp_counted_base.patch: Remove. Applied upstream. - Google analytics code removed from docs. Closes: #524186. * patches/wave-cpp.patch: New. Qualify std::string references. * patches/bootstrap.patch: New. Fix setting for LIBDIR. * patches/python-generic-call.patch: New. Add generic call operator support. Closes: #523344. * patches/python-enum-same-value.patch: New. Support enums with duplicated values. Closes: #523343. * rules: Build using --layout=system, and only the variants normally built by upstream default (1 shared and 1 static variant). System layout no longer has any decoration; i.e., neither -mt nor -mt-d. Use bootstrap.sh to build bjam and configure boost; use "bjam install" to install all files into debian/tmp. Bootstrap creates the file project-config.jam including a line naming the default python, so remove rule to add the default python to user-config.jam; add only non-default versions of python. * libboost-dbg.postinst.in: * libboost-dbg.prerm.in: Remove. No longer shipping "-d" variants of libboost_python in /usr/lib, so don't need to call rtupdate for libboost-dbg. * rtupdate: There is no longer separate single and multi-threaded libraries to take care of. * debian/quickbook.1: * debian/inspect.1: New. Manpages for installed tools. * control: Set Standards-Version to 3.8.2; no changes required. Make -dbg depend on -dev. Add non-virtual alternative for -dev dependency on libstdc++-dev. * copyright: Add the Caramel license, used by boostbook. -- Steve M. Robbins Fri, 10 Jul 2009 17:14:08 -0500 boost1.38 (1.38.0-7) unstable; urgency=low * control(libboost1.38-dev): downgrade the -doc and all -dev packages to Suggests. Closes: #529258, #529622. Add Replaces and Provides for "bcp" since the contents of that package is now provided in -dev. * control: Add build-conflict against boost-build; otherwise bjam fails with diagnostic "duplicate initialization of gcc ..." because both /etc/site-config.jam and ./user-config.jam have "using gcc" lines. * patches/boost-python-examples.patch: New. Patch example Jamroot to use installed libboost_python (thanks, Georg Schmid). Closes: #452410. * rules: Set OMPI_MCA_disable_memory_allocator=1 to work around bad interaction between fakeroot and OpenMPI. Closes: #531415. * control: Build-conflict with libopenmpi-dev version in unstable that contains this bug. * libboost-doc.README.Debian: Explain how to build Boost.Python examples. * rules: Build and install tools inspect and quickbook. Closes: #531653. * control: Add suggests for xsltproc, doxygen, docbook-xml, docbook-xsl, default-jdk, and fop to support quickbook. -- Steve M. Robbins Mon, 29 Jun 2009 21:50:17 -0500 boost1.38 (1.38.0-6) unstable; urgency=low * control: Add version (<< 1.35.0) to conflicts for -doc and -dbg packages. -- Steve M. Robbins Sun, 03 May 2009 00:53:13 -0500 boost1.38 (1.38.0-5) unstable; urgency=low * rtupdate: Handle versioned libboostX.Y-dbg.rtupdate properly. Closes: #525376. -- Steve M. Robbins Fri, 24 Apr 2009 22:14:11 -0500 boost1.38 (1.38.0-4) unstable; urgency=low * control (libboost1.38-dev): weaken dependency on libboost-math1.38-dev and libboost-serialization1.38-dev from Depends to Recommends (Closes: #524612). Add version (<< 1.35.0) to conflicts for -dev packages to conflict with boost version 1.34.1 but allow the packages generated by the upcoming boost-defaults source package. Ensure first line of long description is a full sentence (Closes: #524034). -- Steve M. Robbins Thu, 23 Apr 2009 01:51:34 -0500 boost1.38 (1.38.0-3) unstable; urgency=low * patches/jam-wall-clean.patch: Fix printf formatting in tools/jam/src/hash.c and tools/jam/src/hcache.c. -- Steve M. Robbins Sat, 04 Apr 2009 00:41:36 -0500 boost1.38 (1.38.0-2) unstable; urgency=low * Merge changes from 1.37.0-7 and 1.37.0-8: - rtupdate: Do not die if called for an unknown python version, just remove existing symlinks. - control: Package -dbg is now in section debug. - README.Debian: Add note about Boost.Test main() function. * copyright: Update. * licensecheck.diff: Remove. Licensecheck detects the Boost license as of devscripts 2.10.46. -- Steve M. Robbins Mon, 30 Mar 2009 21:53:13 -0500 boost1.38 (1.38.0-1) unstable; urgency=low * New upstream. - update control appropriately. * patches/math-c99.patch: * patches/jam-hardening.patch: * patches/avoid-PATH_MAX.patch: * patches/suppress-compiler-warnings.patch: * patches/gcc43-date_time.patch: * patches/gcc43-path_name_check.patch: * patches/system-error-code.patch: Removed. Applied upstream. * patches/jam-wall-clean.patch: Updated; partially applied upstream. * patches/kfreebsd-jam.patch: Refreshed. * patches/boost_python_translate_exception.patch: New. From upstream ticket 2582. * patches/series: Modified to account for removed patches. -- Steve M. Robbins Sun, 22 Feb 2009 00:21:26 -0600 boost1.37 (1.37.0-5) unstable; urgency=low * README.Debian: * libboost-python-dev.README.Debian: Revise, removing all the verbiage about single-threaded versions and decorated library names which was not relevant as of 1.37.0-1. * control: libboost1.37-dev depends on libboost-math1.37-dev. Closes: #515079. Update list of separate packages in description and Recommends line for libboost1.37-dev. -- Steve M. Robbins Mon, 16 Feb 2009 15:55:23 -0600 boost1.37 (1.37.0-4) unstable; urgency=low * patches/function-template.patch: New. Fix misplaced #ifdef (thanks to Caolan McNamara for the patch at https://bugzilla.redhat.com/show_bug.cgi?id=477131). Closes: #511073. * control: * rules: New packages libboost-mpi1.37.0 and libboost-mpi1.37-dev. Closes: #494832, #490242. Thanks to Tilman Koschnick and Rutger ter Borg for their patches. New -dev package conflicts and replaces libboost1.37-dev, since the headers were moved from the latter to the former. * patches/mpi-python.patch: The python bindings for Boost.MPI don't build; disable until I understand what's going on. * rules: Usage of "dh_clean -k" is deprecated in debhelper 7; replace with "dh_prep". -- Steve M. Robbins Sat, 10 Jan 2009 16:53:03 -0600 boost1.37 (1.37.0-3) unstable; urgency=low * patches/series: Add add-disable-long-double.patch to the series. * rules: Suppress building long-double math libraries (math_c99l & math_tr1l) on hppa, arm, armel, mips, and mipsel. Closes: #508962. -- Steve M. Robbins Thu, 18 Dec 2008 21:11:51 -0600 boost1.37 (1.37.0-2) unstable; urgency=low * control: Add Bcs-Browser and Vcs-Svn information. * copyright: Update with the help of licensecheck, modified to detect the Boost Software License; c.f. debian/licensecheck.diff. * patches/atomic_count_gcc.patch: New. GCC version >= 4.2 has moved to . * patches/jam-hardening.patch: New. Fix warnings generated by hardening options, -D_FORTIFY_SOURCE=2 and -Wformat-security. Thanks to Kees Cook for the patch. Closes: #505734. * patches/atomic_count.patch: New. Exclude armel, m68k, and sparc from atomic_count_sync case since they do not have __sync functions (http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html). * patches/math-c99.patch: New. Fix detection of long-double math functions such as log1pl() and expm1l(). Upstream changeset 50055. * patches/kfreebsd-jam.patch: New. Include for all GLIBC systems; fixes a build failure for kFreeBSD. Thanks to Petr Salinger for the patch. Closes: #506736. * patches/system-error-code.patch: New. Restore function get_posix_category(). Closes: #503917. Thanks to Deng Xiyue for researching the fix. * patches/sp_counted_base.patch: New. Add armel, m68k, and sparc to list of architectures that cannot use sp_counted_base_sync (they do not have __sync functions). * rules: The above patch means these architectures (and arm, which is already accounted for in sp_counted_base.hpp) fall through to sp_counted_base_spin, so we no longer need to specify BOOST_SP_USE_PTHREADS. -- Steve M. Robbins Sun, 14 Dec 2008 16:52:08 -0600 boost1.37 (1.37.0-1) unstable; urgency=low * New upstream. Closes: #504475. * patches/test-child-exit-t1723.patch: * patches/kfreebsd-poll-symbols.patch: * patches/gcc43-spirit-1617.patch: Remove, applied upstream. * check-interdep.sh: * documention-files: * example-files: Update for new version. * control: * rules: Update version variables for 1.37. Do not build single-threaded libraries. Do not create symlinks that are decorated with toolset name (i.e. "gcc43"). * rtupdate: Test for link target existence, since we no longer build single-threaded libraries. * debian/rules: Include debug symbols in libboost-dbg. Thanks for Tim Ansell for the patch. Closes: #495812. * control: Increase build-dep to debhelper >= 7. * compat: Set to level 7. Level 4 or better required for debug symbols fix. -- Steve M. Robbins Sun, 09 Nov 2008 15:46:50 -0600 boost1.36 (1.36.0-2) unstable; urgency=low * debian/patches/endian.patch: New. Include unconditionally on all Debian systems. -- Steve M. Robbins Mon, 27 Oct 2008 00:49:42 -0500 boost1.36 (1.36.0-1) unstable; urgency=low * New upstream version. Closes: #495179. - patches/serialisation-utility-include.patch: - patches/serialization-intrinsic64.patch: - patches/sp_counted_base.patch: Remove. Applied upstream. * patches/gcc43-date_time.patch: * patches/gcc43-spirit-1617.patch: * patches/gcc43-path_name_check.patch: New. Fixes for GCC 4.3 issues. * patches/gcc-4.3.patch: Remove. Most of this was applied upstream; remainder is now in gcc43-date_time.patch. * control: * rules: Add packages for Boost.Math. * copyright: Convert to UTF-8. -- Steve M. Robbins Sun, 28 Sep 2008 00:26:01 -0500 boost1.35 (1.35.0-8) experimental; urgency=low * debian/patches/jam-wall-clean.patch: Additional changes to expand.c, hash.c to remove warnings from amd64 & s390. * libboost-python1.35-dev: Add preferred alternative dependency "python (>= 2.5)", since elementtree is included in Python 2.5 and later. Fix from Martin Pitt . Closes: #494791. -- Steve M. Robbins Wed, 13 Aug 2008 03:36:02 -0500 boost1.35 (1.35.0-7) experimental; urgency=low * debian/patches/avoid-PATH_MAX.patch: Define symbol _GNU_SOURCE in order that get_current_dir_name() is declared. Should fix the build failure #494346. * debian/patches/jam-wall-clean.patch: Patch jam sources to build cleanly with -Wall. * debian/rules: Build with -Wall -Werror. -- Steve M. Robbins Sat, 09 Aug 2008 09:01:23 -0500 boost1.35 (1.35.0-6) experimental; urgency=low [ Steve M. Robbins ] * Uploading to experimental to avoid messing with the Etch freeze. * debian/control: Set Standards-Version to 3.8.0; no changes required. * debian/rules: Set gcc_version to gcc43 for the upstream-compatible symlinks. * debian/patches/gcc-4.3.patch: Qualify typedef in boost/gil/bit_aligned_pixel_reference.hpp. Closes: #485512. * debian/patches/serialisation-utility-include.patch: New. Apply suggested patch, from upstream http://svn.boost.org/trac/boost/ticket/1822. Closes: #491225. * debian/patches/sp_counted_base.patch: New. Avoid using sp_counted_base_sync.hpp on ARM and HPPA, as those architectures do not support atomic builtin __sync_fetch_and_add. Closes: #485434. * debian/patches/kfreebsd-poll-symbols.patch: New. Work around kFreeBSD defining POLL_ERR and POLL_HUP as the same value. Closes: #492786. * debian/patches/avoid-PATH_MAX.patch: New. Use get_current_dir_name() to avoid static string of size PATH_MAX as that symbol is unavailable in hurd-i386. Closes: #487343. * debian/patches/test-child-exit-t1723.patch: New. Ignore child process if return status is zero (normal); fix for Boost ticket 1723. * debian/patches/python2.5-elementtree.patch: New. Use cElementTree from xml.etree, if available (python 2.5). Closes: #489022. [ Domenico Andreoli ] * debian/rules: perform parallel builds as per $DEB_BUILD_OPTIONS -- Steve M. Robbins Sun, 03 Aug 2008 10:33:40 -0500 boost1.35 (1.35.0-5) unstable; urgency=low * debian/rules: Build using -DBOOST_SP_USE_PTHREADS for armel. -- Steve M. Robbins Fri, 23 May 2008 00:32:17 -0500 boost1.35 (1.35.0-4) unstable; urgency=low * debian/rules: Fix syntax error creating user-config.jam; the final semicolon needs a space before it. Closes: #481971. -- Steve M. Robbins Mon, 19 May 2008 19:55:46 -0500 boost1.35 (1.35.0-3) unstable; urgency=low * debian/patches/serialization-intrinsic64.patch: New. Patch from upstream to fix build problem with GCC 4.3 on 64-bit systems. * debian/rules: The gcc module of bjam no longer honours , so use -D_REENTRANT in user-config.jam. * debian/rules: Build using -DBOOST_SP_USE_PTHREADS for: hppa, sparc, and arm. -- Steve M. Robbins Mon, 19 May 2008 01:26:21 -0500 boost1.35 (1.35.0-2) unstable; urgency=low * debian/control: Add missing dependencies. Closes: #480948. date_time depends on serialization filesystem depends on system graph depends on serialization test iostreams depends on regex regex depends on thread thread depends on date_time wave depends on filesystem serialization multi_index [libboost-dev] depends on serialization -- Steve M. Robbins Sat, 17 May 2008 03:50:02 -0500 boost1.35 (1.35.0-1) unstable; urgency=low * New upstream version. Closes: #473752. debian/documentation-files: debian/patches: Adjust to new version. debian/control: Remove depenency of libboost-dev on libboost-serialization-dev as noted in (1.34.1-7). Closes: #478782. * debian/control: Substitute 1.34.1 --> 1.35.0 on all library package names. Change source to boost1.35 so that packages will coexist in archive with 1.34.1 versions. Add version string to all packages including -dev and -doc. Add conflicts with previous packages. Add packages libboost-system1.35.0 and libboost-system1.35-dev. * debian/patches/library-naming.patch: New. Remove toolset and boost version from library names. * debian/rtupdate: Remove logic for links with toolset name. * debian/rules: Adjust SOVERSION, SHLIBS_VERSION, and boost_version to new version. Remove DEBIAN_SUFFIX. Add system to boost_libs. Adjust link functions: - Create compatibility links with toolset and boost version, rather than simplified name links. - Don't create gcc41 compatibility links. - Don't create Boost.Python compatibility links. Add "link=shared,static" to all jam invocations, including "jam install". Don't need to copy more/css_0 to -doc package. Add rules for new system library * debian/control: * debian/rules: Don't build with g++-4.2 explicitly. Closes: #463288. * debian/libboost-doc.doc-base: Change Section from obsolete Apps/Programming to Programming/C++. Replace leading spaces of Abstract continuation lines by a single space. The latter means "display verbatim", which is not desired. * debian/control: Build-depend on debhelper (>= 6.0.7) to ensure dh_lintian available. * debian/rules: Use dh_lintian to install lintian-overrides. Create all lintian-overrides files in debian/rules. * debian/libboost-dev.lintian-overrides: * debian/libboost-dbg.lintian-overrides: * debian/libboost-python-dev.lintian-overrides: * debian/libboost-doc.lintian-overrides: Delete. * debian/control: Remove package bcp. * debian/rules: Package /usr/bin/bcp and its manpage in libboost1.35-dev. * debian/control: Remove package pyste. * debian/rules: Package /usr/bin/pyste and its manpage in libboost-python1.35-dev. -- Steve M. Robbins Wed, 07 May 2008 02:38:44 -0500 boost (1.34.1-11) unstable; urgency=low * debian/control: Add python-dev to libboost-python-dev depends. Closes: #473973. -- Steve M. Robbins Fri, 04 Apr 2008 11:01:05 -0500 boost (1.34.1-10) unstable; urgency=low * debian/libboost-python-dev.postinst: * debian/libboost-python-dbg.postinst: Change from "which pyversions && ..." (which fails if pyversions not available) to "if which pyversions ...". Closes: #473607. * debian/patches/date_time_date_formatting_hpp: Update patch to also format fractional seconds with classic locale (thanks, Jean Pierre LeJacq). Also reported upstream as ticket/1726. Closes: #473177. -- Steve M. Robbins Mon, 31 Mar 2008 18:44:59 -0500 boost (1.34.1-9) unstable; urgency=low * debian/control: * debian/rules: Set up to use Quilt for maintaining patches. * boost/numeric/ublas/matrix.hpp: * boost/numeric/ublas/matrix_sparse.hpp: Revert. These originated in the merge of 1.33.1 (change 13900) and appear to be erroneous. * Reverted all other diffs outside of debian/ and created the following set of quilt patches: - debian/patches/regex-vulnerability.patch - debian/patches/suppress-compiler-warnings.patch - debian/patches/function-template-thread-safety.patch - debian/patches/bjam-no-strict-aliasing.patch - debian/patches/gcc-4.3.patch * Remove obsolete patch files: - debian/patches/03-st_mt.patch - debian/patches/02-is_incrementable1331.patch - debian/patches/01-ublas1331.patch - debian/patches/05_regex_fixes.patch - debian/patches/04-ublas_warnings.patch * boost/date_time/date_facet.hpp: Qualify special_values_parser<>, to build with GCC 4.3; patch added to gcc-4.3.patch (thanks, Anibal Avelar). Closes: #468061. * boost/spirit/phoenix/operators.hpp: Include , to build with GCC 4.3; patch added to gcc-4.3.patch (thanks, Dominic Hargreaves). Closes: #470080. * boost/date_time/date_formatting.hpp: Format year with classic locale to force correct formatting; new patch date_time_date_formatting_hpp (thanks, Jean Pierre LeJacq). Also reported upstream as ticket/1674. Closes: #469771. * debian/libboost-doc.doc-base: Change document ID from "Boost" to "boost". Apparently dh_installdocs got picky about no upper-case letters in doc IDs. Closes: #471284. * debian/patches/gcc-4.3.patch: Include relevant patches from Boost ticket tracker, issues: 1570, 1615, and 1617. * debian/control: Update to standards version 2.7.3 (no changes). * debian/pyste.1: New. Manual page for pyste. * debian/rules: Install pyste man page. Bump SHLIBS_VERSION to 1.34.1-8. Closes: #472571. * debian/bcp.1: Replace initial ' by .\" to avoid warnings from "man". -- Steve M. Robbins Mon, 24 Mar 2008 23:09:57 -0500 boost (1.34.1-8) unstable; urgency=low * debian/rules: Replace all use of $(PWD) and `pwd` by $(CURDIR); clears up lintian warning debian-rules-uses-pwd. * debian/control: Move the homepage lines from the extended descriptions to a proper header; clears up lintian warning description-contains-homepage. * tools/jam/src/build.jam: Build using -fno-strict-aliasing, to avoid a segfault. Patch obtained from upstream changeset 41036; c.f. bug #367825 and boost ticket 977 (http://svn.boost.org/trac/boost/ticket/977). * debian/rules: Do not build bjam with CC=gcc-4.1. * debian/control: Do not build-depend on gcc-4.1. Closes: #463287. * debian/control: Change Build-Depends from "python-dev | python-all-dev, python2.4-dev" to simply "python-all-dev"; this brings in all current Python -dev packages. Update python-support required version from 0.3 to 0.6, following README of current python-support package. Remove "python2.4-dev" from dependency of libboost-python-dev; add python2.4-dev and python2.5-dev to its Suggests line since users of this package may need any of the currently-supported Python development packages. * debian/rules: Introduce a suffix on library names, intended to handle the -py24 and -py25 suffices added using --buildid. This requires some new functions, and updates to existing functions: mk_base_name, mk_full_name, mk_compat_name, mk_xxx_files, mk_files, and mk_debhelper_files. Add lines for Python 2.4 and 2.5 to user-config.jam file and build each python version explicitly. Factor code to remove generated debhelper files from clean to new rule clean-debhelper, called from both clean and install rules. Install debian/rtupdate files, ensure the -py24 and -py25 libraries are installed and remove those without suffices. Remove unnecessary use of dh_python. Closes: #445381, #425881, #466820. * debian/rtupdate: New. Updates or removes symlinks for link libraries, depending on the default Python runtime version. * debian/libboost-dbg.postinst: New. Call rtupdate to create symlinks. * debian/libboost-python-dev.postinst: New. Call rtupdate to create symlinks. * debian/libboost-dbg.prerm: New. Call rtupdate to remove symlinks. * debian/libboost-python-dev.prerm: New. Call rtupdate to remove symlinks. * debian/README.Debian: * debian/libboost-python-dev.README.Debian: * debian/Notes: Add notes about multiple Python runtime support, remove some obsolete notes. -- Steve M. Robbins Sat, 22 Mar 2008 14:37:38 -0500 boost (1.34.1-7) unstable; urgency=low * debian/control (libboost-dev): Move libboost-serialization-dev from Recommends to Depends since ptr_vector needs it. Closes: 457654, 465720. Note that the next version of the Pointer Container Library uses a non-intrusive implementation of serialization, decoupling the libraries [http://thread.gmane.org/gmane.comp.lib.boost.devel/169668]. This change can be reverted when the new upstream is packaged. * debian/documentation-files: Updated as per procedure in debian/Notes. Closes: #338106. * debian/rules (libboost-doc): Also copy in all doc directories. -- Steve M. Robbins Mon, 18 Feb 2008 13:36:30 -0600 boost (1.34.1-6) unstable; urgency=low [Fixes for GCC 4.3] * boost/regex/v4/cpp_regex_traits.hpp: * boost/test/test_tools.hpp: Add #include to pick up definition of CHAR_BIT (thanks, Jiri Palecek). Closes: #444359. * boost/python/detail/def_helper.hpp: Change keywords<0> to detail::keywords<0>, avoiding a "changes meaning" error. Patch from upstream SVN. * Verified that tagpy builds. Closes: #444359. * Verified that twinkle builds (after fixing #465187). Closes: #454815. * Verified that kdeedu builds (had to omit uninstallable libfacile-ocaml-dev build-dep). Closes: #463464. -- Steve M. Robbins Mon, 11 Feb 2008 01:40:05 -0600 boost (1.34.1-5) unstable; urgency=medium [ Domenico Andreoli ] * Re-synchronized with friends from Ubuntu (thanks Jamie Strandboge). - got fixes for CVE-2008-0171 and CVE-2008-0172. Closes: #461236. * debian/patches/05_regex_fixes.patch: fix for basic_regex_parser() in boost/regex/v4/basic_regex_parser.hpp to return error on invalid repetition of next state * References CVE-2008-0171 CVE-2008-0172 http://svn.boost.org/trac/boost/changeset/42674 http://svn.boost.org/trac/boost/changeset/42745 [ Steve Robbins ] * boost/function/function_base.hpp: * boost/function/function_template.hpp: Replace with SVN head version to fix boost http://svn.boost.org/trac/boost/ticket/1260. Closes: #458743. -- Steve M. Robbins Thu, 07 Feb 2008 23:16:01 -0600 boost (1.34.1-4) unstable; urgency=low * Merged Steve Langasek's -2.1 and -2.2 changes into the experimental -3 version. -- Steve M. Robbins Sun, 23 Dec 2007 21:14:55 -0600 boost (1.34.1-2.2) unstable; urgency=low * Non-maintainer upload. * Change libicu-dev dependency in addition to the build-dependency. Closes: #456844. * Add back build dependency on gcc-4.1, since bjam currently segfaults with gcc-4.2; this is superseded already in 1.34.1-3 in experimental. Closes: #456915. -- Steve Langasek Wed, 19 Dec 2007 00:58:39 -0800 boost (1.34.1-2.1) unstable; urgency=low * Non-maintainer upload. * Build-depend on libicu-dev instead of libicu36-dev for the icu library transition. Closes: #454605. * Bump the Build-Depends from g++-4.1 to g++-4.2, and add backwards-compatibility "-gcc41" symlinks for all libraries to avoid gratuitous ABI breakage for the rebuild since the gcc version doesn't change the ABI, contrary to upstream assertion. Bump the shlibs to match. * Add shlibs to libboost-dbg package, for compatibility with new dpkg-shlibdeps behavior. -- Steve Langasek Sun, 16 Dec 2007 13:59:29 -0800 boost (1.34.1-3) experimental; urgency=low * ABI change: switched back to gcc 4.2 * bjam is built using gcc 4.1 (closes: #367825). * libboost-dev now recommends all the other libboost-*-dev packages (closes: #443160). -- Domenico Andreoli Wed, 19 Sep 2007 03:12:48 +0200 boost (1.34.1-2) unstable; urgency=low [ Steve Robbins ] * Build with gcc 4.1 and python 2.4 (closes: #426871). [ Domenico Andreoli ] * Fixed gcc 4.1 vs. gcc 4.2 confusion on hppa (closes: #436446). * Debug libraries and their symlinks are back in libboost-dbg. * bjam is built using gcc 4.1 also in the case it is not the default gcc version. -- Steve M. Robbins Tue, 14 Aug 2007 22:52:45 -0500 boost (1.34.1-1) experimental; urgency=low * New upstream release (closes: #436091). * Moved date_time.hpp to libboost-date-time-dev (closes: #434370). * Removed libboost-dbg package. Debug libraries are now installed in their respective libboost-* packages. * Reworked libraries installation to binary packages. * README.Debian now explains how programs should link to the Boost libraries both the portable and the Debian-specific way. Closes: #429533, #424038, #425264, #428419, #431502, #425992. -- Domenico Andreoli Sun, 05 Aug 2007 15:32:38 +0200 boost (1.34.1~rc1-1) experimental; urgency=low * New upstream release candidate. * Drop ${Source-Version} substvar from rules. * Moved boost/filesystem.hpp to libboost-filesystem-dev (closes: #428179). * Build with g++ 4.2 (g++ 4.1 is still used for bjam). * Updated README to reflect the new naming scheme for libraries linking. -- Domenico Andreoli Sun, 24 Jun 2007 23:52:28 +0200 boost (1.34.0-1) unstable; urgency=low * New upstream release. * libboost-doc is properly created and filled, also on hppa (closes: #406883). -- Domenico Andreoli Mon, 14 May 2007 00:06:49 +0200 boost (1.34.0~rc2-2) experimental; urgency=low * Re-applied workaround for toolchain bug on hppa (closes: #416496). * Partially synchronized with Ubuntu: - removed "python |" as alternative build dependency - libboost-python-dev now depends on python2.5-dev -- Domenico Andreoli Thu, 10 May 2007 23:22:20 +0200 boost (1.34.0~rc2-1) experimental; urgency=low * Removed debian-specific virtual destructors of polymorphic_iarchive and polymorphic_oarchive. see http://lists.boost.org/Archives/boost/2006/09/110979.php. * Bumped shlibs to (>= 1.34.0~rc2-1), ABI might be changed since the first introduction of 1.34.0 snapshot from CVS almost a year ago. -- Domenico Andreoli Thu, 10 May 2007 12:33:32 +0200 boost (1.34.0~beta1-2) experimental; urgency=low * libboost-serialization-dev now depends on libboost-serialization1.34.0, libboost-wave-dev on libboost-wave1.34.0. * Build depends on g++-4.1 (>= 4.1.2). -- Domenico Andreoli Mon, 30 Apr 2007 17:26:55 +0200 boost (1.34.0~beta1-1) experimental; urgency=low * New upstream beta release. * Boost.Python is built using python 2.5. -- Domenico Andreoli Sat, 28 Apr 2007 01:08:50 +0200 boost (1.33.1+1.34.0-cvs20070326-1) experimental; urgency=low * New upstream snapshot version. * Added missing shared library packages of Boost.Serialization and Boost.Wave. Closes: #410157. * No unqualified .so symlinks are now provided, only -st.so/-mt.so are available. Closes: #356705. -- Domenico Andreoli Tue, 27 Mar 2007 13:50:30 +0200 boost (1.33.1+1.34.0-cvs20070221-1) experimental; urgency=low * New upstream snapshot version. * Improved the build process. * Now both st/mt variants are installed as well as their new symlinks to ease the linking. No, we still have not pkg-config support. -- Domenico Andreoli Fri, 23 Mar 2007 13:47:15 +0100 boost (1.33.1+1.34.0-cvs20060531-1) experimental; urgency=low * New upstream snapshot version. * CSS file for HTML documentation is now correctly installed. Closes: #358986. * Standards-Version is now set to 3.7.2. -- Domenico Andreoli Wed, 31 May 2006 16:09:49 +0200 boost (1.33.1-10) unstable; urgency=medium * boost/detail/sp_counted_base_gcc_ia64.hpp, boost/detail/sp_counted_base_gcc_ppc.hpp: added missing constraints on inline assembly. Closes: #405599. Patch courtesy of Aaron M. Ucko , from upstream CVS. -- Domenico Andreoli Fri, 5 Jan 2007 10:23:10 +0100 boost (1.33.1-9ubuntu2) feisty; urgency=low * Remove "python |" as alternative build dependency. -- Matthias Klose Sun, 14 Jan 2007 17:18:44 +0000 boost (1.33.1-9ubuntu1) feisty; urgency=low * Build using python2.5. * Fix build failure on 64bit archs with python2.5. -- Matthias Klose Sun, 14 Jan 2007 14:17:42 +0000 boost (1.33.1-9) unstable; urgency=low * boost/property_map_iterator.hpp: added missing namespace. Closes: #397654. -- Domenico Andreoli Tue, 21 Nov 2006 12:21:42 +0100 boost (1.33.1-8) unstable; urgency=low * Synchronized with Ubuntu. * libboost-regex-dev now depends on libicu36-dev. -- Domenico Andreoli Fri, 3 Nov 2006 23:54:34 +0100 boost (1.33.1-7ubuntu1) edgy; urgency=low * debian/patches/05-fix_signals.patch: - patch from upsteam CVS, fixes Boost.Signals to work properly across shared library boundaries with certain compiler options. (Closes Ubuntu: #62202) -- Matti Lindell Mon, 25 Sep 2006 08:54:32 +0300 boost (1.33.1-7) unstable; urgency=low * Re-added build dependency on python2.4-dev. * Build dependency on libicu36-dev is now allowed and preferred over libicu34-dev. -- Domenico Andreoli Sun, 17 Sep 2006 23:35:27 +0200 boost (1.33.1-6) unstable; urgency=low * Packaged Pyste. Closes: #189839. * Package libboost-dbg has now priority extra. -- Domenico Andreoli Fri, 8 Sep 2006 21:56:31 +0200 boost (1.33.1-5) unstable; urgency=low * CSS file for HTML documentation is now correctly installed. Closes: #358986. * Added missing header in boost/bind.hpp. Closes: #376747. * Fixed some unused parameter warnings. Closes: #372800. * Fixed some typos in source code. Closes: #378016. Patch courtesy of Roger Leigh. -- Domenico Andreoli Thu, 20 Jul 2006 12:44:28 +0200 boost (1.33.1-4) unstable; urgency=low * Graph library is built with -mlong-calls on hppa too. -- Domenico Andreoli Wed, 22 Mar 2006 14:21:05 +0100 boost (1.33.1-3) unstable; urgency=low * Fixed licensing of Graph library. Closes: #349209. Patch from upstream CVS repository, courtesy of Doug Gregor. * Fixed build process of Graph library. Closes: #326089. * Shared library packages do not install the empty /usr/include/boost directory any more. Closes: #344599. * Added manpage for bcp. Closes: #348523. * Static version of Thread library is also installed. Closes: #357986. -- Domenico Andreoli Thu, 16 Mar 2006 13:40:06 +0100 boost (1.33.1-2) unstable; urgency=low [ Christophe Prud'homme ] * Bug fix: "libboost-wave-dev: Dependency on libboost-filesystem-dev missing", thanks to Martin v . Löwis (Closes: #346367). [ Domenico Andreoli ] * boost/graph/topological_sort.hpp: removed name of unused parameter to prevent long compiler warning. Closes: #347519. * Applied patch from upstream CVS to fix parsing of valid options with a common root. Closes: #345714. * libboost-python-dev now correctly depends on python2.4-dev. -- Domenico Andreoli Wed, 11 Jan 2006 11:11:42 +0100 boost (1.33.1-1) experimental; urgency=low * New upstream release. * debian/control, debian/rules: switched to python 2.4. * debian/control: removed build dependency on g++ 3.4. Closes: #342958. -- Domenico Andreoli Mon, 12 Dec 2005 17:44:36 +0100 boost (1.33.0-5) unstable; urgency=low * Re-uploaded with the right maintainer, the Debian Boost Team. -- Domenico Andreoli Mon, 21 Nov 2005 16:49:41 +0100 boost (1.33.0-4) unstable; urgency=low * debian/control, debian/rules: renamed DSO packages to '*c2a'. Closes: #339154. -- Christophe Prud'homme Mon, 21 Nov 2005 07:05:58 +0100 boost (1.33.0-3) unstable; urgency=low * debian/documentation-files: regenerate. * Applied patch from 1.33.1 to unbreak ublas. * Applied patch from 1.33.1 to unbreak is_incrementable with g++ 4.0.2. * Applied patch to remove warnings when compiling ublas with -Wall, patch sent upstream. * Single-threaded libraries are provided as well, thanks to Waba. Closes: #335594. * hppa and m68k build with gcc 3.4. Closes: #319232, #334959. -- Domenico Andreoli Thu, 3 Nov 2005 13:11:05 +0100 boost (1.33.0-2) unstable; urgency=low * The Debian Boost Team now maintains the package. * Added packages for Boost.Iostreams and Boost.Wave libraries. Closes: #324833. * Added package for bcp utility. Closes: #333530. * boost/tuple/detail/tuple_basic.hpp: removed name of unused parameter. Closes: #327167. * debian/rules: enabled UNICODE support for Boost.Regex. Closes: #333703. -- Domenico Andreoli Tue, 18 Oct 2005 18:21:25 +0200 boost (1.33.0-1) unstable; urgency=low * New usptream version. Closes: #322674. * debian/rules: static library of program_options is now distributed. Closes: #320973, #322269. * boost/graph/adjacency_list.hpp: fixed compiler warnings. Closes: #322386. * debian/documentation-files: updated. Closes: #322579. * Fixed FTBFS on GNU/kFreeBSD. Closes: #320677. -- Domenico Andreoli Fri, 12 Aug 2005 12:37:35 +0200 boost (1.32.0+1.33.0-cvs20050727-1) unstable; urgency=low * Updated the snapshot version. Closes: #319966. * Fixed shlibs version. -- Domenico Andreoli Wed, 27 Jul 2005 23:06:27 +0200 boost (1.32.0+1.33.0-cvs20050720-3) unstable; urgency=low * Added build dependency on zlib1g-dev. -- Domenico Andreoli Thu, 21 Jul 2005 12:34:37 +0200 boost (1.32.0+1.33.0-cvs20050720-2) unstable; urgency=low * Added build dependency on libbz2-dev. -- Domenico Andreoli Thu, 21 Jul 2005 10:08:48 +0200 boost (1.32.0+1.33.0-cvs20050720-1) unstable; urgency=low * New upstream snapshot version. Closes: #318139, #318995, #306696. - fixed invalid include files in test library. Closes: #296804. - removed extraneous empty directory in package libboost-graph1.33.0. Closes: #309361. * debian/control: libboost-graph1.33.0 suggests graphviz. Closes: #309363. * debian/control: libboost-graph-dev only recommends libboost-graph1.33.0. Closes: #309360. * boost/archive/detail/interface_iarchive.hpp, boost/archive/detail/interface_oarchive.hpp: fixed compiler warning. Closes: #308291. -- Domenico Andreoli Wed, 20 Jul 2005 01:28:45 +0200 boost (1.32.0-6.1) unstable; urgency=medium * Non-maintainer upload. * Medium-urgency upload for RC bugfix. * Rebuild against g++-4.0 for the C++ ABI transition, adding "c2" to the name of each of the library packages and conflicting with the old versions. -- Steve Langasek Mon, 18 Jul 2005 19:10:24 -0700 boost (1.32.0-6) unstable; urgency=low * debian/control: libboost-serialization-dev now replaces libboost-dev properly. -- Domenico Andreoli Thu, 7 Apr 2005 10:46:00 +0200 boost (1.32.0-5) unstable; urgency=low * debian/control: libboost-dev now suggests also libboost-program-options-dev and libboost-serialization-dev. * debian/control, debian/rules: added package libboost-serialization-dev. closes: #292596. -- Domenico Andreoli Wed, 30 Mar 2005 17:56:57 +0200 boost (1.32.0-4) unstable; urgency=low * debian/rules: symbolic link to HTML/boost documentation directory is now properly installed. Closes: #290333. * boost/test/detail/wrap_stringstream.hpp: fixed workaround (from upstream CVS). Closes: #300330. -- Domenico Andreoli Tue, 22 Mar 2005 16:44:31 +0100 boost (1.32.0-2) unstable; urgency=low * debian/rules: debug libraries are now really installed in package libboost-dbg. -- Domenico Andreoli Mon, 10 Jan 2005 01:36:46 +0100 boost (1.32.0-1) experimental; urgency=low * New upstream version. Closes: #282871. - boost/pool/detail/pool_construct.inc and boost/pool/detail/pool_construct_simple.inc are correctly installed by package libboost-dev. Closes: #284076. * debian/control, debian/rules: added package libboost-dbg. Closes: #279883. * debian/control, debian/rules: added packages for Boost.Program_options. -- Domenico Andreoli Tue, 7 Dec 2004 15:22:49 +0100 boost (1.31.0-9) unstable; urgency=low * More things fixed for indirect_traits in boost/detail. -- Domenico Andreoli Thu, 11 Nov 2004 16:59:04 +0100 boost (1.31.0-8) unstable; urgency=low * Moved indirect_traits to boost/detail. Fixed things here and there (from upstream CVS). Closes: #278889. * boost/numeric/ublas/banded.hpp: fixed gcc-3.4 compilation error. Closes: #276652. * tools/regression/run_tests.sh: fix setting of BOOST_BUILD_PATH. * debian/control: flex is used instead of flex-old. -- Domenico Andreoli Thu, 11 Nov 2004 16:04:09 +0100 boost (1.31.0-7) unstable; urgency=medium * boost/spirit/core/assert.hpp: fixed typo in BOOST_SPIRIT_ASSERT macro definition (from upstream CVS). Closes: #267991. * libs/graph/src/Makefile: uses -O3 instead of -O to work around gcc-3.3 bug #248207 on amd64. Closes: #270156. * Added random_device.cpp as example file of libboost-dev package and added a note in libboost-dev's README.Debian. Closes: #261719. -- Domenico Andreoli Thu, 9 Sep 2004 16:06:48 +0200 boost (1.31.0-6) unstable; urgency=low * debian/rules: removed package bjam as it is now built from a separate source package, boost-jam. * boost/iterator/iterator_adaptor.hpp: removed the useless inclusion of is_xxx.hpp (from upstream CVS). * debian/control: libboost-dev does not depend on libboost-python-dev any more. * boost/date_time/posix_time/ptime.hpp: Add constructor from special_values type; upstream bug fix (http://lists.boost.org/MailArchives/boost-users/msg06801.php) -- Steve M. Robbins Sun, 25 Jul 2004 09:41:03 -0400 boost (1.31.0-5) unstable; urgency=low * libs/python/build/Jamfile: boost-python shared library is now linked to libpython2.3. Closes: #243089. * boost/graph/isomorphism.hpp: changed type of u1 and u2 in edge_cmp from vertex1_t to int (from upstream CVS). boost/graph/detail/adjacency_list.hpp: fixed bug with regards to in_edge_list for undirected graphs (from upstream CVS). Closes: #245390. * boost/format/internals.hpp: changed format_item::truncate_ 's type from int to streamsize (from upstream CVS). Closes: #247643. -- Domenico Andreoli Wed, 19 May 2004 22:19:32 +0200 boost (1.31.0-4) unstable; urgency=low * debian/control: libboost-python-dev now replaces old libboost-dev. Closes: #243432. -- Domenico Andreoli Tue, 13 Apr 2004 20:55:24 +0200 boost (1.31.0-3) unstable; urgency=low * debian/control: libboost-dev depends on libboost-python-dev. A few header files include headers in , for some strange reason. Closes: #242714, #242801. * debian/control: libboost-dev suggests all the libboost-*-dev packages. Closes: #242335. * debian/rules: proper bjam man page is created. * Move to libboost-python-dev package. -- Domenico Andreoli Sat, 10 Apr 2004 16:59:35 +0200 boost (1.31.0-2) unstable; urgency=low * Added symlinks in -dev packages to ease linking of programs which use Boost libraries. * Added symlink to allow dynamic linking to boost-filesystem shared library. * Updated Debian standards version to 3.6.1. -- Domenico Andreoli Mon, 22 Mar 2004 02:34:25 +0100 boost (1.31.0-1) unstable; urgency=low * New upstream version. Closes: #231951, #236016. - builds with Python 2.3. Closes: #206083. - new bjam package (thanks, Vladimir Prus) - new package for shared libboost-filesystem * libs/date_time/doc/class_date.html: Fix doc typo. Closes: #223236. -- Steve M. Robbins Mon, 8 Mar 2004 23:10:37 -0500 boost (1.30.2-3) unstable; urgency=low * debian/rules: Build "multi" libraries. Thanks to Domenico Andreoli for the patch. * README.Debian: Document -D_REENTRANT required for threaded applications. -- Steve M. Robbins Sat, 31 Jan 2004 17:24:17 -0500 boost (1.30.2-2) unstable; urgency=low * debian/control(Uploaders): Add Domenico Andreoli. * debian/rules: libs/graph/src/Makefile: Define _REENTRANT, per policy 10.2. -- Steve M. Robbins Sun, 26 Oct 2003 13:57:35 -0500 boost (1.30.2-1) unstable; urgency=low * New upstream version. Closes: #211715. * boost/numeric/interval/detail/c99_rounding_control.hpp: fix typo. Closes: #203358. * boost/filesystem/exception.hpp: * libs/filesystem/src/exception.cpp: Add implementation of who(), path1(), and path2(). (Thanks, Benjamin Dauvergne). Closes: #196830. -- Steve M. Robbins Sun, 12 Oct 2003 12:11:00 -0400 boost (1.30.0-4) unstable; urgency=low * boost/math/quaternion.hpp: Apply supplied patch to fix a GCC 3.3 compile problem. (Thanks, Marcelo E. Magallon). Closes: #199270. * libboost-doc: - Fix broken links. Closes: #199646. - Use symlink to /usr/include/boost, rather than duplicating header files. Suggest libboost-dev. Closes: #174979, #175444. - Include libs/*/examples not already included in HTML. Closes: #191704. -- Steve M. Robbins Fri, 11 Jul 2003 18:13:32 -0400 boost (1.30.0-3) unstable; urgency=low * boost/config/compiler/gcc.hpp: Do not warn about GCC 3.3. Closes: #193862. * boost/python/object/make_ptr_instance.hpp: Add typename keyword, suggested by Dave Abrahams posting referenced in bug report (thanks, Ben Burton). Closes: #198524. * boost/python/converter/as_to_python_function.hpp: Qualify function call; workaround for apparent bug in GCC 3.3. (Thanks, Romain Lerallut). Closes: #192481. -- Steve M. Robbins Mon, 26 May 2003 19:17:45 -0400 boost (1.30.0-2) unstable; urgency=low * debian/rules: Move httrack call to binary-indep. Closes: #187740. -- Steve M. Robbins Sat, 5 Apr 2003 18:43:08 -0500 boost (1.30.0-1) unstable; urgency=low * New upstream. Closes: #186256. * debian/copyright: Include copyright and license statement for each library. Closes: #183153. -- Steve M. Robbins Sun, 30 Mar 2003 23:50:57 -0500 boost (1.29.0-3) unstable; urgency=low * Migrate to GCC 3.2. Closes: #167030, #176269. - Do not build with stlport. -- Steve M. Robbins Sun, 12 Jan 2003 23:47:19 -0500 boost (1.29.0-2) unstable; urgency=low * debian/rules: Install Boost.Test static libs. Closes: #167106. * boost/pool/singleton_pool.hpp: Apply supplied patch (thanks Alexander Kjeldaas). Closes: #167198. -- Steve M. Robbins Sat, 2 Nov 2002 19:32:12 -0500 boost (1.29.0-1) unstable; urgency=low * New upstream version. Closes: #164830. -- Steve M. Robbins Sat, 26 Oct 2002 15:11:17 -0400 boost (1.28.0-4) unstable; urgency=low * Build with python 2.2. Closes: #159533. The shared lib ABI changes, but the soname cannot, so introduce conflicting/replacing package for libboost-python. -- Steve M. Robbins Fri, 13 Sep 2002 22:54:25 -0400 boost (1.28.0-3) unstable; urgency=low * libs/graph/src/Makefile: build using -I/usr/include/stlport. Closes: #150002. * debian/control: change section of -doc package to match ftp overrides. -- Steve M. Robbins Fri, 14 Jun 2002 18:19:09 -0400 boost (1.28.0-2) unstable; urgency=low * libs/graph/src/Makefile: revert patch to that used in 1.27.0-4, so that the shared libs are also built with optimization. Closes: #148056. -- Steve M. Robbins Fri, 24 May 2002 14:04:58 -0400 boost (1.28.0-1) unstable; urgency=low * New upstream version. * Set YACC= in debian/rules to inhibit regenerating jam parser source. This makes for smaller debian diffs (thanks, David Abrahams). * Drop the examples package. Code examples are in the doc package. -- Steve M. Robbins Fri, 17 May 2002 20:46:44 -0400 boost (1.27.0-4) unstable; urgency=low * libs/graph/src/Makefile: build graph lib with optimization. * control: Do not build-depend on libstlport4.5-dbg, nor on texinfo. * Split docs into new libboost-doc package, suggested by libboost-dev. The -doc package replaces /usr/share/doc-base/Boost from the former -dev package. Complete the list of documentation files. Closes: #143128. * debian/README.Debian: add note for newbies (thanks, Laurent Bonnaud). Closes: #142634. -- Steve M. Robbins Sat, 20 Apr 2002 19:31:38 -0400 boost (1.27.0-3) unstable; urgency=low * Build shared library packages. - build graph lib with -fPIC. Closes: #133259. -- Steve M. Robbins Sun, 3 Mar 2002 14:39:18 -0500 boost (1.27.0-2) unstable; urgency=low * boost/detail/atomic_count.hpp: Do not use atomic_count_linux.hpp; the latter mistakenly uses which turns out to be a bad idea. * libs/graph/src/Makefile: do not use "-g" flag; some of the symbols are so large as to upset the assembler on the alpha. -- Steve M. Robbins Thu, 28 Feb 2002 18:45:06 -0500 boost (1.27.0-1) unstable; urgency=low * New upstream version. -- Steve M. Robbins Mon, 25 Feb 2002 18:53:58 -0500 boost (1.26.0-4) unstable; urgency=low * control(source): build-depend on libstlport4.5-dev. * control(libboost-dev): depend on libstlport4.5-dev. - new stlport package just got into the archive * control(libboost-examples): remove dependency on libboost-dev. - depending on arch "any" package will hold it up until the latter is built on all arches. * document reason for depending on STLPort. Closes: #131516. -- Steve M. Robbins Sat, 2 Feb 2002 08:11:28 -0500 boost (1.26.0-3) unstable; urgency=low * control: change libboost-regex-dgb package to priority extra, to agree with ftp override file. * Don't build dir_it library, as it is not part of Boost. - don't build-depend on unzip. Closes: #130290. -- Steve M. Robbins Sat, 26 Jan 2002 11:08:31 -0500 boost (1.26.0-2) unstable; urgency=low * boost/detail/limits.hpp: determine endianness using Thanks to Daniel Jacobowitz for the tip. -- Steve M. Robbins Tue, 22 Jan 2002 11:38:43 -0500 boost (1.26.0-1) unstable; urgency=low * New maintainer. Closes: #123483. * New upstream version. Closes: #117106, #107802. * Build-depend on flex, bison, and texinfo. Closes: #98979. * Ship all the boost headers, including all of boost/pending. Closes: #108922, #108925. * Fixed up the descriptions. Closes: #97947, #109193, #124899, #124900, #124901, #125620, #125621. * Register docs with doc-base. Closes: #99396. -- Steve M. Robbins Sun, 20 Jan 2002 23:10:28 -0500 boost (1.21.1-1) unstable; urgency=low * First upstream version. -- Raphael Bossek Mon, 12 Mar 2001 23:37:49 +0100 debian/quickbook.10000664000000000000000000000313211701230712011232 0ustar .TH QUICKBOOK "1" "July 2009" "Quickbook Version 1.4" "User Commands" .SH NAME Quickbook \- WikiWiki style documentation tool geared towards C++ documentation .SH DESCRIPTION .B QuickBook is a WikiWiki style documentation tool geared towards C++ documentation using simple rules and markup for simple formatting tasks. .B QuickBook extends the WikiWiki concept. Like the WikiWiki, QuickBook documents are simple text files. A single QuickBook document can generate a fully linked set of nice HTML and PostScript/PDF documents complete with images and syntax- colorized source code. .PP Features include: .PP * generate BoostBook xml, to generate HTML, PostScript and PDF * simple markup to link to Doxygen-generated entities * macro system for simple text substitution * simple markup for italics, bold, preformatted, blurbs, code samples, tables, URLs, anchors, images, etc. * automatic syntax coloring of code samples * CSS support .SS "Allowed options:" .TP \fB\-\-help\fR produce help message .TP \fB\-\-version\fR print version string .TP \fB\-\-no\-pretty\-print\fR disable XML pretty printing .TP \fB\-\-indent\fR arg indent spaces .TP \fB\-\-linewidth\fR arg line width .TP \fB\-\-input\-file\fR arg input file .TP \fB\-\-output\-file\fR arg output file .TP \fB\-\-debug\fR debug mode (for developers) .TP \fB\-\-ms\-errors\fR use Microsoft Visual Studio style error & warn message format .HP \fB\-I\fR [ \fB\-\-include\-path\fR ] arg include path .SH "SEE ALSO" The full documentation for .B Quickbook is maintained in HTML; see /usr/share/doc/libboostX.Y-doc/HTML/doc/html/quickbook.html debian/NEWS.Debian0000664000000000000000000001032612105610170011043 0ustar boost1.53 (1.53.0-1) unstable; urgency=low Debian no longer ships the "libboost_foo-mt" compatibility symlinks. Use "-lboost_foo" only. -- Steve M. Robbins Sat, 09 Feb 2013 21:12:14 -0600 boost1.46 (1.46.1-3) unstable; urgency=low Boost.Build and bjam now ship in the main -dev package (currently libboost1.46-dev). Packages boost-build and bjam are obsolete and to be removed from the archive. -- Steve M. Robbins Sat, 19 Mar 2011 18:26:39 -0500 boost1.39 (1.39.0-4) unstable; urgency=low Since only one (the multi-threaded) variant of each library is built, upstream elected to simplify the library name by removing the redundant "-mt" decoration. Debian will follow this convention, to remain compatible at link time with other vendors. The preferred form of the link option is now "-lboost_regex", etc. In response to the Debian 1.37 package, a number of boost-using packages changed their build system to add "-mt"; see entry below. To avoid breaking all these packages, Debian is providing compatibility symlinks with the "-mt" decoration; e.g. "-lboost_regex-mt" continues to work. However, note that this name is not compatible with other distributions, so build-system authors are encouraged to use the undecorated name. -- Steve M. Robbins Sun, 30 Aug 2009 14:47:14 -0500 boost1.37 (1.37.0-1) unstable; urgency=low The single-threaded variant of the libraries is no longer built. Prior to this, -lboost_regex was the single-threaded variant and -lboost_regex-mt was the multi-threaded variant of Boost.Regex. Any software using "-lboost_regex" will need to now use "-lboost_regex-mt" instead (and similar for all other libraries, of course). -- Steve M. Robbins Sun, 09 Nov 2008 15:46:50 -0600 boost1.35 (1.35.0-1) unstable; urgency=low All packages now incorporate the boost version. The -doc, -dbg, and -dev packages are labelled with 1.35 under the assumption that 1.35.x will all be API compatible. The shared lib packages are labelled with the SOVERSION (1.35.0) as always. The new packages conflict with the old (versions 1.34.x) since they install into the same directories. The new packages have a new source name, however, so both 1.34 and 1.35 will be available from the Debian repository. Removed package bcp. The binary "bcp" is now found in libboost-dev. Removed package pyste. The binary "pyste" is now found in libboost-python-dev. -- Steve M. Robbins Wed, 07 May 2008 02:38:44 -0500 boost (1.34.0-1) unstable; urgency=low The boost library short name has changed semantics in Debian. Prior to 1.34.0-1, the short name was multi-threaded. Now it is single threaded. Boost library names encode the SOVERSION and build characteristics of the library, including the compiler used (gcc41) and whether multi-threading is enabled (-mt if so). This leads to long names like libboost_wserialization-gcc42-mt-1_34_1.so.1.34.1 [http://www.boost.org/more/getting_started/unix-variants.html#library-naming] that are hard to discover in the build system of boost-using software. Prior to 1.34.0-1, Debian packages provided a NON-PORTABLE short form of the library name as a convenience. The short form (e.g. libboost_wserialization.so) did not have the compiler or "-mt" strings in the name, even though it was the multi-thread flavour. Other distributions, e.g. Fedora, use the so-called "layout=system" install and also have shorter-named boost libraries. However, the short-named libraries are the single-threaded flavour. The multi-threaded flavour has "-mt" appended, e.g. libboost_wserialization-mt.so). After some discussion, both internal and on bug reports #429533, #424038, #425264, #428419, #431502, and #425992, we decided to bring the Debian names in line with "layout=system", hence compatible with other distributions. This means that the short name has changed semantics from being the multi-threaded flavour to being now the single-threaded flavour. To summarize: if you're linking to libboostX for a multi-threaded application, append "-mt". -- Domenico Andreoli Mon, 14 May 2007 00:06:49 +0200 debian/control0000664000000000000000000015376112254342412010607 0ustar Source: boost-mpi-source1.54 Homepage: http://www.boost.org/ Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Boost Team Uploaders: Steve M. Robbins Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.1~), dctrl-tools, zlib1g-dev, libbz2-dev, libicu-dev, libboost-serialization1.54-dev, libboost-python1.54-dev, mpi-default-dev, bison, flex, docbook-to-man, help2man, xsltproc, doxygen, dh-python, python, python-all-dev, python3, python3-all-dev (>= 3.1) Build-Conflicts: libopenmpi-dev (= 1.3.2-2) Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-boost/boost/trunk/ Vcs-Svn: svn://anonscm.debian.org/pkg-boost/boost/trunk Standards-Version: 3.9.4 Package: libboost1.54-dbg Architecture: any Multi-Arch: same Section: debug Priority: extra Depends: ${misc:Depends}, ${shlibs:Depends}, libboost1.54-dev (= ${binary:Version}) Conflicts: libboost1.42-dbg, libboost1.46-dbg, libboost1.48-dbg, libboost1.49-dbg, libboost1.50-dbg, libboost1.52-dbg, libboost1.53-dbg Description: Boost C++ Libraries with debug symbols This package forms part of the Boost C++ Libraries collection. . These libraries are built with debug symbols. They are useful to debug programs which use Boost. These must be used also at build/link time. Package: libboost1.54-dev Architecture: any Section: libdevel Depends: ${misc:Depends}, ${shlibs:Depends}, libstdc++-4.8-dev | libstdc++-dev Suggests: libboost1.54-doc, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev, libboost1.54-tools-dev, libmpfrc++-dev, libntl-dev Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev, libboost1.49-dev, libboost1.50-dev, libboost1.52-dev, libboost1.53-dev Description: Boost C++ Libraries development files The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This package provides headers for all Boost libraries. . Extended precision arithmetic package libmpfrc++-dev or libntl-dev is required to use the Boost.Multiprecision wrapping of the respective library. . For the following subprojects separate packages exist: chrono, date-time, exception filesystem, graph, iostreams, locale, math, mpi, program_options, python, regex, serialization, signals, system, test, thread, timer, and wave. Package: libboost1.54-tools-dev Architecture: any Multi-Arch: foreign Section: libdevel Depends: ${misc:Depends}, ${shlibs:Depends} Suggests: xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2), default-jdk (>= 1.4), fop (>= 0.94) Conflicts: bjam, boost-build, libboost1.49-dev, libboost1.53-tools-dev Replaces: bjam, boost-build, libboost1.49-dev, libboost1.53-dev, libboost1.53-tools-dev Description: Boost C++ Libraries development tools The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This package provides the auxiliary tools bjam, Boost.Build, bcp, inspect, boostbook and quickbook. Package: libboost1.54-all-dev Architecture: any #Not until python-dev is multiarch co-installable #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev, libboost1.54-tools-dev, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine1.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log1.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev Description: Boost C++ Libraries development files (ALL) The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This metapackage provides the complete Boost development environment, including all separately-packaged libraries. Package: libboost1.54-doc Homepage: http://www.boost.org/libs/ Architecture: all Section: doc Depends: ${misc:Depends} Suggests: libboost1.54-dev (>= ${source:Version}) Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc Description: Boost.org libraries documentation The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This is documentation for the boost libraries in HTML format. Some pages point to header files provided in the corresponding -dev package, so it is suggested to install the latter as well. Package: libboost-atomic1.54.0 Homepage: http://www.boost.org/libs/atomic/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: atomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking. Package: libboost-atomic1.54-dev Homepage: http://www.boost.org/libs/atomic/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-atomic1.54.0 (= ${binary:Version}) Description: atomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking. Conflicts: libboost-atomic1.53-dev Package: libboost-chrono1.54.0 Homepage: http://www.boost.org/libs/chrono/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ representation of time duration, time point, and clocks This package forms part of the Boost C++ Libraries collection. . The Boost.Chrono library provides: . * A means to represent time durations: managed by the generic duration class.Examples of time durations include days, minutes, seconds and nanoseconds, which can be represented with a fixed number of clock ticks per unit. All of these units of time duration are united with a generic interface by the duration facility. * A type for representing points in time: time_point. A time_point represents an epoch plus or minus a duration. The library leaves epochs unspecified. A time_point is associated with a clock. * Several clocks, some of which may not be available on a particular platform: system_clock, steady_clock and high_resolution_clock. A clock is a pairing of a time_point and duration, and a function which returns a time_point representing now. . To make the timing facilities more generally useful, Boost.Chrono provides a number of clocks that are thin wrappers around the operating system's time APIs, thereby allowing the extraction of wall clock time, user CPU time, system CPU time spent by the process: . * process_real_cpu_clock, captures wall clock CPU time spent by the current process. * process_user_cpu_clock, captures user-CPU time spent by the current process. * process_system_cpu_clock, captures system-CPU time spent by the current process. * a tuple-like class process_cpu_clock, that captures real, user-CPU, and system-CPU process times together. * a thread_clock thread steady clock giving the time spent by the current thread (when supported by a platform). . Lastly, Boost.Chrono includes typeof registration for duration and time_point to permit using emulated auto with C++03 compilers. Package: libboost-chrono1.54-dev Homepage: http://www.boost.org/libs/chrono/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-chrono1.54.0 (= ${binary:Version}) Conflicts: libboost-chrono1.48-dev, libboost-chrono1.49-dev, libboost-chrono1.50-dev, libboost-chrono1.52-dev, libboost-chrono1.53-dev Description: C++ representation of time duration, time point, and clocks This package forms part of the Boost C++ Libraries collection. . The Boost.Chrono library provides: . * A means to represent time durations: managed by the generic duration class . Examples of time durations include days, minutes, seconds and nanoseconds, which can be represented with a fixed number of clock ticks per unit. All of these units of time duration are united with a generic interface by the duration facility. * A type for representing points in time: time_point. A time_point represents an epoch plus or minus a duration. The library leaves epochs unspecified. A time_point is associated with a clock. * Several clocks, some of which may not be available on a particular platform: system_clock, steady_clock and high_resolution_clock. A clock is a pairing of a time_point and duration, and a function which returns a time_point representing now. . To make the timing facilities more generally useful, Boost.Chrono provides a number of clocks that are thin wrappers around the operating system's time APIs, thereby allowing the extraction of wall clock time, user CPU time, system CPU time spent by the process: . * process_real_cpu_clock, captures wall clock CPU time spent by the current process. * process_user_cpu_clock, captures user-CPU time spent by the current process. * process_system_cpu_clock, captures system-CPU time spent by the current process. * A tuple-like class process_cpu_clock, that captures real, user-CPU, and system-CPU process times together. * A thread_clock thread steady clock giving the time spent by the current thread (when supported by a platform). . Lastly, Boost.Chrono includes typeof registration for duration and time_point to permit using emulated auto with C++03 compilers. Package: libboost-context1.54.0 Homepage: http://www.boost.org/libs/context/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Context is a foundational library that provides a sort of cooperative multitasking on a single thread. By providing an abstraction of the current execution state in the current thread, including the stack (with local variables) and stack pointer, all registers and CPU flags, and the instruction pointer, a fcontext_t instance represents a specific point in the application's execution path. This is useful for building higher-level abstractions, like coroutines, cooperative threads (userland threads) or an equivalent to C# keyword yield in C++. Package: libboost-context1.54-dev Homepage: http://www.boost.org/libs/context/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-context1.54.0 (= ${binary:Version}) Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Context is a foundational library that provides a sort of cooperative multitasking on a single thread. By providing an abstraction of the current execution state in the current thread, including the stack (with local variables) and stack pointer, all registers and CPU flags, and the instruction pointer, a fcontext_t instance represents a specific point in the application's execution path. This is useful for building higher-level abstractions, like coroutines, cooperative threads (userland threads) or an equivalent to C# keyword yield in C++. Conflicts: libboost-context1.53-dev Package: libboost-coroutine1.54-dev Homepage: http://www.boost.org/libs/coroutine/ Architecture: any Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-context1.54-dev (= ${binary:Version}) Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Coroutine provides templates for generalized subroutines which allow multiple entry points for suspending and resuming execution at certain locations. It preserves the local state of execution and allows re-entering subroutines more than once (useful if state must be kept across function calls). . Coroutines can be viewed as a language-level construct providing a special kind of control flow. . In contrast to threads, which are pre-emptive, coroutine switches are cooperative (programmer controls when a switch will happen). The kernel is not involved in the coroutine switches. . The implementation uses Boost.Context for context switching. Package: libboost-date-time1.54.0 Homepage: http://www.boost.org/libs/date_time/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: set of date-time libraries based on generic programming concepts This package forms part of the Boost C++ Libraries collection. . These libraries are intended to make programming with dates and times almost as simple and natural as programming with strings and integers. Package: libboost-date-time1.54-dev Homepage: http://www.boost.org/libs/date_time/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-date-time1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}) Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev, libboost-date-time1.49-dev, libboost-date-time1.50-dev, libboost-date-time1.52-dev, libboost-date-time1.53-dev Description: set of date-time libraries based on generic programming concepts This package forms part of the Boost C++ Libraries collection. . These libraries are intended to make programming with dates and times almost as simple and natural as programming with strings and integers. Package: libboost-exception1.54-dev Homepage: http://www.boost.org/libs/exception/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}) Description: library to help write exceptions and handlers This package forms part of the Boost C++ Libraries collection. . The purpose of Boost Exception is to ease the design of exception class hierarchies and to help write exception handling and error reporting code. Conflicts: libboost-exception1.50-dev, libboost-exception1.52-dev, libboost-exception1.53-dev Package: libboost-filesystem1.54.0 Homepage: http://boost.org/libs/filesystem/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: filesystem operations (portable paths, iteration over directories, etc) in C++ This package forms part of the Boost C++ Libraries collection. . The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories. The goal is to facilitate portable script-like operations from within C++ programs. Package: libboost-filesystem1.54-dev Homepage: http://boost.org/libs/filesystem/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-filesystem1.54.0 (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}) Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev, libboost-filesystem1.49-dev, libboost-filesystem1.50-dev, libboost-filesystem1.52-dev, libboost-filesystem1.53-dev Description: filesystem operations (portable paths, iteration over directories, etc) in C++ This package forms part of the Boost C++ Libraries collection. . The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories. The goal is to facilitate portable script-like operations from within C++ programs. Package: libboost-graph1.54.0 Homepage: http://www.boost.org/libs/graph/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Suggests: graphviz Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . Graphs are mathematical abstractions that are useful for solving many types of problems in computer science. Consequently, these abstractions must also be represented in computer programs. A standardized generic interface for traversing graphs is of utmost importance to encourage reuse of graph algorithms and data structures. Package: libboost-graph1.54-dev Homepage: http://www.boost.org/libs/graph/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-graph1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-test1.54-dev (= ${binary:Version}) Conflicts: libboost-graph1.42-dev, libboost-graph1.46-dev, libboost-graph1.48-dev, libboost-graph1.49-dev, libboost-graph1.50-dev, libboost-graph1.52-dev, libboost-graph1.53-dev Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . Graphs are mathematical abstractions that are useful for solving many types of problems in computer science. Consequently, these abstractions must also be represented in computer programs. A standardized generic interface for traversing graphs is of utmost importance to encourage reuse of graph algorithms and data structures. Package: libboost-graph-parallel1.54.0 Homepage: http://www.boost.org/libs/graph_parallel/ Architecture: any #Not until mpi is multiarched #Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Suggests: graphviz Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL. Package: libboost-graph-parallel1.54-dev Homepage: http://www.boost.org/libs/graph_parallel/ Architecture: any #Not until mpi is multiarched #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-graph-parallel1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-test1.54-dev (= ${binary:Version}) Conflicts: libboost-graph-parallel1.42-dev, libboost-graph-parallel1.46-dev, libboost-graph-parallel1.48-dev, libboost-graph-parallel1.49-dev, libboost-graph-parallel1.50-dev, libboost-graph-parallel1.52-dev, libboost-graph-parallel1.53-dev Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL. Package: libboost-iostreams1.54.0 Homepage: http://www.boost.org/libs/iostreams/ Architecture: any Multi-Arch: same Section: libs Priority: important Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Iostreams Library This package forms part of the Boost C++ Libraries collection. . Boost.Iostreams are a collection of concepts and a set of templates which turn models of these concepts into C++ standard library streams and stream buffers. Package: libboost-iostreams1.54-dev Homepage: http://www.boost.org/libs/iostreams/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-regex1.54-dev (= ${binary:Version}), libboost-iostreams1.54.0 (= ${binary:Version}) Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev, libboost-iostreams1.49-dev, libboost-iostreams1.50-dev, libboost-iostreams1.52-dev, libboost-iostreams1.53-dev Description: Boost.Iostreams Library development files This package forms part of the Boost C++ Libraries collection. . Boost.Iostreams are a collection of concepts and a set of templates which turn models of these concepts into C++ standard library streams and stream buffers. Package: libboost-locale1.54.0 Homepage: http://www.boost.org/libs/locale/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ facilities for localization This package forms part of the Boost C++ Libraries collection. . Boost.Locale gives powerful tools for development of cross platform localized software - the software that talks to user in its language. . * Correct case conversion, case folding and normalization. * Collation (sorting), including support for 4 Unicode collation levels. * Date, time, timezone and calendar manipulations, formatting and parsing, including transparent support for calendars other than Gregorian. * Boundary analysis for characters, words, sentences and line-breaks. * Number formatting, spelling and parsing. * Monetary formatting and parsing. * Powerful message formatting (string translation) including support for plural forms, using GNU catalogs. * Character set conversion. * Transparent support for 8-bit character sets like Latin1 * Support for char and wchar_t * Experimental support for C++0x char16_t and char32_t strings and streams. Package: libboost-locale1.54-dev Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-locale1.54.0 (= ${binary:Version}) Conflicts: libboost-locale1.48-dev, libboost-locale1.49-dev, libboost-locale1.50-dev, libboost-locale1.52-dev, libboost-locale1.53-dev Description: C++ facilities for localization This package forms part of the Boost C++ Libraries collection. . Boost.Locale gives powerful tools for development of cross platform localized software - the software that talks to user in its language. . * Correct case conversion, case folding and normalization. * Collation (sorting), including support for 4 Unicode collation levels. * Date, time, timezone and calendar manipulations, formatting and parsing, including transparent support for calendars other than Gregorian. * Boundary analysis for characters, words, sentences and line-breaks. * Number formatting, spelling and parsing. * Monetary formatting and parsing. * Powerful message formatting (string translation) including support for plural forms, using GNU catalogs. * Character set conversion. * Transparent support for 8-bit character sets like Latin1 * Support for char and wchar_t * Experimental support for C++0x char16_t and char32_t strings and streams. Package: libboost-log1.54.0 Homepage: http://www.boost.org/libs/log/ Architecture: any Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Description: C++ logging library This package forms part of the Boost C++ Libraries collection. . This library aims to make logging significantly easier for the application developer. It provides a wide range of out-of-the-box tools along with public interfaces for extending the library. The main goals of the library are: . * Simplicity. A small example code snippet should be enough to get the feel of the library and be ready to use its basic features. * Extensibility. A user should be able to extend functionality of the library for collecting and storing information into logs. * Performance. The library should have as little performance impact on the user's application as possible. Package: libboost-log1.54-dev Homepage: http://www.boost.org/libs/log/ Architecture: any Section: libdevel Depends: ${misc:Depends}, libboost-log1.54.0 (= ${binary:Version}), libboost1.54-dev (= ${binary:Version}), libboost-filesystem1.54-dev (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}), libboost-date-time1.54-dev (= ${binary:Version}), libboost-thread1.54-dev (= ${binary:Version}) Description: C++ logging library This package forms part of the Boost C++ Libraries collection. . This library aims to make logging significantly easier for the application developer. It provides a wide range of out-of-the-box tools along with public interfaces for extending the library. The main goals of the library are: . * Simplicity. A small example code snippet should be enough to get the feel of the library and be ready to use its basic features. * Extensibility. A user should be able to extend functionality of the library for collecting and storing information into logs. * Performance. The library should have as little performance impact on the user's application as possible. Package: libboost-math1.54.0 Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Math Library This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions. Package: libboost-math1.54-dev Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-math1.54.0 (= ${binary:Version}) Conflicts: libboost-math1.42-dev, libboost-math1.46-dev, libboost-math1.48-dev, libboost-math1.49-dev, libboost-math1.50-dev, libboost-math1.52-dev, libboost-math1.53-dev Description: Boost.Math Library development files This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions. Package: libboost-mpi1.54.0 Homepage: http://www.boost.org/doc/html/mpi.html Architecture: any #Not until mpi is multiarched. #Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ interface to the Message Passing Interface (MPI) This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. Package: libboost-mpi1.54-dev Homepage: http://www.boost.org/doc/html/mpi.html Architecture: any #Not until mpi is multiarched. #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-mpi1.54.0 (= ${binary:Version}), mpi-default-dev Suggests: libboost-graph1.54-dev Conflicts: libboost-mpi1.42-dev, libboost-mpi1.46-dev, libboost-mpi1.48-dev, libboost-mpi1.49-dev, libboost-mpi1.50-dev, libboost-mpi1.52-dev, libboost-mpi1.53-dev Description: C++ interface to the Message Passing Interface (MPI) This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. Package: libboost-mpi-python1.54.0 Homepage: http://www.boost.org/doc/html/mpi/python.html Architecture: any #Not until mpi & python are multiarch co-installable #Multi-Arch: same Section: python Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, mpi-default-bin Pre-Depends: ${misc:Pre-Depends} Suggests: python, python3 Breaks: ${python:Breaks} Conflicts: libboost-mpi-python1.40.0, libboost-mpi-python1.41.0, libboost-mpi-python1.42.0, libboost-mpi-python1.46.0, libboost-mpi-python1.46.1, libboost-mpi-python1.48.0, libboost-mpi-python1.49.0, libboost-mpi-python1.50.0, libboost-mpi-python1.52.0, libboost-mpi-python1.53.0 Description: C++ interface to the Message Passing Interface (MPI), Python Bindings This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. . This package provides Python Bindings to the C++ interface. . One of the python interpreter packages is required to use the bindings. Package: libboost-mpi-python1.54-dev Homepage: http://www.boost.org/doc/html/mpi/python.html Architecture: any #Not until mpi & python are multiarch co-installable #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost-mpi1.54-dev (= ${binary:Version}), libboost-mpi-python1.54.0 (= ${binary:Version}) Conflicts: libboost-mpi-python1.42-dev, libboost-mpi-python1.46-dev, libboost-mpi-python1.48-dev, libboost-mpi-python1.49-dev, libboost-mpi-python1.50-dev, libboost-mpi-python1.52-dev, libboost-mpi-python1.53-dev Description: C++ interface to the Message Passing Interface (MPI), Python Bindings This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. . This package provides Python Bindings to the C++ interface. Package: libboost-program-options1.54.0 Homepage: http://www.boost.org/libs/program_options/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: program options library for C++ This package forms part of the Boost C++ Libraries collection. . Library to let program developers obtain program options, that is (name, value) pairs from the user, via conventional methods such as command line and config file. Package: libboost-program-options1.54-dev Homepage: http://www.boost.org/libs/program_options/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-program-options1.54.0 (= ${binary:Version}) Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev, libboost-program-options1.49-dev, libboost-program-options1.50-dev, libboost-program-options1.52-dev, libboost-program-options1.53-dev Description: program options library for C++ This package forms part of the Boost C++ Libraries collection. . Library to let program developers obtain program options, that is (name, value) pairs from the user, via conventional methods such as command line and config file. Package: libboost-python1.54.0 Homepage: http://www.boost.org/libs/python/ Architecture: any Multi-Arch: same Section: python Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Python Library This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . One of the python interpreter packages is required to use the created extensions. Package: libboost-python1.54-dev Homepage: http://www.boost.org/libs/python/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-python1.54.0 (= ${binary:Version}), libpython-dev | libpython3-dev Suggests: libboost1.54-doc, python-pyste Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev, libboost-python1.49-dev, libboost-python1.50-dev, libboost-python1.52-dev, libboost-python1.53-dev Description: Boost.Python Library development files This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . This package also contains the pyste Boost.Python code generator that allows the user to specify classes and functions to be exported using a simple interface file, which following the Boost.Python's philosophy, is simple Python code. . This package allows development of a Python interface for all current versions of Python in Debian. Code using this library will need also one of the Python development packages. Package: python-pyste Homepage: http://www.boost.org/libs/python/ Architecture: all Section: python Depends: gccxml, ${python:Depends}, ${misc:Depends} Replaces: libboost-python1.54-dev (<< ${binary:Version}) Breaks: libboost-python1.54-dev (<< ${binary:Version}) Description: pyste Boost.Python code generator This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . This package only contains the pyste Boost.Python code generator that allows the user to specify classes and functions to be exported using a simple interface file, which following the Boost.Python's philosophy, is simple Python code. Package: libboost-random1.54.0 Homepage: http://www.boost.org/libs/random/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost Random Number Library This package forms part of the Boost C++ Libraries collection. . The Boost Random Number Library (Boost.Random for short) provides a variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution. Package: libboost-random1.54-dev Homepage: http://www.boost.org/libs/random/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-random1.54.0 (= ${binary:Version}) Conflicts: libboost-random1.42-dev, libboost-random1.46-dev, libboost-random1.48-dev, libboost-random1.49-dev, libboost-random1.50-dev, libboost-random1.52-dev, libboost-random1.53-dev Description: Boost Random Number Library This package forms part of the Boost C++ Libraries collection. . The Boost Random Number Library (Boost.Random for short) provides a variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution. Package: libboost-regex1.54.0 Homepage: http://www.boost.org/libs/regex/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: regular expression library for C++ This package forms part of the Boost C++ Libraries collection. . Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and awk, and the programming language perl, each of which make extensive use of regular expressions. Traditionally C++ users have been limited to the POSIX C APIs for manipulating regular expressions, and while regex does provide these APIs, they do not represent the best way to use the library. For example regex can cope with wide character strings, or search and replace operations (in a manner analogous to either sed or perl), something that traditional C libraries can not do. Package: libboost-regex1.54-dev Homepage: http://www.boost.org/libs/regex/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-regex1.54.0 (= ${binary:Version}), libicu-dev Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev, libboost-regex1.49-dev, libboost-regex1.50-dev, libboost-regex1.52-dev, libboost-regex1.53-dev Description: regular expression library for C++ This package forms part of the Boost C++ Libraries collection. . Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and awk, and the programming language perl, each of which make extensive use of regular expressions. Traditionally C++ users have been limited to the POSIX C APIs for manipulating regular expressions, and while regex does provide these APIs, they do not represent the best way to use the library. For example regex can cope with wide character strings, or search and replace operations (in a manner analogous to either sed or perl), something that traditional C libraries can not do. Package: libboost-serialization1.54.0 Homepage: http://www.boost.org/libs/serialization/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: serialization library for C++ This package forms part of the Boost C++ Libraries collection, containing the following functionalities: . * proper restoration of pointers to shared data * serialization of STL containers and other commonly used templates * data portability - streams of bytes created on one platform should be readable on any other * archive interface must be rich enough to permit the creation of an archive that presents serialized data as XML in a useful manner . Here, "serialization" means the reversible deconstruction of an arbitrary set of C++ data structures to a sequence of bytes. archive: to refer to a specific rendering of this stream of bytes. Package: libboost-serialization1.54-dev Homepage: http://www.boost.org/libs/serialization/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54.0 (= ${binary:Version}) Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev, libboost-serialization1.49-dev, libboost-serialization1.50-dev, libboost-serialization1.52-dev, libboost-serialization1.53-dev Description: serialization library for C++ This package forms part of the Boost C++ Libraries collection, containing the following functionalities: . * proper restoration of pointers to shared data * serialization of STL containers and other commonly used templates * data portability - streams of bytes created on one platform should be readable on any other * archive interface must be rich enough to permit the creation of an archive that presents serialized data as XML in a useful manner . Here, "serialization" means the reversible deconstruction of an arbitrary set of C++ data structures to a sequence of bytes. archive: to refer to a specific rendering of this stream of bytes. Package: libboost-signals1.54.0 Homepage: http://www.boost.org/libs/signals/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: managed signals and slots library for C++ This package forms part of the Boost C++ Libraries collection. . Signals represent callbacks with multiple targets, and are also called publishers or events in similar systems. Signals are connected to some set of slots, which are callback receivers (also called event targets or subscribers), which are called when the signal is "emitted." Package: libboost-signals1.54-dev Homepage: http://www.boost.org/libs/signals/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-signals1.54.0 (= ${binary:Version}) Conflicts: libboost-signals1.42-dev, libboost-signals1.46-dev, libboost-signals1.48-dev, libboost-signals1.49-dev, libboost-signals1.50-dev, libboost-signals1.52-dev, libboost-signals1.53-dev Description: managed signals and slots library for C++ This package forms part of the Boost C++ Libraries collection. . Signals represent callbacks with multiple targets, and are also called publishers or events in similar systems. Signals are connected to some set of slots, which are callback receivers (also called event targets or subscribers), which are called when the signal is "emitted." Package: libboost-system1.54.0 Homepage: http://www.boost.org/libs/system/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Operating system (e.g. diagnostics support) library This package forms part of the Boost C++ Libraries collection. . The Boost System library provides simple, light-weight error_code objects that encapsulate system-specific error code values, yet also provide access to more abstract and portable error conditions via error_condition objects. Because error_code objects can represent errors from sources other than the operating system, including user-defined sources, each error_code and error_condition has an associated error_category. Package: libboost-system1.54-dev Homepage: http://www.boost.org/libs/system/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-system1.54.0 (= ${binary:Version}) Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev, libboost-system1.49-dev, libboost-system1.50-dev, libboost-system1.52-dev, libboost-system1.53-dev Description: Operating system (e.g. diagnostics support) library This package forms part of the Boost C++ Libraries collection. . The Boost System library provides simple, light-weight error_code objects that encapsulate system-specific error code values, yet also provide access to more abstract and portable error conditions via error_condition objects. Because error_code objects can represent errors from sources other than the operating system, including user-defined sources, each error_code and error_condition has an associated error_category. Package: libboost-test1.54.0 Homepage: http://www.boost.org/libs/test/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: components for writing and executing test suites This package forms part of the Boost C++ Libraries collection. The library contains several components. . * Basic execution, error detection, and reporting facility. * Facilities to monitor program execution and produce error reports. * Unit test framework to simplify writing test cases. Package: libboost-test1.54-dev Homepage: http://www.boost.org/libs/test/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-test1.54.0 (= ${binary:Version}) Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev, libboost-test1.49-dev, libboost-test1.50-dev, libboost-test1.52-dev, libboost-test1.53-dev Description: components for writing and executing test suites This package forms part of the Boost C++ Libraries collection. The library contains several components. . * Basic execution, error detection, and reporting facility. * Facilities to monitor program execution and produce error reports. * Unit test framework to simplify writing test cases. Package: libboost-thread1.54.0 Homepage: http://www.boost.org/libs/thread/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: portable C++ multi-threading This package forms part of the Boost C++ Libraries collection. . Toolkit for writing C++ programs that execute as multiple, asynchronous, independent, threads-of-execution. Each thread has its own machine state including program instruction counter and registers. Package: libboost-thread1.54-dev Homepage: http://www.boost.org/libs/thread/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-atomic1.54-dev (= ${binary:Version}), libboost-chrono1.54-dev (= ${binary:Version}), libboost-date-time1.54-dev (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}), libboost-thread1.54.0 (= ${binary:Version}) Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev, libboost-thread1.49-dev, libboost-thread1.50-dev, libboost-thread1.52-dev, libboost-thread1.53-dev Description: portable C++ multi-threading This package forms part of the Boost C++ Libraries collection. . Toolkit for writing C++ programs that execute as multiple, asynchronous, independent, threads-of-execution. Each thread has its own machine state including program instruction counter and registers. Package: libboost-timer1.54.0 Homepage: http://www.boost.org/libs/timer/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ wall clock and CPU process timers This package forms part of the Boost C++ Libraries collection. . Portable C++ timer classes that answer the question "How long does my C++ code take to run?" with as little as one #include and one additional line of code. . Class cpu_timer measures wall clock time, user CPU process time, and system CPU process time. Class auto_cpu_timer is a refinement of cpu_timer that automatically reports the elapsed times when an auto_cpu_timer object is destroyed. Package: libboost-timer1.54-dev Homepage: http://www.boost.org/libs/timer/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-timer1.54.0 (= ${binary:Version}) Conflicts: libboost-timer1.42-dev, libboost-timer1.46-dev, libboost-timer1.48-dev, libboost-timer1.49-dev, libboost-timer1.50-dev, libboost-timer1.52-dev, libboost-timer1.53-dev Description: C++ wall clock and CPU process timers This package forms part of the Boost C++ Libraries collection. . Portable C++ timer classes that answer the question "How long does my C++ code take to run?" with as little as one #include and one additional line of code. . Class cpu_timer measures wall clock time, user CPU process time, and system CPU process time. Class auto_cpu_timer is a refinement of cpu_timer that automatically reports the elapsed times when an auto_cpu_timer object is destroyed. Package: libboost-wave1.54.0 Homepage: http://www.boost.org/libs/wave/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL). Package: libboost-wave1.54-dev Homepage: http://www.boost.org/libs/wave/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-wave1.54.0 (= ${binary:Version}), libboost-filesystem1.54-dev (= ${binary:Version}) Conflicts: libboost-wave1.42-dev, libboost-wave1.46-dev, libboost-wave1.48-dev, libboost-wave1.49-dev, libboost-wave1.50-dev, libboost-wave1.52-dev, libboost-wave1.53-dev Description: C99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL). debian/documentation-files0000664000000000000000000224103412164335133013073 0ustar LICENSE_1_0.txt boost.css boost.png doc/html/Assignable.html doc/html/BOOST_ACCUMULATORS_DEFINE_EXTRACTOR.html doc/html/BOOST_ACCUMULATORS_GCC_VERSION.html doc/html/BOOST_ACCUMULATORS_IGNORE_GLOBAL.html doc/html/BOOST_ACCUMULATORS_MAX_ARGS.html doc/html/BOOST_ACCUMULATORS_MAX_FEATURES.html doc/html/BOOST_ACCUMULATORS_PROTO_DISABLE_IF_IS_CONST.html doc/html/BOOST_COPYABLE_AND_MOVABLE.html doc/html/BOOST_COPY_ASSIGN_REF.html doc/html/BOOST_FWD_REF.html doc/html/BOOST_INTERPROCESS_MAP_NOSYNC.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_BRANCHLESS_TO_OFF.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_BRANCHLESS_TO_OFF_FROM_OTHER.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_BRANCHLESS_TO_PTR.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_INLINE_TO_OFF.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_INLINE_TO_OFF_FROM_OTHER.html doc/html/BOOST_INTERPROCESS_OFFSET_PTR_INLINE_TO_PTR.html doc/html/BOOST_IS_MPI_DATATYPE.html doc/html/BOOST_MOVABLE_BUT_NOT_COPYABLE.html doc/html/BOOST_MOVE_IMPL_NO_COPY_CTOR_OR_ASSIGN.html doc/html/BOOST_MPI_CALLING_CONVENTION.html doc/html/BOOST_MPI_CHECK_RESULT.html doc/html/BOOST_MPI_DECL.html doc/html/BOOST_MPI_HAS_MEMORY_ALLOCATION.html doc/html/BOOST_MPI_HAS_NOARG_INITIALIZATION.html doc/html/BOOST_PARAMETER_NESTED_KEYWORD.html doc/html/BOOST_PROGRAM_OPTIONS_DECL.html doc/html/BOOST_PROGRAM_OPTIONS_VERSION.html doc/html/BOOST_PROTO_ASSERT_MATCHES.html doc/html/BOOST_PROTO_ASSERT_MATCHES_NOT.html doc/html/BOOST_PROTO_AUTO.html doc/html/BOOST_PROTO_A_const.html doc/html/BOOST_PROTO_A_const_ref.html doc/html/BOOST_PROTO_A_const_ref_a.html doc/html/BOOST_PROTO_A_idp64658576.html doc/html/BOOST_PROTO_A_ref.html doc/html/BOOST_PROTO_A_ref_a.html doc/html/BOOST_PROTO_BASIC_EXTENDS.html doc/html/BOOST_PROTO_DEFINE_ENV_VAR.html doc/html/BOOST_PROTO_DEFINE_OPERATORS.html doc/html/BOOST_PROTO_EXTENDS.html doc/html/BOOST_PROTO_EXTENDS_ASSIGN.html doc/html/BOOST_PROTO_EXTENDS_FUNCTION.html doc/html/BOOST_PROTO_EXTENDS_SUBSCRIPT.html doc/html/BOOST_PROTO_EXTENDS_USING_ASSIGN.html doc/html/BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT.html doc/html/BOOST_PROTO_FUSION_V2.html doc/html/BOOST_PROTO_LOCAL_ITERATE.html doc/html/BOOST_PROTO_LOCAL_LIMITS.html doc/html/BOOST_PROTO_LOCAL_MACRO.html doc/html/BOOST_PROTO_LOCAL_a.html doc/html/BOOST_PROTO_MAX_ARITY.html doc/html/BOOST_PROTO_MAX_FUNCTION_CALL_ARITY.html doc/html/BOOST_PROTO_MAX_LOGICAL_ARITY.html doc/html/BOOST_PROTO_REPEAT.html doc/html/BOOST_PROTO_REPEAT_EX.html doc/html/BOOST_PROTO_REPEAT_FROM_TO.html doc/html/BOOST_PROTO_REPEAT_FROM_TO_EX.html doc/html/BOOST_PROTO_a_idp64686128.html doc/html/BOOST_PROTO_ref_a.html doc/html/BOOST_PROTO_typename_A.html doc/html/BOOST_RANDOM_MT_DEFINE_CONSTANT.html doc/html/BOOST_RV_REF.html doc/html/BOOST_RV_REF_BEG.html doc/html/BOOST_RV_REF_END.html doc/html/BOOST_SERIALIZ_idp12820608.html doc/html/BOOST_SERIALIZ_idp21465040.html doc/html/BOOST_TRIBOOL_THIRD_STATE.html doc/html/BOOST_TYPE_ERASURE_FREE.html doc/html/BOOST_TYPE_ERASURE_MAX_ARITY.html doc/html/BOOST_TYPE_ERASURE_MAX_FUNCTIONS.html doc/html/BOOST_TYPE_ERASURE_MAX_TUPLE_SIZE.html doc/html/BOOST_TYPE_ERASURE_MEMBER.html doc/html/BOOST_UNITS_CHECK_HOMOGENEOUS_UNITS.html doc/html/BOOST_UNITS_DEFAULT_CONVERSION.html doc/html/BOOST_UNITS_DEFAULT_CONVERSION_TEMPLATE.html doc/html/BOOST_UNITS_DEFINE_CONVERSION_FACTOR.html doc/html/BOOST_UNITS_DEFINE_CONVERSION_FACTOR_TEMPLATE.html doc/html/BOOST_UNITS_DEFINE_CONVERSION_OFFSET.html doc/html/BOOST_UNITS_METRIC_PREFIX_idp149724192.html doc/html/BOOST_UNITS_NO_COMPILER_CHECK.html doc/html/BOOST_UNITS_REQUIRE_LAYOUT_COMPATIBILITY.html doc/html/BOOST_UNITS_STATIC_CONSTANT.html doc/html/BOOST_VARAINT_MAX_MULTIVIZITOR_PARAMS.html doc/html/BOOST_VARIANT_ENUM_PARAMS.html doc/html/BOOST_VARIANT_ENUM_SHIFTED_PARAMS.html doc/html/BOOST_VARIANT_LIMIT_TYPES.html doc/html/BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT.html doc/html/BOOST_VARIANT_NO_REFERENCE_SUPPORT.html doc/html/BOOST_VARIANT_NO_TYPE_SEQUENCE_SUPPORT.html doc/html/BOOST_XPRESSIVE_HAS_MS_STACK_GUARD.html doc/html/BOOST_XPR_ENSURE_.html doc/html/BidirectionalIterator.html doc/html/CallableTransform.html doc/html/CopyConstructible.html doc/html/DefaultConstructible.html doc/html/Domain.html doc/html/EqualityComparable.html doc/html/Expr.html doc/html/ForwardIterator.html doc/html/InputIterator.html doc/html/LessThanComparable.html doc/html/MPICH_IGNORE_CXX_SEEK.html doc/html/ObjectTransform.html doc/html/OutputIterator.html doc/html/PolymorphicFunctionObject.html doc/html/PrimitiveTransform.html doc/html/RandomAccessIterator.html doc/html/SignedInteger.html doc/html/Transform.html doc/html/about.html doc/html/accumulators.html doc/html/accumulators/acknowledgements.html doc/html/accumulators/reference.html doc/html/accumulators/user_s_guide.html doc/html/allocator_traits.html doc/html/allocator_traits/portable_rebind_alloc.html doc/html/any.html doc/html/any/reference.html doc/html/any/s02.html doc/html/any/s04.html doc/html/array.html doc/html/array/ack.html doc/html/array/more/info.html doc/html/array/rationale.html doc/html/array/reference.html doc/html/atomic.html doc/html/atomic/interface.html doc/html/atomic/limitations.html doc/html/atomic/porting.html doc/html/atomic/thread_coordination.html doc/html/atomic/usage_examples.html doc/html/bbv2.html doc/html/bbv2/extender.html doc/html/bbv2/faq.html doc/html/bbv2/installation.html doc/html/bbv2/overview.html doc/html/bbv2/reference.html doc/html/bbv2/tasks.html doc/html/bbv2/tutorial.html doc/html/boost/CV/constrained_value.html doc/html/boost/CV/simple_exception_policy.html doc/html/boost/accumulators/absolute.html doc/html/boost/accumulators/accumulator.html doc/html/boost/accumulators/accumulator_base.html doc/html/boost/accumulators/accumulator_concept.html doc/html/boost/accumulators/accumulator_set.html doc/html/boost/accumulators/as_feature.html doc/html/boost/accumulators/as_feature_tag_idp26437920.html doc/html/boost/accumulators/as_feature_tag_idp26500448.html doc/html/boost/accumulators/as_feature_tag_idp26513328.html doc/html/boost/accumulators/as_feature_tag_idp26514320.html doc/html/boost/accumulators/as_feature_tag_idp26531584.html doc/html/boost/accumulators/as_feature_tag_idp26532608.html doc/html/boost/accumulators/as_feature_tag_idp26556272.html doc/html/boost/accumulators/as_feature_tag_idp26557216.html doc/html/boost/accumulators/as_feature_tag_idp26558192.html doc/html/boost/accumulators/as_feature_tag_idp26559168.html doc/html/boost/accumulators/as_feature_tag_idp26560144.html doc/html/boost/accumulators/as_feature_tag_idp26561936.html doc/html/boost/accumulators/as_feature_tag_idp26582976.html doc/html/boost/accumulators/as_feature_tag_idp26583952.html doc/html/boost/accumulators/as_feature_tag_idp26584928.html doc/html/boost/accumulators/as_feature_tag_idp26615616.html doc/html/boost/accumulators/as_feature_tag_idp26616976.html doc/html/boost/accumulators/as_feature_tag_idp26677968.html doc/html/boost/accumulators/as_feature_tag_idp26679328.html doc/html/boost/accumulators/as_feature_tag_idp26680688.html doc/html/boost/accumulators/as_feature_tag_idp26682048.html doc/html/boost/accumulators/as_feature_tag_idp26691808.html doc/html/boost/accumulators/as_feature_tag_idp26693168.html doc/html/boost/accumulators/as_feature_tag_idp26694528.html doc/html/boost/accumulators/as_feature_tag_idp26695888.html doc/html/boost/accumulators/as_feature_tag_idp26735152.html doc/html/boost/accumulators/as_feature_tag_idp26736096.html doc/html/boost/accumulators/as_feature_tag_idp26773392.html doc/html/boost/accumulators/as_feature_tag_idp26775632.html doc/html/boost/accumulators/as_feature_tag_idp26794880.html doc/html/boost/accumulators/as_feature_tag_idp26795856.html doc/html/boost/accumulators/as_feature_tag_idp26819232.html doc/html/boost/accumulators/as_feature_tag_idp26820208.html doc/html/boost/accumulators/as_feature_tag_idp26821184.html doc/html/boost/accumulators/as_feature_tag_idp26822976.html doc/html/boost/accumulators/as_feature_tag_idp26827728.html doc/html/boost/accumulators/as_feature_tag_idp26828720.html doc/html/boost/accumulators/as_feature_tag_idp26829728.html doc/html/boost/accumulators/as_feature_tag_idp26844448.html doc/html/boost/accumulators/as_feature_tag_idp26845840.html doc/html/boost/accumulators/as_feature_tag_idp26856960.html doc/html/boost/accumulators/as_feature_tag_idp26867824.html doc/html/boost/accumulators/as_feature_tag_idp26870064.html doc/html/boost/accumulators/as_feature_tag_idp26876608.html doc/html/boost/accumulators/as_feature_tag_idp26877584.html doc/html/boost/accumulators/as_weighted_fe_idp26439472.html doc/html/boost/accumulators/as_weighted_fe_idp26480352.html doc/html/boost/accumulators/as_weighted_fe_idp26494320.html doc/html/boost/accumulators/as_weighted_fe_idp26502000.html doc/html/boost/accumulators/as_weighted_fe_idp26507504.html doc/html/boost/accumulators/as_weighted_fe_idp26535424.html doc/html/boost/accumulators/as_weighted_fe_idp26537344.html doc/html/boost/accumulators/as_weighted_fe_idp26549616.html doc/html/boost/accumulators/as_weighted_fe_idp26567088.html doc/html/boost/accumulators/as_weighted_fe_idp26568928.html doc/html/boost/accumulators/as_weighted_fe_idp26570800.html doc/html/boost/accumulators/as_weighted_fe_idp26574208.html doc/html/boost/accumulators/as_weighted_fe_idp26587728.html doc/html/boost/accumulators/as_weighted_fe_idp26589568.html doc/html/boost/accumulators/as_weighted_fe_idp26591472.html doc/html/boost/accumulators/as_weighted_fe_idp26600864.html doc/html/boost/accumulators/as_weighted_fe_idp26605040.html doc/html/boost/accumulators/as_weighted_fe_idp26610032.html doc/html/boost/accumulators/as_weighted_fe_idp26620720.html doc/html/boost/accumulators/as_weighted_fe_idp26623280.html doc/html/boost/accumulators/as_weighted_fe_idp26685744.html doc/html/boost/accumulators/as_weighted_fe_idp26688272.html doc/html/boost/accumulators/as_weighted_fe_idp26699600.html doc/html/boost/accumulators/as_weighted_fe_idp26702128.html doc/html/boost/accumulators/as_weighted_fe_idp26721488.html doc/html/boost/accumulators/as_weighted_fe_idp26726528.html doc/html/boost/accumulators/as_weighted_fe_idp26737072.html doc/html/boost/accumulators/as_weighted_fe_idp26755184.html doc/html/boost/accumulators/as_weighted_fe_idp26762080.html doc/html/boost/accumulators/as_weighted_fe_idp26781904.html doc/html/boost/accumulators/as_weighted_fe_idp26786208.html doc/html/boost/accumulators/as_weighted_fe_idp26797696.html doc/html/boost/accumulators/as_weighted_fe_idp26799552.html doc/html/boost/accumulators/as_weighted_feature.html doc/html/boost/accumulators/covariate1.html doc/html/boost/accumulators/covariate2.html doc/html/boost/accumulators/depends_on.html doc/html/boost/accumulators/dont_care.html doc/html/boost/accumulators/droppable_accumulator.html doc/html/boost/accumulators/droppable_accumulator_base.html doc/html/boost/accumulators/extract/coherent_tail_mean.html doc/html/boost/accumulators/extract/count.html doc/html/boost/accumulators/extract/covariance.html doc/html/boost/accumulators/extract/density.html doc/html/boost/accumulators/extract/extended_p_squ_idp26540240.html doc/html/boost/accumulators/extract/extended_p_square.html doc/html/boost/accumulators/extract/extended_p_square_quantile.html doc/html/boost/accumulators/extract/kurtosis.html doc/html/boost/accumulators/extract/lazy_variance.html doc/html/boost/accumulators/extract/lazy_weighted_variance.html doc/html/boost/accumulators/extract/max.html doc/html/boost/accumulators/extract/mean.html doc/html/boost/accumulators/extract/mean_of_weights.html doc/html/boost/accumulators/extract/median.html doc/html/boost/accumulators/extract/min.html doc/html/boost/accumulators/extract/non_coherent_tail_mean.html doc/html/boost/accumulators/extract/p_square_cumul_idp26607168.html doc/html/boost/accumulators/extract/p_square_quant_idp26612832.html doc/html/boost/accumulators/extract/p_square_quantile.html doc/html/boost/accumulators/extract/peaks_over_threshold.html doc/html/boost/accumulators/extract/quantile.html doc/html/boost/accumulators/extract/relative_tail__idp26791456.html doc/html/boost/accumulators/extract/relative_weigh_idp26873248.html doc/html/boost/accumulators/extract/rolling_count.html doc/html/boost/accumulators/extract/rolling_mean.html doc/html/boost/accumulators/extract/rolling_sum.html doc/html/boost/accumulators/extract/rolling_window.html doc/html/boost/accumulators/extract/rolling_window_plus1.html doc/html/boost/accumulators/extract/skewness.html doc/html/boost/accumulators/extract/sum.html doc/html/boost/accumulators/extract/sum_kahan.html doc/html/boost/accumulators/extract/sum_of_variates.html doc/html/boost/accumulators/extract/sum_of_variates_kahan.html doc/html/boost/accumulators/extract/sum_of_weights.html doc/html/boost/accumulators/extract/sum_of_weights_kahan.html doc/html/boost/accumulators/extract/tail.html doc/html/boost/accumulators/extract/tail_mean.html doc/html/boost/accumulators/extract/tail_quantile.html doc/html/boost/accumulators/extract/tail_variate.html doc/html/boost/accumulators/extract/tail_variate_means.html doc/html/boost/accumulators/extract/tail_weights.html doc/html/boost/accumulators/extract/variance.html doc/html/boost/accumulators/extract/weighted_density.html doc/html/boost/accumulators/extract/weighted_exten_idp26541008.html doc/html/boost/accumulators/extract/weighted_exten_idp26541776.html doc/html/boost/accumulators/extract/weighted_extended_p_square.html doc/html/boost/accumulators/extract/weighted_kurtosis.html doc/html/boost/accumulators/extract/weighted_mean.html doc/html/boost/accumulators/extract/weighted_median.html doc/html/boost/accumulators/extract/weighted_p_squ_idp26835696.html doc/html/boost/accumulators/extract/weighted_p_squ_idp26840064.html doc/html/boost/accumulators/extract/weighted_p_square_quantile.html doc/html/boost/accumulators/extract/weighted_peaks_idp26847424.html doc/html/boost/accumulators/extract/weighted_skewness.html doc/html/boost/accumulators/extract/weighted_sum.html doc/html/boost/accumulators/extract/weighted_sum_kahan.html doc/html/boost/accumulators/extract/weighted_sum_o_idp26860480.html doc/html/boost/accumulators/extract/weighted_sum_of_variates.html doc/html/boost/accumulators/extract/weighted_tail__idp26872496.html doc/html/boost/accumulators/extract/weighted_variance.html doc/html/boost/accumulators/extract/with_density_median.html doc/html/boost/accumulators/extract/with_p_square__idp26595104.html doc/html/boost/accumulators/extractor.html doc/html/boost/accumulators/feature_of.html doc/html/boost/accumulators/feature_of_tag_idp26441056.html doc/html/boost/accumulators/feature_of_tag_idp26445424.html doc/html/boost/accumulators/feature_of_tag_idp26450512.html doc/html/boost/accumulators/feature_of_tag_idp26456704.html doc/html/boost/accumulators/feature_of_tag_idp26478784.html doc/html/boost/accumulators/feature_of_tag_idp26482128.html doc/html/boost/accumulators/feature_of_tag_idp26495296.html doc/html/boost/accumulators/feature_of_tag_idp26508496.html doc/html/boost/accumulators/feature_of_tag_idp26533648.html doc/html/boost/accumulators/feature_of_tag_idp26534528.html doc/html/boost/accumulators/feature_of_tag_idp26536432.html doc/html/boost/accumulators/feature_of_tag_idp26538384.html doc/html/boost/accumulators/feature_of_tag_idp26550592.html doc/html/boost/accumulators/feature_of_tag_idp26563728.html doc/html/boost/accumulators/feature_of_tag_idp26564592.html doc/html/boost/accumulators/feature_of_tag_idp26565472.html doc/html/boost/accumulators/feature_of_tag_idp26568064.html doc/html/boost/accumulators/feature_of_tag_idp26569920.html doc/html/boost/accumulators/feature_of_tag_idp26572592.html doc/html/boost/accumulators/feature_of_tag_idp26576016.html doc/html/boost/accumulators/feature_of_tag_idp26585968.html doc/html/boost/accumulators/feature_of_tag_idp26586832.html doc/html/boost/accumulators/feature_of_tag_idp26588704.html doc/html/boost/accumulators/feature_of_tag_idp26590576.html doc/html/boost/accumulators/feature_of_tag_idp26592528.html doc/html/boost/accumulators/feature_of_tag_idp26602352.html doc/html/boost/accumulators/feature_of_tag_idp26606064.html doc/html/boost/accumulators/feature_of_tag_idp26611024.html doc/html/boost/accumulators/feature_of_tag_idp26618352.html doc/html/boost/accumulators/feature_of_tag_idp26619536.html doc/html/boost/accumulators/feature_of_tag_idp26622096.html doc/html/boost/accumulators/feature_of_tag_idp26624656.html doc/html/boost/accumulators/feature_of_tag_idp26683424.html doc/html/boost/accumulators/feature_of_tag_idp26684576.html doc/html/boost/accumulators/feature_of_tag_idp26687088.html doc/html/boost/accumulators/feature_of_tag_idp26689632.html doc/html/boost/accumulators/feature_of_tag_idp26697280.html doc/html/boost/accumulators/feature_of_tag_idp26698432.html doc/html/boost/accumulators/feature_of_tag_idp26700944.html doc/html/boost/accumulators/feature_of_tag_idp26703504.html doc/html/boost/accumulators/feature_of_tag_idp26722464.html doc/html/boost/accumulators/feature_of_tag_idp26727504.html doc/html/boost/accumulators/feature_of_tag_idp26728368.html doc/html/boost/accumulators/feature_of_tag_idp26738048.html doc/html/boost/accumulators/feature_of_tag_idp26738912.html doc/html/boost/accumulators/feature_of_tag_idp26739760.html doc/html/boost/accumulators/feature_of_tag_idp26740640.html doc/html/boost/accumulators/feature_of_tag_idp26749280.html doc/html/boost/accumulators/feature_of_tag_idp26752832.html doc/html/boost/accumulators/feature_of_tag_idp26754000.html doc/html/boost/accumulators/feature_of_tag_idp26756560.html doc/html/boost/accumulators/feature_of_tag_idp26760928.html doc/html/boost/accumulators/feature_of_tag_idp26763424.html doc/html/boost/accumulators/feature_of_tag_idp26766496.html doc/html/boost/accumulators/feature_of_tag_idp26768480.html doc/html/boost/accumulators/feature_of_tag_idp26777872.html doc/html/boost/accumulators/feature_of_tag_idp26779888.html doc/html/boost/accumulators/feature_of_tag_idp26784144.html doc/html/boost/accumulators/feature_of_tag_idp26788448.html doc/html/boost/accumulators/feature_of_tag_idp26796816.html doc/html/boost/accumulators/feature_of_tag_idp26798672.html doc/html/boost/accumulators/feature_of_tag_idp26800544.html doc/html/boost/accumulators/feature_of_tag_idp26851664.html doc/html/boost/accumulators/feature_of_tag_idp26857936.html doc/html/boost/accumulators/features.html doc/html/boost/accumulators/for_median.html doc/html/boost/accumulators/immediate.html doc/html/boost/accumulators/impl/coherent_tail_mean_impl.html doc/html/boost/accumulators/impl/count_impl.html doc/html/boost/accumulators/impl/covariance_impl.html doc/html/boost/accumulators/impl/density_impl.html doc/html/boost/accumulators/impl/error_of_mean_impl.html doc/html/boost/accumulators/impl/extended_p_squ_idp26927216.html doc/html/boost/accumulators/impl/extended_p_square_impl.html doc/html/boost/accumulators/impl/immediate_mean_impl.html doc/html/boost/accumulators/impl/immediate_weig_idp27205040.html doc/html/boost/accumulators/impl/kurtosis_impl.html doc/html/boost/accumulators/impl/lazy_variance_impl.html doc/html/boost/accumulators/impl/lazy_weighted__idp27344656.html doc/html/boost/accumulators/impl/max_impl.html doc/html/boost/accumulators/impl/mean_impl.html doc/html/boost/accumulators/impl/median_impl.html doc/html/boost/accumulators/impl/min_impl.html doc/html/boost/accumulators/impl/moment_impl.html doc/html/boost/accumulators/impl/non_coherent_t_idp27066688.html doc/html/boost/accumulators/impl/non_coherent_w_idp27290224.html doc/html/boost/accumulators/impl/p_square_cumul_idp27008800.html doc/html/boost/accumulators/impl/p_square_quantile_impl.html doc/html/boost/accumulators/impl/peaks_over_thr_idp26984832.html doc/html/boost/accumulators/impl/peaks_over_threshold_impl.html doc/html/boost/accumulators/impl/pot_quantile_impl.html doc/html/boost/accumulators/impl/pot_tail_mean_impl.html doc/html/boost/accumulators/impl/reference_accumulator_impl.html doc/html/boost/accumulators/impl/rolling_count_impl.html doc/html/boost/accumulators/impl/rolling_mean_impl.html doc/html/boost/accumulators/impl/rolling_sum_impl.html doc/html/boost/accumulators/impl/rolling_window_impl.html doc/html/boost/accumulators/impl/rolling_window_plus1_impl.html doc/html/boost/accumulators/impl/skewness_impl.html doc/html/boost/accumulators/impl/sum_impl.html doc/html/boost/accumulators/impl/sum_kahan_impl.html doc/html/boost/accumulators/impl/tail_impl.html doc/html/boost/accumulators/impl/tail_quantile_impl.html doc/html/boost/accumulators/impl/tail_variate_impl.html doc/html/boost/accumulators/impl/tail_variate_means_impl.html doc/html/boost/accumulators/impl/value_accumulator_impl.html doc/html/boost/accumulators/impl/variance_impl.html doc/html/boost/accumulators/impl/weighted_covariance_impl.html doc/html/boost/accumulators/impl/weighted_density_impl.html doc/html/boost/accumulators/impl/weighted_exten_idp27221312.html doc/html/boost/accumulators/impl/weighted_kurtosis_impl.html doc/html/boost/accumulators/impl/weighted_mean_impl.html doc/html/boost/accumulators/impl/weighted_median_impl.html doc/html/boost/accumulators/impl/weighted_moment_impl.html doc/html/boost/accumulators/impl/weighted_p_squ_idp27245808.html doc/html/boost/accumulators/impl/weighted_p_squ_idp27254528.html doc/html/boost/accumulators/impl/weighted_peaks_idp27209536.html doc/html/boost/accumulators/impl/weighted_peaks_idp27215632.html doc/html/boost/accumulators/impl/weighted_skewness_impl.html doc/html/boost/accumulators/impl/weighted_sum_impl.html doc/html/boost/accumulators/impl/weighted_sum_kahan_impl.html doc/html/boost/accumulators/impl/weighted_tail__idp27308528.html doc/html/boost/accumulators/impl/weighted_tail__idp27324640.html doc/html/boost/accumulators/impl/weighted_variance_impl.html doc/html/boost/accumulators/impl/with_density_median_impl.html doc/html/boost/accumulators/impl/with_density_w_idp27189024.html doc/html/boost/accumulators/impl/with_p_square__idp26962096.html doc/html/boost/accumulators/impl/with_p_square__idp27196064.html doc/html/boost/accumulators/kahan.html doc/html/boost/accumulators/lazy.html doc/html/boost/accumulators/left.html doc/html/boost/accumulators/linear.html doc/html/boost/accumulators/quadratic.html doc/html/boost/accumulators/regular.html doc/html/boost/accumulators/relative.html doc/html/boost/accumulators/right.html doc/html/boost/accumulators/sample.html doc/html/boost/accumulators/stats.html doc/html/boost/accumulators/tag/absolute_tail__idp27411552.html doc/html/boost/accumulators/tag/absolute_weigh_idp27429072.html doc/html/boost/accumulators/tag/abstract_absol_idp26792592.html doc/html/boost/accumulators/tag/abstract_covariance.html doc/html/boost/accumulators/tag/abstract_non_c_idp26759808.html doc/html/boost/accumulators/tag/abstract_peaks_idp26676848.html doc/html/boost/accumulators/tag/abstract_relat_idp26793120.html doc/html/boost/accumulators/tag/abstract_sum_of_variates.html doc/html/boost/accumulators/tag/abstract_tail.html doc/html/boost/accumulators/tag/abstract_tail_variate.html doc/html/boost/accumulators/tag/abstract_tail_weights.html doc/html/boost/accumulators/tag/abstract_weigh_idp26855808.html doc/html/boost/accumulators/tag/accumulator.html doc/html/boost/accumulators/tag/as_droppable.html doc/html/boost/accumulators/tag/as_droppable_d_idp26443472.html doc/html/boost/accumulators/tag/coherent_tail_mean.html doc/html/boost/accumulators/tag/count.html doc/html/boost/accumulators/tag/covariance.html doc/html/boost/accumulators/tag/covariate1.html doc/html/boost/accumulators/tag/covariate2.html doc/html/boost/accumulators/tag/density.html doc/html/boost/accumulators/tag/droppable.html doc/html/boost/accumulators/tag/error_of.html doc/html/boost/accumulators/tag/extended_p_squ_idp26544448.html doc/html/boost/accumulators/tag/extended_p_square.html doc/html/boost/accumulators/tag/extended_p_square_quantile.html doc/html/boost/accumulators/tag/external.html doc/html/boost/accumulators/tag/external_Featu_idp26447792.html doc/html/boost/accumulators/tag/immediate_mean.html doc/html/boost/accumulators/tag/immediate_mean_of_variates.html doc/html/boost/accumulators/tag/immediate_mean_of_weights.html doc/html/boost/accumulators/tag/immediate_weig_idp27417232.html doc/html/boost/accumulators/tag/immediate_weighted_mean.html doc/html/boost/accumulators/tag/kurtosis.html doc/html/boost/accumulators/tag/lazy_variance.html doc/html/boost/accumulators/tag/lazy_weighted_variance.html doc/html/boost/accumulators/tag/left_tail_variate.html doc/html/boost/accumulators/tag/max.html doc/html/boost/accumulators/tag/mean.html doc/html/boost/accumulators/tag/mean_of_variates.html doc/html/boost/accumulators/tag/mean_of_weights.html doc/html/boost/accumulators/tag/median.html doc/html/boost/accumulators/tag/min.html doc/html/boost/accumulators/tag/moment.html doc/html/boost/accumulators/tag/non_coherent_tail_mean.html doc/html/boost/accumulators/tag/non_coherent_w_idp27426944.html doc/html/boost/accumulators/tag/p_square_cumul_idp26608320.html doc/html/boost/accumulators/tag/p_square_quant_idp26614480.html doc/html/boost/accumulators/tag/p_square_quantile.html doc/html/boost/accumulators/tag/peaks_over_threshold.html doc/html/boost/accumulators/tag/peaks_over_threshold_prob.html doc/html/boost/accumulators/tag/pot_quantile.html doc/html/boost/accumulators/tag/pot_quantile_prob.html doc/html/boost/accumulators/tag/pot_tail_mean.html doc/html/boost/accumulators/tag/pot_tail_mean_prob.html doc/html/boost/accumulators/tag/quantile.html doc/html/boost/accumulators/tag/reference.html doc/html/boost/accumulators/tag/reference_tag.html doc/html/boost/accumulators/tag/relative_tail__idp27413120.html doc/html/boost/accumulators/tag/relative_weigh_idp27430672.html doc/html/boost/accumulators/tag/right_tail_variate.html doc/html/boost/accumulators/tag/rolling_count.html doc/html/boost/accumulators/tag/rolling_mean.html doc/html/boost/accumulators/tag/rolling_sum.html doc/html/boost/accumulators/tag/rolling_window.html doc/html/boost/accumulators/tag/rolling_window_plus1.html doc/html/boost/accumulators/tag/sample.html doc/html/boost/accumulators/tag/skewness.html doc/html/boost/accumulators/tag/sum.html doc/html/boost/accumulators/tag/sum_kahan.html doc/html/boost/accumulators/tag/sum_of_variates.html doc/html/boost/accumulators/tag/sum_of_variates_kahan.html doc/html/boost/accumulators/tag/sum_of_weights.html doc/html/boost/accumulators/tag/sum_of_weights_kahan.html doc/html/boost/accumulators/tag/tail.html doc/html/boost/accumulators/tag/tail_mean.html doc/html/boost/accumulators/tag/tail_quantile.html doc/html/boost/accumulators/tag/tail_variate.html doc/html/boost/accumulators/tag/tail_variate_means.html doc/html/boost/accumulators/tag/tail_weights.html doc/html/boost/accumulators/tag/value.html doc/html/boost/accumulators/tag/value_tag.html doc/html/boost/accumulators/tag/variance.html doc/html/boost/accumulators/tag/weight.html doc/html/boost/accumulators/tag/weighted_covariance.html doc/html/boost/accumulators/tag/weighted_density.html doc/html/boost/accumulators/tag/weighted_exten_idp26545968.html doc/html/boost/accumulators/tag/weighted_exten_idp26547488.html doc/html/boost/accumulators/tag/weighted_extended_p_square.html doc/html/boost/accumulators/tag/weighted_kurtosis.html doc/html/boost/accumulators/tag/weighted_mean.html doc/html/boost/accumulators/tag/weighted_mean_of_variates.html doc/html/boost/accumulators/tag/weighted_median.html doc/html/boost/accumulators/tag/weighted_moment.html doc/html/boost/accumulators/tag/weighted_p_squ_idp26836848.html doc/html/boost/accumulators/tag/weighted_p_squ_idp26842512.html doc/html/boost/accumulators/tag/weighted_p_square_quantile.html doc/html/boost/accumulators/tag/weighted_peaks_idp27419536.html doc/html/boost/accumulators/tag/weighted_peaks_idp27420768.html doc/html/boost/accumulators/tag/weighted_pot_quantile.html doc/html/boost/accumulators/tag/weighted_pot_quantile_prob.html doc/html/boost/accumulators/tag/weighted_pot_t_idp27424976.html doc/html/boost/accumulators/tag/weighted_pot_tail_mean.html doc/html/boost/accumulators/tag/weighted_skewness.html doc/html/boost/accumulators/tag/weighted_sum.html doc/html/boost/accumulators/tag/weighted_sum_kahan.html doc/html/boost/accumulators/tag/weighted_sum_o_idp26862128.html doc/html/boost/accumulators/tag/weighted_sum_of_variates.html doc/html/boost/accumulators/tag/weighted_tail__idp27427904.html doc/html/boost/accumulators/tag/weighted_tail_quantile.html doc/html/boost/accumulators/tag/weighted_variance.html doc/html/boost/accumulators/tag/weights.html doc/html/boost/accumulators/tag/with_density_median.html doc/html/boost/accumulators/tag/with_density_w_idp26832576.html doc/html/boost/accumulators/tag/with_p_square__idp26597312.html doc/html/boost/accumulators/tag/with_p_square__idp26833104.html doc/html/boost/accumulators/tail_cache_siz_idp26747584.html doc/html/boost/accumulators/tail_cache_siz_idp26748432.html doc/html/boost/accumulators/tail_cache_size_named_arg.html doc/html/boost/accumulators/unweighted.html doc/html/boost/accumulators/weight.html doc/html/boost/accumulators/weighted.html doc/html/boost/accumulators/weights.html doc/html/boost/accumulators/with_cached_result.html doc/html/boost/accumulators/with_density.html doc/html/boost/accumulators/with_error.html doc/html/boost/accumulators/with_p_square__idp26886448.html doc/html/boost/accumulators/with_p_square_quantile.html doc/html/boost/accumulators/with_threshold_probability.html doc/html/boost/accumulators/with_threshold_value.html doc/html/boost/algorithm/FinderConcept.html doc/html/boost/algorithm/FormatterConcept.html doc/html/boost/algorithm/all.html doc/html/boost/algorithm/const_formatter.html doc/html/boost/algorithm/contains.html doc/html/boost/algorithm/dissect_formatter.html doc/html/boost/algorithm/empty_formatter.html doc/html/boost/algorithm/ends_with.html doc/html/boost/algorithm/equals.html doc/html/boost/algorithm/erase_all.html doc/html/boost/algorithm/erase_all_copy.html doc/html/boost/algorithm/erase_all_regex.html doc/html/boost/algorithm/erase_all_regex_copy.html doc/html/boost/algorithm/erase_first.html doc/html/boost/algorithm/erase_first_copy.html doc/html/boost/algorithm/erase_head.html doc/html/boost/algorithm/erase_head_copy.html doc/html/boost/algorithm/erase_last.html doc/html/boost/algorithm/erase_last_copy.html doc/html/boost/algorithm/erase_nth.html doc/html/boost/algorithm/erase_nth_copy.html doc/html/boost/algorithm/erase_range.html doc/html/boost/algorithm/erase_range_copy.html doc/html/boost/algorithm/erase_regex.html doc/html/boost/algorithm/erase_regex_copy.html doc/html/boost/algorithm/erase_tail.html doc/html/boost/algorithm/erase_tail_copy.html doc/html/boost/algorithm/find.html doc/html/boost/algorithm/find_all.html doc/html/boost/algorithm/find_all_regex.html doc/html/boost/algorithm/find_first.html doc/html/boost/algorithm/find_format.html doc/html/boost/algorithm/find_format_all.html doc/html/boost/algorithm/find_format_all_copy.html doc/html/boost/algorithm/find_format_copy.html doc/html/boost/algorithm/find_head.html doc/html/boost/algorithm/find_iterator.html doc/html/boost/algorithm/find_last.html doc/html/boost/algorithm/find_nth.html doc/html/boost/algorithm/find_regex.html doc/html/boost/algorithm/find_tail.html doc/html/boost/algorithm/find_token.html doc/html/boost/algorithm/first_finder.html doc/html/boost/algorithm/has_const_time_erase.html doc/html/boost/algorithm/has_const_time_insert.html doc/html/boost/algorithm/has_native_replace.html doc/html/boost/algorithm/has_stable_iterators.html doc/html/boost/algorithm/head_finder.html doc/html/boost/algorithm/icontains.html doc/html/boost/algorithm/identity_formatter.html doc/html/boost/algorithm/iends_with.html doc/html/boost/algorithm/iequals.html doc/html/boost/algorithm/ierase_all.html doc/html/boost/algorithm/ierase_all_copy.html doc/html/boost/algorithm/ierase_first.html doc/html/boost/algorithm/ierase_first_copy.html doc/html/boost/algorithm/ierase_last.html doc/html/boost/algorithm/ierase_last_copy.html doc/html/boost/algorithm/ierase_nth.html doc/html/boost/algorithm/ierase_nth_copy.html doc/html/boost/algorithm/ifind_all.html doc/html/boost/algorithm/ifind_first.html doc/html/boost/algorithm/ifind_last.html doc/html/boost/algorithm/ifind_nth.html doc/html/boost/algorithm/ilexicographical_compare.html doc/html/boost/algorithm/ireplace_all.html doc/html/boost/algorithm/ireplace_all_copy.html doc/html/boost/algorithm/ireplace_first.html doc/html/boost/algorithm/ireplace_first_copy.html doc/html/boost/algorithm/ireplace_last.html doc/html/boost/algorithm/ireplace_last_copy.html doc/html/boost/algorithm/ireplace_nth.html doc/html/boost/algorithm/ireplace_nth_copy.html doc/html/boost/algorithm/is_alnum.html doc/html/boost/algorithm/is_alpha.html doc/html/boost/algorithm/is_any_of.html doc/html/boost/algorithm/is_classified.html doc/html/boost/algorithm/is_cntrl.html doc/html/boost/algorithm/is_digit.html doc/html/boost/algorithm/is_equal.html doc/html/boost/algorithm/is_from_range.html doc/html/boost/algorithm/is_graph.html doc/html/boost/algorithm/is_iequal.html doc/html/boost/algorithm/is_iless.html doc/html/boost/algorithm/is_less.html doc/html/boost/algorithm/is_lower.html doc/html/boost/algorithm/is_not_greater.html doc/html/boost/algorithm/is_not_igreater.html doc/html/boost/algorithm/is_print.html doc/html/boost/algorithm/is_punct.html doc/html/boost/algorithm/is_space.html doc/html/boost/algorithm/is_upper.html doc/html/boost/algorithm/is_xdigit.html doc/html/boost/algorithm/istarts_with.html doc/html/boost/algorithm/iter_find.html doc/html/boost/algorithm/iter_split.html doc/html/boost/algorithm/join.html doc/html/boost/algorithm/join_if_idp54860080.html doc/html/boost/algorithm/join_if_idp85737920.html doc/html/boost/algorithm/last_finder.html doc/html/boost/algorithm/lexicographical_compare.html doc/html/boost/algorithm/make_find_iterator.html doc/html/boost/algorithm/make_split_iterator.html doc/html/boost/algorithm/nth_finder.html doc/html/boost/algorithm/operator___idp57938000.html doc/html/boost/algorithm/operator__idp57804672.html doc/html/boost/algorithm/operator_idp87499136.html doc/html/boost/algorithm/range_finder.html doc/html/boost/algorithm/regex_finder.html doc/html/boost/algorithm/regex_formatter.html doc/html/boost/algorithm/replace_all.html doc/html/boost/algorithm/replace_all_copy.html doc/html/boost/algorithm/replace_all_regex.html doc/html/boost/algorithm/replace_all_regex_copy.html doc/html/boost/algorithm/replace_first.html doc/html/boost/algorithm/replace_first_copy.html doc/html/boost/algorithm/replace_head.html doc/html/boost/algorithm/replace_head_copy.html doc/html/boost/algorithm/replace_last.html doc/html/boost/algorithm/replace_last_copy.html doc/html/boost/algorithm/replace_nth.html doc/html/boost/algorithm/replace_nth_copy.html doc/html/boost/algorithm/replace_range.html doc/html/boost/algorithm/replace_range_copy.html doc/html/boost/algorithm/replace_regex.html doc/html/boost/algorithm/replace_regex_copy.html doc/html/boost/algorithm/replace_tail.html doc/html/boost/algorithm/replace_tail_copy.html doc/html/boost/algorithm/split_idp54600576.html doc/html/boost/algorithm/split_iterator.html doc/html/boost/algorithm/split_regex.html doc/html/boost/algorithm/starts_with.html doc/html/boost/algorithm/tail_finder.html doc/html/boost/algorithm/to_lower.html doc/html/boost/algorithm/to_lower_copy.html doc/html/boost/algorithm/to_upper.html doc/html/boost/algorithm/to_upper_copy.html doc/html/boost/algorithm/token_compress_mode_type.html doc/html/boost/algorithm/token_finder.html doc/html/boost/algorithm/trim.html doc/html/boost/algorithm/trim_all.html doc/html/boost/algorithm/trim_all_copy.html doc/html/boost/algorithm/trim_all_copy_if.html doc/html/boost/algorithm/trim_all_if.html doc/html/boost/algorithm/trim_copy.html doc/html/boost/algorithm/trim_copy_if.html doc/html/boost/algorithm/trim_fill.html doc/html/boost/algorithm/trim_fill_copy.html doc/html/boost/algorithm/trim_fill_copy_if.html doc/html/boost/algorithm/trim_fill_if.html doc/html/boost/algorithm/trim_if.html doc/html/boost/algorithm/trim_left.html doc/html/boost/algorithm/trim_left_copy.html doc/html/boost/algorithm/trim_left_copy_if.html doc/html/boost/algorithm/trim_left_if.html doc/html/boost/algorithm/trim_right.html doc/html/boost/algorithm/trim_right_copy.html doc/html/boost/algorithm/trim_right_copy_if.html doc/html/boost/algorithm/trim_right_if.html doc/html/boost/any.html doc/html/boost/any_cast_idp18463424.html doc/html/boost/apply_visitor.html doc/html/boost/apply_visitor_delayed_t.html doc/html/boost/apply_visitor_idp132820992.html doc/html/boost/array.html doc/html/boost/back_move_insert_iterator.html doc/html/boost/back_move_inserter.html doc/html/boost/bad_any_cast.html doc/html/boost/bad_function_call.html doc/html/boost/bad_get.html doc/html/boost/bad_visit.html doc/html/boost/container/allocator_arg.html doc/html/boost/container/allocator_arg_t.html doc/html/boost/container/basic_string.html doc/html/boost/container/constructible__idp17757184.html doc/html/boost/container/constructible__idp17762352.html doc/html/boost/container/deque.html doc/html/boost/container/flat_map.html doc/html/boost/container/flat_multimap.html doc/html/boost/container/flat_multiset.html doc/html/boost/container/flat_set.html doc/html/boost/container/list.html doc/html/boost/container/map.html doc/html/boost/container/multimap.html doc/html/boost/container/multiset.html doc/html/boost/container/operator___idp18121680.html doc/html/boost/container/operator___idp18142944.html doc/html/boost/container/operator___idp18157760.html doc/html/boost/container/operator___idp18162704.html doc/html/boost/container/operator_idp18147904.html doc/html/boost/container/operator_idp18152832.html doc/html/boost/container/ordered_range.html doc/html/boost/container/ordered_range_t.html doc/html/boost/container/ordered_unique_range.html doc/html/boost/container/ordered_unique_range_t.html doc/html/boost/container/scoped_allocator_adaptor.html doc/html/boost/container/scoped_allocator_adaptor/rebind.html doc/html/boost/container/set.html doc/html/boost/container/slist.html doc/html/boost/container/stable_vector.html doc/html/boost/container/static_vector.html doc/html/boost/container/string.html doc/html/boost/container/swap_idp18167648.html doc/html/boost/container/uses_allocator.html doc/html/boost/container/vector.html doc/html/boost/container/wstring.html doc/html/boost/copy_or_move.html doc/html/boost/date_time/acst_dst_trait.html doc/html/boost/date_time/all_date_names_put.html doc/html/boost/date_time/bad_field_count.html doc/html/boost/date_time/base_time.html doc/html/boost/date_time/c_local_adjustor.html doc/html/boost/date_time/c_time.html doc/html/boost/date_time/convert_string_type.html doc/html/boost/date_time/convert_to_lower.html doc/html/boost/date_time/counted_time_rep.html doc/html/boost/date_time/counted_time_system.html doc/html/boost/date_time/data_not_accessible.html doc/html/boost/date_time/date.html doc/html/boost/date_time/date_duration.html doc/html/boost/date_time/date_facet.html doc/html/boost/date_time/date_formatter.html doc/html/boost/date_time/date_generator_formatter.html doc/html/boost/date_time/date_generator_parser.html doc/html/boost/date_time/date_input_facet.html doc/html/boost/date_time/date_itr.html doc/html/boost/date_time/date_itr_base.html doc/html/boost/date_time/date_names_put.html doc/html/boost/date_time/day_calc_dst_rule.html doc/html/boost/date_time/day_clock.html doc/html/boost/date_time/day_functor.html doc/html/boost/date_time/days_before_weekday.html doc/html/boost/date_time/days_until_weekday.html doc/html/boost/date_time/default_zone_names.html doc/html/boost/date_time/dst_adjustment_offsets.html doc/html/boost/date_time/dst_calc_engine.html doc/html/boost/date_time/dst_calculator.html doc/html/boost/date_time/dst_day_calc_rule.html doc/html/boost/date_time/duration_traits_adapted.html doc/html/boost/date_time/duration_traits_long.html doc/html/boost/date_time/dynamic_local__idp19193744.html doc/html/boost/date_time/eu_dst_trait.html doc/html/boost/date_time/find_match.html doc/html/boost/date_time/first_kday_after.html doc/html/boost/date_time/first_kday_before.html doc/html/boost/date_time/first_kday_of_month.html doc/html/boost/date_time/fixed_string_t_idp20946336.html doc/html/boost/date_time/fixed_string_t_idp39585680.html doc/html/boost/date_time/format_date_parser.html doc/html/boost/date_time/from_stream_ty_idp17828096.html doc/html/boost/date_time/from_stream_ty_idp20830432.html doc/html/boost/date_time/from_stream_ty_idp20907504.html doc/html/boost/date_time/from_stream_ty_idp38883008.html doc/html/boost/date_time/gather_month_strings.html doc/html/boost/date_time/gather_weekday_strings.html doc/html/boost/date_time/gregorian_calendar_base.html doc/html/boost/date_time/int_adapter.html doc/html/boost/date_time/iso_extended_format.html doc/html/boost/date_time/iso_format.html doc/html/boost/date_time/iso_format_bas_idp18177568.html doc/html/boost/date_time/iso_format_base.html doc/html/boost/date_time/last_kday_of_month.html doc/html/boost/date_time/local_adjustor.html doc/html/boost/date_time/microsec_clock.html doc/html/boost/date_time/month_formatter.html doc/html/boost/date_time/month_functor.html doc/html/boost/date_time/months_duration.html doc/html/boost/date_time/next_weekday.html doc/html/boost/date_time/nth_kday_of_month.html doc/html/boost/date_time/null_dst_rules.html doc/html/boost/date_time/operator_idp15264960.html doc/html/boost/date_time/ostream_date_formatter.html doc/html/boost/date_time/ostream_month_formatter.html doc/html/boost/date_time/ostream_time_d_idp15165920.html doc/html/boost/date_time/ostream_time_formatter.html doc/html/boost/date_time/ostream_time_p_idp38646736.html doc/html/boost/date_time/ostream_weekday_formatter.html doc/html/boost/date_time/ostream_ymd_formatter.html doc/html/boost/date_time/parse_date.html doc/html/boost/date_time/parse_delimite_idp16553904.html doc/html/boost/date_time/parse_match_result.html doc/html/boost/date_time/partial_date.html doc/html/boost/date_time/period.html doc/html/boost/date_time/period_formatter.html doc/html/boost/date_time/period_parser.html doc/html/boost/date_time/previous_weekday.html doc/html/boost/date_time/second_clock.html doc/html/boost/date_time/simple_format.html doc/html/boost/date_time/simple_format__idp19509840.html doc/html/boost/date_time/special_values_formatter.html doc/html/boost/date_time/special_values_parser.html doc/html/boost/date_time/split_timedate_system.html doc/html/boost/date_time/static_local_time_adjustor.html doc/html/boost/date_time/str_from_delim_idp39719632.html doc/html/boost/date_time/string_parse_tree.html doc/html/boost/date_time/subsecond_duration.html doc/html/boost/date_time/time_duration.html doc/html/boost/date_time/time_facet.html doc/html/boost/date_time/time_formats.html doc/html/boost/date_time/time_from_ftime.html doc/html/boost/date_time/time_input_facet.html doc/html/boost/date_time/time_itr.html doc/html/boost/date_time/time_resolutio_idp13613168.html doc/html/boost/date_time/time_resolutio_idp15077360.html doc/html/boost/date_time/time_resolutio_idp15292320.html doc/html/boost/date_time/time_resolutio_idp39768976.html doc/html/boost/date_time/time_resolution_traits.html doc/html/boost/date_time/time_zone_base.html doc/html/boost/date_time/time_zone_names_base.html doc/html/boost/date_time/tz_db_base.html doc/html/boost/date_time/uk_dst_trait.html doc/html/boost/date_time/us_dst_rules.html doc/html/boost/date_time/us_dst_trait.html doc/html/boost/date_time/utc_adjustment.html doc/html/boost/date_time/var_string_to_int.html doc/html/boost/date_time/week_functor.html doc/html/boost/date_time/weeks_duration.html doc/html/boost/date_time/winapi/FILETIME.html doc/html/boost/date_time/winapi/SYSTEMTIME.html doc/html/boost/date_time/winapi/file_time_to_microseconds.html doc/html/boost/date_time/winapi/lpFileTime.html doc/html/boost/date_time/winapi/lpLocalFileTime.html doc/html/boost/date_time/wrapping_int.html doc/html/boost/date_time/wrapping_int2.html doc/html/boost/date_time/year_based_generator.html doc/html/boost/date_time/year_functor.html doc/html/boost/date_time/year_month_day_base.html doc/html/boost/date_time/years_duration.html doc/html/boost/date_time/ymd_formatter.html doc/html/boost/date_time/ymd_order_spec.html doc/html/boost/enable_move_ut_idp90976400.html doc/html/boost/environment_iterator.html doc/html/boost/eof_iterator.html doc/html/boost/forward.html doc/html/boost/front_move_insert_iterator.html doc/html/boost/front_move_inserter.html doc/html/boost/function.html doc/html/boost/function/sig.html doc/html/boost/functionN.html doc/html/boost/functionN/sig.html doc/html/boost/function_base.html doc/html/boost/function_equal.html doc/html/boost/get_idp132758640.html doc/html/boost/graph_traits_m_idp88214992.html doc/html/boost/gregorian/bad_day_of_month.html doc/html/boost/gregorian/bad_day_of_year.html doc/html/boost/gregorian/bad_month.html doc/html/boost/gregorian/bad_weekday.html doc/html/boost/gregorian/bad_year.html doc/html/boost/gregorian/date.html doc/html/boost/gregorian/date_duration.html doc/html/boost/gregorian/greg_day.html doc/html/boost/gregorian/greg_durations_config.html doc/html/boost/gregorian/greg_facet_config.html doc/html/boost/gregorian/greg_month.html doc/html/boost/gregorian/greg_weekday.html doc/html/boost/gregorian/greg_year.html doc/html/boost/gregorian/gregorian_calendar.html doc/html/boost/gregorian/operator_idp14332080.html doc/html/boost/gregorian/operator_idp14336160.html doc/html/boost/gregorian/operator_idp14339120.html doc/html/boost/gregorian/operator_idp20384448.html doc/html/boost/gregorian/special_value_from_string.html doc/html/boost/gregorian/weeks_duration.html doc/html/boost/gregorian/year_based_generator.html doc/html/boost/has_move_emulation_enabled.html doc/html/boost/has_nothrow_move.html doc/html/boost/has_trivial_constructor.html doc/html/boost/has_trivial_de_idp90972784.html doc/html/boost/has_trivial_destructor.html doc/html/boost/hash.html doc/html/boost/hash_T_idp13340208.html doc/html/boost/hash_bool_idp15326576.html doc/html/boost/hash_char_idp16901376.html doc/html/boost/hash_double_idp13704848.html doc/html/boost/hash_float_idp12605376.html doc/html/boost/hash_int_idp38793456.html doc/html/boost/hash_long_doub_idp13731760.html doc/html/boost/hash_long_idp14735264.html doc/html/boost/hash_long_long_idp13152976.html doc/html/boost/hash_short_idp17043360.html doc/html/boost/hash_signed_ch_idp16965472.html doc/html/boost/hash_std_strin_idp13325792.html doc/html/boost/hash_std_type__idp14932992.html doc/html/boost/hash_std_wstri_idp13329200.html doc/html/boost/hash_unsigned__idp14395456.html doc/html/boost/hash_unsigned__idp14805568.html doc/html/boost/hash_unsigned__idp14954576.html doc/html/boost/hash_unsigned__idp20868288.html doc/html/boost/hash_unsigned__idp41609216.html doc/html/boost/hash_value_idp85528384.html doc/html/boost/hash_wchar_t_idp16614512.html doc/html/boost/heap/MergablePriorityQueue.html doc/html/boost/heap/MutablePriorityQueue.html doc/html/boost/heap/PriorityQueue.html doc/html/boost/heap/allocator.html doc/html/boost/heap/arity.html doc/html/boost/heap/binomial_heap.html doc/html/boost/heap/compare.html doc/html/boost/heap/constant_time_size.html doc/html/boost/heap/d_ary_heap.html doc/html/boost/heap/fibonacci_heap.html doc/html/boost/heap/heap_merge.html doc/html/boost/heap/mutable_.html doc/html/boost/heap/pairing_heap.html doc/html/boost/heap/priority_queue.html doc/html/boost/heap/skew_heap.html doc/html/boost/heap/skew_heap/implementation_defined.html doc/html/boost/heap/stability_counter_type.html doc/html/boost/heap/stable.html doc/html/boost/heap/store_parent_pointer.html doc/html/boost/interprocess/accept_ownership.html doc/html/boost/interprocess/accept_ownership_type.html doc/html/boost/interprocess/adaptive_pool.html doc/html/boost/interprocess/allocator.html doc/html/boost/interprocess/anonymous_shared_memory.html doc/html/boost/interprocess/bad_alloc.html doc/html/boost/interprocess/basic_bufferbuf.html doc/html/boost/interprocess/basic_bufferstream.html doc/html/boost/interprocess/basic_ibufferstream.html doc/html/boost/interprocess/basic_ivectorstream.html doc/html/boost/interprocess/basic_managed__idp21136048.html doc/html/boost/interprocess/basic_managed__idp21144656.html doc/html/boost/interprocess/basic_managed__idp21164448.html doc/html/boost/interprocess/basic_managed__idp21183472.html doc/html/boost/interprocess/basic_managed_heap_memory.html doc/html/boost/interprocess/basic_managed_mapped_file.html doc/html/boost/interprocess/basic_obufferstream.html doc/html/boost/interprocess/basic_ovectorstream.html doc/html/boost/interprocess/basic_vectorbuf.html doc/html/boost/interprocess/basic_vectorstream.html doc/html/boost/interprocess/cached_adaptive_pool.html doc/html/boost/interprocess/cached_node_allocator.html doc/html/boost/interprocess/create_only.html doc/html/boost/interprocess/create_only_t.html doc/html/boost/interprocess/defer_lock.html doc/html/boost/interprocess/defer_lock_type.html doc/html/boost/interprocess/deleter.html doc/html/boost/interprocess/enable_shared_from_this.html doc/html/boost/interprocess/file_lock.html doc/html/boost/interprocess/file_mapping.html doc/html/boost/interprocess/flat_map_index.html doc/html/boost/interprocess/flat_map_index_aux.html doc/html/boost/interprocess/interprocess_condition.html doc/html/boost/interprocess/interprocess_condition_any.html doc/html/boost/interprocess/interprocess_exception.html doc/html/boost/interprocess/interprocess_mutex.html doc/html/boost/interprocess/interprocess_r_idp21762848.html doc/html/boost/interprocess/interprocess_s_idp21785968.html doc/html/boost/interprocess/interprocess_semaphore.html doc/html/boost/interprocess/interprocess_u_idp21801680.html doc/html/boost/interprocess/intrusive_ptr.html doc/html/boost/interprocess/iset_index.html doc/html/boost/interprocess/iunordered_set_index.html doc/html/boost/interprocess/lock_exception.html doc/html/boost/interprocess/make_managed_s_idp21601632.html doc/html/boost/interprocess/make_managed_s_idp21603904.html doc/html/boost/interprocess/make_managed_unique_ptr.html doc/html/boost/interprocess/make_managed_weak_ptr.html doc/html/boost/interprocess/managed_shared_ptr.html doc/html/boost/interprocess/managed_unique_ptr.html doc/html/boost/interprocess/managed_weak_ptr.html doc/html/boost/interprocess/map_index.html doc/html/boost/interprocess/mapped_region.html doc/html/boost/interprocess/message_queue_t.html doc/html/boost/interprocess/mutex_family.html doc/html/boost/interprocess/named_condition.html doc/html/boost/interprocess/named_condition_any.html doc/html/boost/interprocess/named_mutex.html doc/html/boost/interprocess/named_recursive_mutex.html doc/html/boost/interprocess/named_semaphore.html doc/html/boost/interprocess/named_sharable_mutex.html doc/html/boost/interprocess/named_upgradable_mutex.html doc/html/boost/interprocess/node_allocator.html doc/html/boost/interprocess/null_index.html doc/html/boost/interprocess/null_mutex.html doc/html/boost/interprocess/null_mutex_family.html doc/html/boost/interprocess/offset_ptr.html doc/html/boost/interprocess/offset_type_alignment.html doc/html/boost/interprocess/open_copy_on_write.html doc/html/boost/interprocess/open_copy_on_write_t.html doc/html/boost/interprocess/open_only.html doc/html/boost/interprocess/open_only_t.html doc/html/boost/interprocess/open_or_create.html doc/html/boost/interprocess/open_or_create_t.html doc/html/boost/interprocess/open_read_only.html doc/html/boost/interprocess/open_read_only_t.html doc/html/boost/interprocess/open_read_private_t.html doc/html/boost/interprocess/operator___idp10117520.html doc/html/boost/interprocess/operator___idp20501488.html doc/html/boost/interprocess/operator___idp20506416.html doc/html/boost/interprocess/operator___idp20508832.html doc/html/boost/interprocess/operator___idp20512080.html doc/html/boost/interprocess/operator___idp20516192.html doc/html/boost/interprocess/operator___idp20521168.html doc/html/boost/interprocess/operator___idp20524384.html doc/html/boost/interprocess/operator___idp20528448.html doc/html/boost/interprocess/operator___idp20531616.html doc/html/boost/interprocess/operator___idp20535648.html doc/html/boost/interprocess/operator___idp20539760.html doc/html/boost/interprocess/operator___idp20544736.html doc/html/boost/interprocess/operator___idp20548848.html doc/html/boost/interprocess/operator___idp21545520.html doc/html/boost/interprocess/operator___idp21548048.html doc/html/boost/interprocess/operator___idp21550576.html doc/html/boost/interprocess/operator___idp21552912.html doc/html/boost/interprocess/operator___idp21555248.html doc/html/boost/interprocess/operator___idp21557584.html doc/html/boost/interprocess/operator_idp21458560.html doc/html/boost/interprocess/operator_idp21461904.html doc/html/boost/interprocess/operator_idp21559920.html doc/html/boost/interprocess/permissions.html doc/html/boost/interprocess/private_adaptive_pool.html doc/html/boost/interprocess/private_node_allocator.html doc/html/boost/interprocess/rbtree_best_fit.html doc/html/boost/interprocess/remove_file_on_destroy.html doc/html/boost/interprocess/remove_shared__idp21534800.html doc/html/boost/interprocess/scoped_lock.html doc/html/boost/interprocess/scoped_ptr.html doc/html/boost/interprocess/segment_manager.html doc/html/boost/interprocess/segment_manager_base.html doc/html/boost/interprocess/sharable_lock.html doc/html/boost/interprocess/shared_memory_object.html doc/html/boost/interprocess/shared_ptr.html doc/html/boost/interprocess/simple_seq_fit.html doc/html/boost/interprocess/std.html doc/html/boost/interprocess/swap_idp21562176.html doc/html/boost/interprocess/swap_idp21569584.html doc/html/boost/interprocess/to_raw_pointer_idp21566864.html doc/html/boost/interprocess/to_raw_pointer_idp21572192.html doc/html/boost/interprocess/try_to_lock.html doc/html/boost/interprocess/try_to_lock_type.html doc/html/boost/interprocess/unique_ptr.html doc/html/boost/interprocess/unordered_map_index.html doc/html/boost/interprocess/upgradable_lock.html doc/html/boost/interprocess/weak_ptr.html doc/html/boost/interprocess/windows_shared_memory.html doc/html/boost/interprocess/xsi_key.html doc/html/boost/interprocess/xsi_shared_memory.html doc/html/boost/intrusive/any_base_hook.html doc/html/boost/intrusive/any_member_hook.html doc/html/boost/intrusive/any_to_avl_set_hook.html doc/html/boost/intrusive/any_to_bs_set_hook.html doc/html/boost/intrusive/any_to_list_hook.html doc/html/boost/intrusive/any_to_set_hook.html doc/html/boost/intrusive/any_to_slist_hook.html doc/html/boost/intrusive/any_to_unordered_set_hook.html doc/html/boost/intrusive/avl_multiset.html doc/html/boost/intrusive/avl_set.html doc/html/boost/intrusive/avl_set_base_hook.html doc/html/boost/intrusive/avl_set_member_hook.html doc/html/boost/intrusive/avltree.html doc/html/boost/intrusive/avltree_algorithms.html doc/html/boost/intrusive/base_hook.html doc/html/boost/intrusive/bs_set_base_hook.html doc/html/boost/intrusive/bs_set_member_hook.html doc/html/boost/intrusive/bucket_traits.html doc/html/boost/intrusive/cache_begin.html doc/html/boost/intrusive/cache_last.html doc/html/boost/intrusive/circular_list_algorithms.html doc/html/boost/intrusive/circular_slist_algorithms.html doc/html/boost/intrusive/compare.html doc/html/boost/intrusive/compare_hash.html doc/html/boost/intrusive/constant_time_size.html doc/html/boost/intrusive/derivation_value_traits.html doc/html/boost/intrusive/equal.html doc/html/boost/intrusive/floating_point.html doc/html/boost/intrusive/function_hook.html doc/html/boost/intrusive/get_parent_fro_idp26235744.html doc/html/boost/intrusive/get_parent_fro_idp26237904.html doc/html/boost/intrusive/hash.html doc/html/boost/intrusive/hashtable.html doc/html/boost/intrusive/incremental.html doc/html/boost/intrusive/linear.html doc/html/boost/intrusive/linear_slist_algorithms.html doc/html/boost/intrusive/link_mode.html doc/html/boost/intrusive/link_mode_type.html doc/html/boost/intrusive/list.html doc/html/boost/intrusive/list_base_hook.html doc/html/boost/intrusive/list_member_hook.html doc/html/boost/intrusive/make_any_base_hook.html doc/html/boost/intrusive/make_any_member_hook.html doc/html/boost/intrusive/make_avl_multiset.html doc/html/boost/intrusive/make_avl_set.html doc/html/boost/intrusive/make_avl_set_base_hook.html doc/html/boost/intrusive/make_avl_set_member_hook.html doc/html/boost/intrusive/make_avltree.html doc/html/boost/intrusive/make_bs_set_base_hook.html doc/html/boost/intrusive/make_bs_set_member_hook.html doc/html/boost/intrusive/make_hashtable.html doc/html/boost/intrusive/make_list.html doc/html/boost/intrusive/make_list_base_hook.html doc/html/boost/intrusive/make_list_member_hook.html doc/html/boost/intrusive/make_multiset.html doc/html/boost/intrusive/make_rbtree.html doc/html/boost/intrusive/make_set.html doc/html/boost/intrusive/make_set_base_hook.html doc/html/boost/intrusive/make_set_member_hook.html doc/html/boost/intrusive/make_sg_multiset.html doc/html/boost/intrusive/make_sg_set.html doc/html/boost/intrusive/make_sgtree.html doc/html/boost/intrusive/make_slist.html doc/html/boost/intrusive/make_slist_base_hook.html doc/html/boost/intrusive/make_slist_member_hook.html doc/html/boost/intrusive/make_splay_multiset.html doc/html/boost/intrusive/make_splay_set.html doc/html/boost/intrusive/make_splay_set_base_hook.html doc/html/boost/intrusive/make_splay_set_member_hook.html doc/html/boost/intrusive/make_splaytree.html doc/html/boost/intrusive/make_treap_multiset.html doc/html/boost/intrusive/make_treap_set.html doc/html/boost/intrusive/make_trie.html doc/html/boost/intrusive/make_unordered_idp31238912.html doc/html/boost/intrusive/make_unordered_idp31266768.html doc/html/boost/intrusive/make_unordered_multiset.html doc/html/boost/intrusive/make_unordered_set.html doc/html/boost/intrusive/max_pointer_pl_idp26242592.html doc/html/boost/intrusive/max_pointer_plus_bits.html doc/html/boost/intrusive/member_hook.html doc/html/boost/intrusive/member_value_traits.html doc/html/boost/intrusive/multiset.html doc/html/boost/intrusive/optimize_multikey.html doc/html/boost/intrusive/optimize_size.html doc/html/boost/intrusive/pointer_plus_b_idp26246304.html doc/html/boost/intrusive/pointer_plus_bits.html doc/html/boost/intrusive/pointer_traits.html doc/html/boost/intrusive/pointer_traits_idp26268928.html doc/html/boost/intrusive/pointer_traits_idp26268928/rebind_pointer.html doc/html/boost/intrusive/power_2_buckets.html doc/html/boost/intrusive/priority.html doc/html/boost/intrusive/priority_compare.html doc/html/boost/intrusive/rbtree.html doc/html/boost/intrusive/rbtree_algorithms.html doc/html/boost/intrusive/set.html doc/html/boost/intrusive/set_base_hook.html doc/html/boost/intrusive/set_member_hook.html doc/html/boost/intrusive/sg_multiset.html doc/html/boost/intrusive/sg_set.html doc/html/boost/intrusive/sgtree.html doc/html/boost/intrusive/sgtree_algorithms.html doc/html/boost/intrusive/sgtree_algorithms/insert_commit_data.html doc/html/boost/intrusive/size_type.html doc/html/boost/intrusive/slist.html doc/html/boost/intrusive/slist_base_hook.html doc/html/boost/intrusive/slist_member_hook.html doc/html/boost/intrusive/splay_multiset.html doc/html/boost/intrusive/splay_set.html doc/html/boost/intrusive/splay_set_base_hook.html doc/html/boost/intrusive/splay_set_member_hook.html doc/html/boost/intrusive/splaytree.html doc/html/boost/intrusive/splaytree_algorithms.html doc/html/boost/intrusive/store_hash.html doc/html/boost/intrusive/tag.html doc/html/boost/intrusive/treap.html doc/html/boost/intrusive/treap_algorithms.html doc/html/boost/intrusive/treap_multiset.html doc/html/boost/intrusive/treap_set.html doc/html/boost/intrusive/trivial_value_traits.html doc/html/boost/intrusive/unordered_multiset.html doc/html/boost/intrusive/unordered_set.html doc/html/boost/intrusive/unordered_set_base_hook.html doc/html/boost/intrusive/unordered_set_member_hook.html doc/html/boost/intrusive/value_traits.html doc/html/boost/intrusive/void_pointer.html doc/html/boost/is_recursive_wrapper.html doc/html/boost/is_reference_wrapper.html doc/html/boost/lambda/plain_return__idp148752608.html doc/html/boost/lambda/plain_return__idp148755504.html doc/html/boost/lambda/plain_return__idp148758400.html doc/html/boost/lambda/plain_return__idp148761296.html doc/html/boost/lambda/plain_return__idp148764192.html doc/html/boost/lambda/plain_return__idp148766816.html doc/html/boost/lambda/plain_return__idp148769440.html doc/html/boost/lambda/plain_return__idp148772064.html doc/html/boost/lambda/plain_return__idp148774688.html doc/html/boost/lambda/plain_return__idp148778304.html doc/html/boost/lambda/plain_return__idp148781920.html doc/html/boost/lambda/plain_return__idp148785520.html doc/html/boost/lambda/plain_return__idp148789120.html doc/html/boost/lambda/plain_return__idp148791600.html doc/html/boost/lambda/plain_return__idp148794080.html doc/html/boost/lambda/plain_return__idp148797664.html doc/html/boost/lambda/plain_return__idp148800624.html doc/html/boost/lambda/plain_return__idp148803584.html doc/html/boost/lambda/plain_return__idp148807184.html doc/html/boost/lambda/plain_return__idp148810160.html doc/html/boost/lambda/plain_return__idp148813136.html doc/html/boost/lambda/plain_return__idp148816736.html doc/html/boost/lambda/plain_return__idp148820336.html doc/html/boost/lambda/plain_return__idp148822816.html doc/html/boost/lambda/plain_return__idp148825296.html doc/html/boost/lambda/plain_return__idp148828896.html doc/html/boost/lambda/plain_return__idp148832512.html doc/html/boost/lambda/plain_return__idp148836128.html doc/html/boost/lambda/plain_return__idp148839744.html doc/html/boost/lambda/plain_return__idp148841680.html doc/html/boost/lambda/plain_return__idp148843616.html doc/html/boost/lambda/plain_return__idp148845552.html doc/html/boost/lambda/plain_return__idp148847360.html doc/html/boost/lambda/plain_return__idp148850496.html doc/html/boost/last_value.html doc/html/boost/last_value_voi_idp54920944.html doc/html/boost/local_time/ambiguous_result.html doc/html/boost/local_time/bad_adjustment.html doc/html/boost/local_time/bad_offset.html doc/html/boost/local_time/custom_time_zone_base.html doc/html/boost/local_time/dst_not_valid.html doc/html/boost/local_time/first_last_rule_spec.html doc/html/boost/local_time/last_last_rule_spec.html doc/html/boost/local_time/local_date_time_base.html doc/html/boost/local_time/nth_kday_rule_spec.html doc/html/boost/local_time/nth_last_rule_spec.html doc/html/boost/local_time/operator-__idp13370496.html doc/html/boost/local_time/operator-__idp16382400.html doc/html/boost/local_time/operator-_idp16380688.html doc/html/boost/local_time/operator-_idp20297152.html doc/html/boost/local_time/operator___idp13482560.html doc/html/boost/local_time/operator___idp20239904.html doc/html/boost/local_time/operator__idp12506192.html doc/html/boost/local_time/operator__idp21016800.html doc/html/boost/local_time/partial_date_rule_spec.html doc/html/boost/local_time/posix_time_zone_base.html doc/html/boost/local_time/time_label_invalid.html doc/html/boost/local_time/tz_database.html doc/html/boost/lockfree/allocator.html doc/html/boost/lockfree/capacity.html doc/html/boost/lockfree/fixed_sized.html doc/html/boost/lockfree/queue.html doc/html/boost/lockfree/spsc_queue.html doc/html/boost/lockfree/stack.html doc/html/boost/logic/get_default_i_idp132393488.html doc/html/boost/logic/indeterminate.html doc/html/boost/logic/indeterminate_name.html doc/html/boost/logic/operator___idp132217392.html doc/html/boost/logic/operator___idp132226368.html doc/html/boost/logic/operator___idp132253984.html doc/html/boost/logic/operator__idp132264752.html doc/html/boost/logic/operator_idp132240176.html doc/html/boost/logic/operator_idp132396448.html doc/html/boost/logic/operator_idp132401008.html doc/html/boost/logic/operator_idp132404496.html doc/html/boost/logic/tribool.html doc/html/boost/logic/tribool/value_t.html doc/html/boost/make_move_iterator.html doc/html/boost/make_recursiv_idp150385104.html doc/html/boost/make_recursive_variant.html doc/html/boost/make_variant_over.html doc/html/boost/move_backward.html doc/html/boost/move_idp90978832.html doc/html/boost/move_idp91052336.html doc/html/boost/move_insert_iterator.html doc/html/boost/move_inserter.html doc/html/boost/move_iterator.html doc/html/boost/mpi/all_gather.html doc/html/boost/mpi/all_reduce.html doc/html/boost/mpi/all_to_all.html doc/html/boost/mpi/allocator.html doc/html/boost/mpi/allocator/rebind.html doc/html/boost/mpi/allocator_void_idp88652704.html doc/html/boost/mpi/allocator_void_idp88652704/rebind.html doc/html/boost/mpi/any_source.html doc/html/boost/mpi/any_tag.html doc/html/boost/mpi/bitwise_and.html doc/html/boost/mpi/bitwise_or.html doc/html/boost/mpi/bitwise_xor.html doc/html/boost/mpi/broadcast.html doc/html/boost/mpi/comm_create_kind.html doc/html/boost/mpi/communicator.html doc/html/boost/mpi/content.html doc/html/boost/mpi/environment.html doc/html/boost/mpi/exception.html doc/html/boost/mpi/gather.html doc/html/boost/mpi/get_content.html doc/html/boost/mpi/get_idp88181072.html doc/html/boost/mpi/get_idp88182880.html doc/html/boost/mpi/get_mpi_dataty_idp88279552.html doc/html/boost/mpi/graph_communicator.html doc/html/boost/mpi/group.html doc/html/boost/mpi/intercommunicator.html doc/html/boost/mpi/is_commutative.html doc/html/boost/mpi/is_mpi_builtin_datatype.html doc/html/boost/mpi/is_mpi_byte_datatype.html doc/html/boost/mpi/is_mpi_complex_datatype.html doc/html/boost/mpi/is_mpi_datatype.html doc/html/boost/mpi/is_mpi_floatin_idp88283120.html doc/html/boost/mpi/is_mpi_integer_datatype.html doc/html/boost/mpi/is_mpi_logical_datatype.html doc/html/boost/mpi/is_mpi_op.html doc/html/boost/mpi/logical_xor.html doc/html/boost/mpi/maximum.html doc/html/boost/mpi/minimum.html doc/html/boost/mpi/operator-_idp88140880.html doc/html/boost/mpi/operator___idp88148848.html doc/html/boost/mpi/operator___idp88151648.html doc/html/boost/mpi/operator___idp88299408.html doc/html/boost/mpi/operator___idp88300736.html doc/html/boost/mpi/operator___idp88656464.html doc/html/boost/mpi/operator___idp88659552.html doc/html/boost/mpi/operator__idp88137664.html doc/html/boost/mpi/operator_idp88145808.html doc/html/boost/mpi/packed.html doc/html/boost/mpi/packed_iarchive.html doc/html/boost/mpi/packed_oarchive.html doc/html/boost/mpi/packed_skeleton_iarchive.html doc/html/boost/mpi/packed_skeleton_oarchive.html doc/html/boost/mpi/python/register_serialized.html doc/html/boost/mpi/python/register_skele_idp88001936.html doc/html/boost/mpi/reduce.html doc/html/boost/mpi/request.html doc/html/boost/mpi/scan.html doc/html/boost/mpi/scatter.html doc/html/boost/mpi/skeleton.html doc/html/boost/mpi/skeleton_proxy.html doc/html/boost/mpi/status.html doc/html/boost/mpi/test_all.html doc/html/boost/mpi/test_any.html doc/html/boost/mpi/test_some.html doc/html/boost/mpi/timer.html doc/html/boost/mpi/wait_all.html doc/html/boost/mpi/wait_any.html doc/html/boost/mpi/wait_some.html doc/html/boost/numeric/default_.html doc/html/boost/numeric/functional/as_max.html doc/html/boost/numeric/functional/as_max_T__std__idp27646976.html doc/html/boost/numeric/functional/as_max_T__std__idp27677776.html doc/html/boost/numeric/functional/as_max_base.html doc/html/boost/numeric/functional/as_min.html doc/html/boost/numeric/functional/as_min_T__std__idp27644656.html doc/html/boost/numeric/functional/as_min_T__std__idp27675472.html doc/html/boost/numeric/functional/as_min_base.html doc/html/boost/numeric/functional/as_min_base_Ar_idp27588528.html doc/html/boost/numeric/functional/as_one.html doc/html/boost/numeric/functional/as_one_T__std__idp27651616.html doc/html/boost/numeric/functional/as_one_T__std__idp27682384.html doc/html/boost/numeric/functional/as_one_base.html doc/html/boost/numeric/functional/as_zero.html doc/html/boost/numeric/functional/as_zero_T__std_idp27649296.html doc/html/boost/numeric/functional/as_zero_T__std_idp27680080.html doc/html/boost/numeric/functional/as_zero_base.html doc/html/boost/numeric/functional/assign.html doc/html/boost/numeric/functional/assign_base.html doc/html/boost/numeric/functional/average.html doc/html/boost/numeric/functional/average_Left___idp27632848.html doc/html/boost/numeric/functional/average_Left___idp27668192.html doc/html/boost/numeric/functional/average_base.html doc/html/boost/numeric/functional/average_base_L_idp27562496.html doc/html/boost/numeric/functional/complement.html doc/html/boost/numeric/functional/complement_base.html doc/html/boost/numeric/functional/divides.html doc/html/boost/numeric/functional/divides_assign.html doc/html/boost/numeric/functional/divides_assign_base.html doc/html/boost/numeric/functional/divides_base.html doc/html/boost/numeric/functional/equal_to.html doc/html/boost/numeric/functional/equal_to_base.html doc/html/boost/numeric/functional/greater.html doc/html/boost/numeric/functional/greater_base.html doc/html/boost/numeric/functional/greater_equal.html doc/html/boost/numeric/functional/greater_equal_base.html doc/html/boost/numeric/functional/left_ref.html doc/html/boost/numeric/functional/less.html doc/html/boost/numeric/functional/less_base.html doc/html/boost/numeric/functional/less_equal.html doc/html/boost/numeric/functional/less_equal_base.html doc/html/boost/numeric/functional/logical_not.html doc/html/boost/numeric/functional/logical_not_base.html doc/html/boost/numeric/functional/max_assign.html doc/html/boost/numeric/functional/max_assign_Lef_idp27629648.html doc/html/boost/numeric/functional/max_assign_Lef_idp27665024.html doc/html/boost/numeric/functional/max_assign_base.html doc/html/boost/numeric/functional/min_assign.html doc/html/boost/numeric/functional/min_assign_Lef_idp27626448.html doc/html/boost/numeric/functional/min_assign_Lef_idp27661856.html doc/html/boost/numeric/functional/min_assign_base.html doc/html/boost/numeric/functional/minus.html doc/html/boost/numeric/functional/minus_assign.html doc/html/boost/numeric/functional/minus_assign_base.html doc/html/boost/numeric/functional/minus_base.html doc/html/boost/numeric/functional/modulus.html doc/html/boost/numeric/functional/modulus_assign.html doc/html/boost/numeric/functional/modulus_assign_base.html doc/html/boost/numeric/functional/modulus_base.html doc/html/boost/numeric/functional/multiplies.html doc/html/boost/numeric/functional/multiplies_assign.html doc/html/boost/numeric/functional/multiplies_assign_base.html doc/html/boost/numeric/functional/multiplies_base.html doc/html/boost/numeric/functional/multiply_and_p_idp26874784.html doc/html/boost/numeric/functional/not_equal_to.html doc/html/boost/numeric/functional/not_equal_to_base.html doc/html/boost/numeric/functional/outer_product.html doc/html/boost/numeric/functional/outer_product__idp26489616.html doc/html/boost/numeric/functional/outer_product_base.html doc/html/boost/numeric/functional/plus.html doc/html/boost/numeric/functional/plus_assign.html doc/html/boost/numeric/functional/plus_assign_base.html doc/html/boost/numeric/functional/plus_base.html doc/html/boost/numeric/functional/promote.html doc/html/boost/numeric/functional/promote_ToFrom_idp27637888.html doc/html/boost/numeric/functional/promote_ToFrom_idp27672912.html doc/html/boost/numeric/functional/promote_To__Fr_idp27635040.html doc/html/boost/numeric/functional/promote_To__Fr_idp27670096.html doc/html/boost/numeric/functional/promote_base.html doc/html/boost/numeric/functional/promote_base_T_idp27583088.html doc/html/boost/numeric/functional/promote_bool___idp27640480.html doc/html/boost/numeric/functional/promote_bool_c_idp27643056.html doc/html/boost/numeric/functional/tag_std_valarr_idp27625264.html doc/html/boost/numeric/functional/tag_std_vector_idp27660288.html doc/html/boost/numeric/functional/unary_minus.html doc/html/boost/numeric/functional/unary_minus_base.html doc/html/boost/numeric/functional/unary_plus.html doc/html/boost/numeric/functional/unary_plus_base.html doc/html/boost/numeric/one.html doc/html/boost/numeric/one_or_default.html doc/html/boost/numeric/op/as_max.html doc/html/boost/numeric/op/as_min.html doc/html/boost/numeric/op/as_one.html doc/html/boost/numeric/op/as_zero.html doc/html/boost/numeric/op/assign.html doc/html/boost/numeric/op/average.html doc/html/boost/numeric/op/complement.html doc/html/boost/numeric/op/divides.html doc/html/boost/numeric/op/divides_assign.html doc/html/boost/numeric/op/equal_to.html doc/html/boost/numeric/op/greater.html doc/html/boost/numeric/op/greater_equal.html doc/html/boost/numeric/op/less.html doc/html/boost/numeric/op/less_equal.html doc/html/boost/numeric/op/logical_not.html doc/html/boost/numeric/op/max_assign.html doc/html/boost/numeric/op/min_assign.html doc/html/boost/numeric/op/minus.html doc/html/boost/numeric/op/minus_assign.html doc/html/boost/numeric/op/modulus.html doc/html/boost/numeric/op/modulus_assign.html doc/html/boost/numeric/op/multiplies.html doc/html/boost/numeric/op/multiplies_assign.html doc/html/boost/numeric/op/not_equal_to.html doc/html/boost/numeric/op/outer_product.html doc/html/boost/numeric/op/plus.html doc/html/boost/numeric/op/plus_assign.html doc/html/boost/numeric/op/promote.html doc/html/boost/numeric/op/unary_minus.html doc/html/boost/numeric/op/unary_plus.html doc/html/boost/numeric/zero.html doc/html/boost/numeric/zero_or_default.html doc/html/boost/operator_idp152675936.html doc/html/boost/posix_time/duration_from_string.html doc/html/boost/posix_time/from_ftime.html doc/html/boost/posix_time/hours.html doc/html/boost/posix_time/millisec_posix_idp16869280.html doc/html/boost/posix_time/minutes.html doc/html/boost/posix_time/operator-__idp15045712.html doc/html/boost/posix_time/operator-__idp39812720.html doc/html/boost/posix_time/operator-_idp15044000.html doc/html/boost/posix_time/operator-_idp18651504.html doc/html/boost/posix_time/operator___idp12806048.html doc/html/boost/posix_time/operator___idp18280512.html doc/html/boost/posix_time/operator__idp13406688.html doc/html/boost/posix_time/operator__idp15047344.html doc/html/boost/posix_time/operator_idp19440672.html doc/html/boost/posix_time/posix_time_system_config.html doc/html/boost/posix_time/ptime.html doc/html/boost/posix_time/seconds.html doc/html/boost/posix_time/simple_time_rep.html doc/html/boost/posix_time/time_duration.html doc/html/boost/posix_time/wtime_facet.html doc/html/boost/program_options/abstract_variables_map.html doc/html/boost/program_options/ambiguous_option.html doc/html/boost/program_options/basic_command_line_parser.html doc/html/boost/program_options/basic_option.html doc/html/boost/program_options/basic_parsed_o_idp89585552.html doc/html/boost/program_options/basic_parsed_options.html doc/html/boost/program_options/bool_switch.html doc/html/boost/program_options/collect_unrecognized.html doc/html/boost/program_options/collect_unrecognized_mode.html doc/html/boost/program_options/command_line_style/style_t.html doc/html/boost/program_options/duplicate_option_error.html doc/html/boost/program_options/error.html doc/html/boost/program_options/error_with_no_option_name.html doc/html/boost/program_options/error_with_option_name.html doc/html/boost/program_options/ext_parser.html doc/html/boost/program_options/invalid_bool_value.html doc/html/boost/program_options/invalid_comman_idp95111520.html doc/html/boost/program_options/invalid_command_line_style.html doc/html/boost/program_options/invalid_config_file_syntax.html doc/html/boost/program_options/invalid_option_value.html doc/html/boost/program_options/invalid_syntax.html doc/html/boost/program_options/multiple_occurrences.html doc/html/boost/program_options/multiple_values.html doc/html/boost/program_options/notify.html doc/html/boost/program_options/option_description.html doc/html/boost/program_options/options_descri_idp95590832.html doc/html/boost/program_options/options_description.html doc/html/boost/program_options/parse_command_line.html doc/html/boost/program_options/parse_config_f_idp87054352.html doc/html/boost/program_options/parse_config_f_idp95086112.html doc/html/boost/program_options/parse_environm_idp89864544.html doc/html/boost/program_options/parse_environm_idp90850464.html doc/html/boost/program_options/parse_environm_idp90852480.html doc/html/boost/program_options/positional_opt_idp87697168.html doc/html/boost/program_options/reading_file.html doc/html/boost/program_options/required_option.html doc/html/boost/program_options/split_unix.html doc/html/boost/program_options/store_idp90949712.html doc/html/boost/program_options/store_idp90951568.html doc/html/boost/program_options/too_many_posit_idp87132416.html doc/html/boost/program_options/typed_value.html doc/html/boost/program_options/typed_value_base.html doc/html/boost/program_options/unknown_option.html doc/html/boost/program_options/untyped_value.html doc/html/boost/program_options/validation_error.html doc/html/boost/program_options/value_idp87394976.html doc/html/boost/program_options/value_semantic.html doc/html/boost/program_options/value_semantic_idp87442816.html doc/html/boost/program_options/value_semantic_idp87443680.html doc/html/boost/program_options/value_semantic_idp87504656.html doc/html/boost/program_options/variable_value.html doc/html/boost/program_options/variables_map.html doc/html/boost/program_options/wvalue.html doc/html/boost/property_tree/basic_ptree.html doc/html/boost/property_tree/customize_stre_idp87162976.html doc/html/boost/property_tree/customize_stre_idp87196144.html doc/html/boost/property_tree/customize_stre_idp89867456.html doc/html/boost/property_tree/customize_stre_idp94225984.html doc/html/boost/property_tree/customize_stre_idp94229664.html doc/html/boost/property_tree/customize_stream.html doc/html/boost/property_tree/id_translator.html doc/html/boost/property_tree/info_parser/read_info_idp87420304.html doc/html/boost/property_tree/info_parser/read_info_idp87422832.html doc/html/boost/property_tree/info_parser/read_info_idp87425504.html doc/html/boost/property_tree/info_parser/read_info_idp87428352.html doc/html/boost/property_tree/info_parser/write_info_idp87431344.html doc/html/boost/property_tree/info_parser/write_info_idp94298016.html doc/html/boost/property_tree/ini_parser/ini_parser_error.html doc/html/boost/property_tree/ini_parser/read_ini_idp87522992.html doc/html/boost/property_tree/ini_parser/read_ini_idp94202992.html doc/html/boost/property_tree/ini_parser/validate_flags.html doc/html/boost/property_tree/ini_parser/write_ini_idp87209344.html doc/html/boost/property_tree/ini_parser/write_ini_idp95146768.html doc/html/boost/property_tree/iptree.html doc/html/boost/property_tree/json_parser/read_json_idp87216272.html doc/html/boost/property_tree/json_parser/read_json_idp87219632.html doc/html/boost/property_tree/json_parser/write_json_idp89550704.html doc/html/boost/property_tree/json_parser/write_json_idp90837440.html doc/html/boost/property_tree/load_idp86917744.html doc/html/boost/property_tree/path.html doc/html/boost/property_tree/path_of.html doc/html/boost/property_tree/path_of_std_ba_idp86927216.html doc/html/boost/property_tree/ptree.html doc/html/boost/property_tree/ptree_bad_data.html doc/html/boost/property_tree/ptree_bad_path.html doc/html/boost/property_tree/ptree_error.html doc/html/boost/property_tree/save_idp58432256.html doc/html/boost/property_tree/serialize_idp89730672.html doc/html/boost/property_tree/stream_translator.html doc/html/boost/property_tree/string_path.html doc/html/boost/property_tree/swap_idp94334048.html doc/html/boost/property_tree/translator_bet_idp86922560.html doc/html/boost/property_tree/translator_bet_idp87436240.html doc/html/boost/property_tree/translator_bet_idp87437536.html doc/html/boost/property_tree/translator_between.html doc/html/boost/property_tree/wiptree.html doc/html/boost/property_tree/wpath.html doc/html/boost/property_tree/wptree.html doc/html/boost/property_tree/xml_parser/read_xml_idp89482976.html doc/html/boost/property_tree/xml_parser/read_xml_idp89489520.html doc/html/boost/property_tree/xml_parser/write_xml_idp86933504.html doc/html/boost/property_tree/xml_parser/write_xml_idp96327472.html doc/html/boost/proto/N.html doc/html/boost/proto/_.html doc/html/boost/proto/_byref.html doc/html/boost/proto/_byval.html doc/html/boost/proto/_child_c.html doc/html/boost/proto/_data.html doc/html/boost/proto/_default.html doc/html/boost/proto/_env.html doc/html/boost/proto/_env_var.html doc/html/boost/proto/_expr.html doc/html/boost/proto/_state.html doc/html/boost/proto/_value.html doc/html/boost/proto/_void.html doc/html/boost/proto/address_of.html doc/html/boost/proto/and_.html doc/html/boost/proto/arity_of.html doc/html/boost/proto/as_child_idp65309008.html doc/html/boost/proto/as_env_idp65498288.html doc/html/boost/proto/as_expr_idp65300976.html doc/html/boost/proto/assert_matches.html doc/html/boost/proto/assert_matches_not.html doc/html/boost/proto/assign.html doc/html/boost/proto/basic_default_domain.html doc/html/boost/proto/basic_default_generator.html doc/html/boost/proto/basic_expr.html doc/html/boost/proto/binary_expr.html doc/html/boost/proto/bitwise_and.html doc/html/boost/proto/bitwise_and_assign.html doc/html/boost/proto/bitwise_or.html doc/html/boost/proto/bitwise_or_assign.html doc/html/boost/proto/bitwise_xor.html doc/html/boost/proto/bitwise_xor_assign.html doc/html/boost/proto/by_value_generator.html doc/html/boost/proto/call.html doc/html/boost/proto/callable.html doc/html/boost/proto/char_.html doc/html/boost/proto/child_c_idp65227264.html doc/html/boost/proto/child_idp65700512.html doc/html/boost/proto/comma.html doc/html/boost/proto/complement.html doc/html/boost/proto/compose_generators.html doc/html/boost/proto/context/callable_context.html doc/html/boost/proto/context/callable_eval.html doc/html/boost/proto/context/default_context.html doc/html/boost/proto/context/default_eval.html doc/html/boost/proto/context/null_context.html doc/html/boost/proto/context/null_eval.html doc/html/boost/proto/convertible_to.html doc/html/boost/proto/data.html doc/html/boost/proto/data_type.html doc/html/boost/proto/deduce_domain.html doc/html/boost/proto/deep_copy_idp63169872.html doc/html/boost/proto/default_domain.html doc/html/boost/proto/default_generator.html doc/html/boost/proto/dereference.html doc/html/boost/proto/display_expr_idp63117664.html doc/html/boost/proto/divides.html doc/html/boost/proto/divides_assign.html doc/html/boost/proto/domain.html doc/html/boost/proto/domain/as_child.html doc/html/boost/proto/domain/as_expr.html doc/html/boost/proto/domain_of.html doc/html/boost/proto/empty_env.html doc/html/boost/proto/env.html doc/html/boost/proto/env_var_idp65512320.html doc/html/boost/proto/equal_to.html doc/html/boost/proto/eval_idp63274336.html doc/html/boost/proto/exact.html doc/html/boost/proto/expr.html doc/html/boost/proto/extends.html doc/html/boost/proto/external_transform.html doc/html/boost/proto/external_transforms.html doc/html/boost/proto/flatten_idp63682816.html doc/html/boost/proto/fold.html doc/html/boost/proto/fold_tree.html doc/html/boost/proto/function.html doc/html/boost/proto/functional/advance.html doc/html/boost/proto/functional/as_child.html doc/html/boost/proto/functional/as_env.html doc/html/boost/proto/functional/as_expr.html doc/html/boost/proto/functional/at.html doc/html/boost/proto/functional/begin.html doc/html/boost/proto/functional/child.html doc/html/boost/proto/functional/child_c.html doc/html/boost/proto/functional/deep_copy.html doc/html/boost/proto/functional/display_expr.html doc/html/boost/proto/functional/distance.html doc/html/boost/proto/functional/empty.html doc/html/boost/proto/functional/end.html doc/html/boost/proto/functional/env_var.html doc/html/boost/proto/functional/eval.html doc/html/boost/proto/functional/first.html doc/html/boost/proto/functional/flatten.html doc/html/boost/proto/functional/has_env_var.html doc/html/boost/proto/functional/left.html doc/html/boost/proto/functional/make_expr.html doc/html/boost/proto/functional/make_pair.html doc/html/boost/proto/functional/next.html doc/html/boost/proto/functional/pop_back.html doc/html/boost/proto/functional/pop_front.html doc/html/boost/proto/functional/prior.html doc/html/boost/proto/functional/push_back.html doc/html/boost/proto/functional/push_front.html doc/html/boost/proto/functional/rbegin.html doc/html/boost/proto/functional/rend.html doc/html/boost/proto/functional/reverse.html doc/html/boost/proto/functional/right.html doc/html/boost/proto/functional/second.html doc/html/boost/proto/functional/size.html doc/html/boost/proto/functional/unpack_expr.html doc/html/boost/proto/functional/value.html doc/html/boost/proto/generator.html doc/html/boost/proto/greater.html doc/html/boost/proto/greater_equal.html doc/html/boost/proto/has_env_var_idp65505408.html doc/html/boost/proto/if_.html doc/html/boost/proto/if_else_.html doc/html/boost/proto/int_.html doc/html/boost/proto/integral_c.html doc/html/boost/proto/is_aggregate.html doc/html/boost/proto/is_callable.html doc/html/boost/proto/is_domain.html doc/html/boost/proto/is_env.html doc/html/boost/proto/is_expr.html doc/html/boost/proto/is_extension.html doc/html/boost/proto/is_proto_expr.html doc/html/boost/proto/is_transform.html doc/html/boost/proto/key_not_found.html doc/html/boost/proto/lazy.html doc/html/boost/proto/left_idp65243328.html doc/html/boost/proto/less.html doc/html/boost/proto/less_equal.html doc/html/boost/proto/listN.html doc/html/boost/proto/lit.html doc/html/boost/proto/literal.html doc/html/boost/proto/logical_and.html doc/html/boost/proto/logical_not.html doc/html/boost/proto/logical_or.html doc/html/boost/proto/long_.html doc/html/boost/proto/make.html doc/html/boost/proto/make_expr_idp63859616.html doc/html/boost/proto/matches.html doc/html/boost/proto/mem_ptr.html doc/html/boost/proto/minus.html doc/html/boost/proto/minus_assign.html doc/html/boost/proto/modulus.html doc/html/boost/proto/modulus_assign.html doc/html/boost/proto/multiplies.html doc/html/boost/proto/multiplies_assign.html doc/html/boost/proto/nary_expr.html doc/html/boost/proto/negate.html doc/html/boost/proto/noinvoke.html doc/html/boost/proto/not_.html doc/html/boost/proto/not_equal_to.html doc/html/boost/proto/nullary_expr.html doc/html/boost/proto/operator__idp65519200.html doc/html/boost/proto/or_.html doc/html/boost/proto/otherwise.html doc/html/boost/proto/pack.html doc/html/boost/proto/pass_through.html doc/html/boost/proto/plus.html doc/html/boost/proto/plus_assign.html doc/html/boost/proto/pod_generator.html doc/html/boost/proto/post_dec.html doc/html/boost/proto/post_inc.html doc/html/boost/proto/pre_dec.html doc/html/boost/proto/pre_inc.html doc/html/boost/proto/protect.html doc/html/boost/proto/result_of/as_child.html doc/html/boost/proto/result_of/as_env.html doc/html/boost/proto/result_of/as_expr.html doc/html/boost/proto/result_of/child.html doc/html/boost/proto/result_of/child_c.html doc/html/boost/proto/result_of/deep_copy.html doc/html/boost/proto/result_of/env_var.html doc/html/boost/proto/result_of/eval.html doc/html/boost/proto/result_of/flatten.html doc/html/boost/proto/result_of/has_env_var.html doc/html/boost/proto/result_of/left.html doc/html/boost/proto/result_of/make_expr.html doc/html/boost/proto/result_of/make_expr_Tag__idp64018160.html doc/html/boost/proto/result_of/right.html doc/html/boost/proto/result_of/unpack_expr.html doc/html/boost/proto/result_of/unpack_expr_Ta_idp63853328.html doc/html/boost/proto/result_of/value.html doc/html/boost/proto/reverse_fold.html doc/html/boost/proto/reverse_fold_tree.html doc/html/boost/proto/right_idp65250736.html doc/html/boost/proto/shift_left.html doc/html/boost/proto/shift_left_assign.html doc/html/boost/proto/shift_right.html doc/html/boost/proto/shift_right_assign.html doc/html/boost/proto/size_t.html doc/html/boost/proto/subscript.html doc/html/boost/proto/switch_.html doc/html/boost/proto/tag/address_of.html doc/html/boost/proto/tag/assign.html doc/html/boost/proto/tag/bitwise_and.html doc/html/boost/proto/tag/bitwise_and_assign.html doc/html/boost/proto/tag/bitwise_or.html doc/html/boost/proto/tag/bitwise_or_assign.html doc/html/boost/proto/tag/bitwise_xor.html doc/html/boost/proto/tag/bitwise_xor_assign.html doc/html/boost/proto/tag/comma.html doc/html/boost/proto/tag/complement.html doc/html/boost/proto/tag/dereference.html doc/html/boost/proto/tag/divides.html doc/html/boost/proto/tag/divides_assign.html doc/html/boost/proto/tag/equal_to.html doc/html/boost/proto/tag/function.html doc/html/boost/proto/tag/greater.html doc/html/boost/proto/tag/greater_equal.html doc/html/boost/proto/tag/if_else_.html doc/html/boost/proto/tag/less.html doc/html/boost/proto/tag/less_equal.html doc/html/boost/proto/tag/logical_and.html doc/html/boost/proto/tag/logical_not.html doc/html/boost/proto/tag/logical_or.html doc/html/boost/proto/tag/mem_ptr.html doc/html/boost/proto/tag/minus.html doc/html/boost/proto/tag/minus_assign.html doc/html/boost/proto/tag/modulus.html doc/html/boost/proto/tag/modulus_assign.html doc/html/boost/proto/tag/multiplies.html doc/html/boost/proto/tag/multiplies_assign.html doc/html/boost/proto/tag/negate.html doc/html/boost/proto/tag/not_equal_to.html doc/html/boost/proto/tag/plus.html doc/html/boost/proto/tag/plus_assign.html doc/html/boost/proto/tag/post_dec.html doc/html/boost/proto/tag/post_inc.html doc/html/boost/proto/tag/pre_dec.html doc/html/boost/proto/tag/pre_inc.html doc/html/boost/proto/tag/shift_left.html doc/html/boost/proto/tag/shift_left_assign.html doc/html/boost/proto/tag/shift_right.html doc/html/boost/proto/tag/shift_right_assign.html doc/html/boost/proto/tag/subscript.html doc/html/boost/proto/tag/terminal.html doc/html/boost/proto/tag/unary_plus.html doc/html/boost/proto/tag_of.html doc/html/boost/proto/term.html doc/html/boost/proto/terminal.html doc/html/boost/proto/transform.html doc/html/boost/proto/transform_impl.html doc/html/boost/proto/transforms.html doc/html/boost/proto/transforms_type.html doc/html/boost/proto/unary_expr.html doc/html/boost/proto/unary_plus.html doc/html/boost/proto/unexpr.html doc/html/boost/proto/unpack_expr_idp63880656.html doc/html/boost/proto/use_basic_expr.html doc/html/boost/proto/value_idp65236928.html doc/html/boost/proto/vararg.html doc/html/boost/proto/wants_basic_expr.html doc/html/boost/proto/when.html doc/html/boost/proto/when_Grammar__idp127212496.html doc/html/boost/proto/when_Grammar__idp127217504.html doc/html/boost/proto/when_Grammar__idp127238944.html doc/html/boost/proto/when_Grammar__idp127261408.html doc/html/boost/random/additive_combine_engine.html doc/html/boost/random/bernoulli_distribution.html doc/html/boost/random/binomial_distribution.html doc/html/boost/random/cauchy_distribution.html doc/html/boost/random/chi_squared_distribution.html doc/html/boost/random/discard_block_engine.html doc/html/boost/random/discrete_distribution.html doc/html/boost/random/ecuyer1988.html doc/html/boost/random/exponential_distribution.html doc/html/boost/random/extreme_value_distribution.html doc/html/boost/random/fisher_f_distribution.html doc/html/boost/random/gamma_distribution.html doc/html/boost/random/geometric_distribution.html doc/html/boost/random/hellekalek1995.html doc/html/boost/random/independent_bits_engine.html doc/html/boost/random/inversive_cong_idp56736336.html doc/html/boost/random/knuth_b.html doc/html/boost/random/kreutzer1986.html doc/html/boost/random/lagged_fibonacci1279.html doc/html/boost/random/lagged_fibonacci19937.html doc/html/boost/random/lagged_fibonacci2281.html doc/html/boost/random/lagged_fibonacci23209.html doc/html/boost/random/lagged_fibonacci3217.html doc/html/boost/random/lagged_fibonacci4423.html doc/html/boost/random/lagged_fibonacci44497.html doc/html/boost/random/lagged_fibonacci607.html doc/html/boost/random/lagged_fibonacci9689.html doc/html/boost/random/lagged_fibonacci_01_engine.html doc/html/boost/random/lagged_fibonacci_engine.html doc/html/boost/random/linear_congruential_engine.html doc/html/boost/random/linear_feedbac_idp56980384.html doc/html/boost/random/lognormal_distribution.html doc/html/boost/random/mersenne_twister_engine.html doc/html/boost/random/minstd_rand.html doc/html/boost/random/minstd_rand0.html doc/html/boost/random/mt11213b.html doc/html/boost/random/mt19937.html doc/html/boost/random/negative_binom_idp57122272.html doc/html/boost/random/normal_distribution.html doc/html/boost/random/piecewise_cons_idp57149936.html doc/html/boost/random/piecewise_line_idp57227296.html doc/html/boost/random/poisson_distribution.html doc/html/boost/random/rand48.html doc/html/boost/random/random_device.html doc/html/boost/random/random_number_generator.html doc/html/boost/random/ranlux3.html doc/html/boost/random/ranlux3_01.html doc/html/boost/random/ranlux4.html doc/html/boost/random/ranlux4_01.html doc/html/boost/random/ranlux64_3.html doc/html/boost/random/ranlux64_3_01.html doc/html/boost/random/ranlux64_4.html doc/html/boost/random/ranlux64_4_01.html doc/html/boost/random/seed_seq.html doc/html/boost/random/shuffle_order_engine.html doc/html/boost/random/student_t_distribution.html doc/html/boost/random/subtract_with__idp40838560.html doc/html/boost/random/subtract_with_carry_engine.html doc/html/boost/random/taus88.html doc/html/boost/random/triangle_distribution.html doc/html/boost/random/uniform_01.html doc/html/boost/random/uniform_int_distribution.html doc/html/boost/random/uniform_int_distribution/param_type.html doc/html/boost/random/uniform_on_sphere.html doc/html/boost/random/uniform_real_distribution.html doc/html/boost/random/uniform_smallint.html doc/html/boost/random/weibull_distribution.html doc/html/boost/random/xor_combine_engine.html doc/html/boost/recursive_wrapper.html doc/html/boost/reference_wrapper.html doc/html/boost/signal.html doc/html/boost/signalN.html doc/html/boost/signals/connection.html doc/html/boost/signals/scoped_connection.html doc/html/boost/signals/trackable.html doc/html/boost/signals2/connection.html doc/html/boost/signals2/deconstruct.html doc/html/boost/signals2/deconstruct_access.html doc/html/boost/signals2/dummy_mutex.html doc/html/boost/signals2/expired_slot.html doc/html/boost/signals2/keywords/combiner_type.html doc/html/boost/signals2/keywords/extended_slot__idp86618224.html doc/html/boost/signals2/keywords/group_compare_type.html doc/html/boost/signals2/keywords/group_type.html doc/html/boost/signals2/keywords/mutex_type.html doc/html/boost/signals2/keywords/signature_type.html doc/html/boost/signals2/keywords/slot_function_type.html doc/html/boost/signals2/last_value.html doc/html/boost/signals2/last_value_voi_idp55590736.html doc/html/boost/signals2/mutex.html doc/html/boost/signals2/no_slots_error.html doc/html/boost/signals2/optional_last__idp57678352.html doc/html/boost/signals2/optional_last_value.html doc/html/boost/signals2/postconstructor_invoker.html doc/html/boost/signals2/scoped_connection.html doc/html/boost/signals2/shared_connection_block.html doc/html/boost/signals2/signal.html doc/html/boost/signals2/signal/arg.html doc/html/boost/signals2/signal_base.html doc/html/boost/signals2/signal_type.html doc/html/boost/signals2/slot.html doc/html/boost/signals2/slot/arg.html doc/html/boost/signals2/slot_base.html doc/html/boost/signals2/trackable.html doc/html/boost/slot.html doc/html/boost/static_visitor.html doc/html/boost/swap_idp145422784.html doc/html/boost/swap_idp18460736.html doc/html/boost/type_erasure/_a.html doc/html/boost/type_erasure/_b.html doc/html/boost/type_erasure/_c.html doc/html/boost/type_erasure/_d.html doc/html/boost/type_erasure/_e.html doc/html/boost/type_erasure/_f.html doc/html/boost/type_erasure/_g.html doc/html/boost/type_erasure/_self.html doc/html/boost/type_erasure/add_assignable.html doc/html/boost/type_erasure/addable.html doc/html/boost/type_erasure/any.html doc/html/boost/type_erasure/any_Concept__T_idp89824448.html doc/html/boost/type_erasure/any_Concept__T_idp96415648.html doc/html/boost/type_erasure/any_Concept__c_idp90555280.html doc/html/boost/type_erasure/any_cast_idp87475936.html doc/html/boost/type_erasure/as_param.html doc/html/boost/type_erasure/assignable.html doc/html/boost/type_erasure/bad_any_cast.html doc/html/boost/type_erasure/bad_function_call.html doc/html/boost/type_erasure/bidirectional_iterator.html doc/html/boost/type_erasure/binding.html doc/html/boost/type_erasure/binding_of.html doc/html/boost/type_erasure/bitand_assignable.html doc/html/boost/type_erasure/bitandable.html doc/html/boost/type_erasure/bitor_assignable.html doc/html/boost/type_erasure/bitorable.html doc/html/boost/type_erasure/bitxor_assignable.html doc/html/boost/type_erasure/bitxorable.html doc/html/boost/type_erasure/call_idp85625136.html doc/html/boost/type_erasure/callable.html doc/html/boost/type_erasure/check_match.html doc/html/boost/type_erasure/complementable.html doc/html/boost/type_erasure/concept_interface.html doc/html/boost/type_erasure/concept_of.html doc/html/boost/type_erasure/constructible.html doc/html/boost/type_erasure/copy_constructible.html doc/html/boost/type_erasure/decrementable.html doc/html/boost/type_erasure/deduced.html doc/html/boost/type_erasure/dereferenceable.html doc/html/boost/type_erasure/derived.html doc/html/boost/type_erasure/destructible.html doc/html/boost/type_erasure/dividable.html doc/html/boost/type_erasure/divide_assignable.html doc/html/boost/type_erasure/equality_comparable.html doc/html/boost/type_erasure/forward_iterator.html doc/html/boost/type_erasure/get_idp55336096.html doc/html/boost/type_erasure/incrementable.html doc/html/boost/type_erasure/is_empty.html doc/html/boost/type_erasure/is_placeholder.html doc/html/boost/type_erasure/is_relaxed.html doc/html/boost/type_erasure/is_subconcept.html doc/html/boost/type_erasure/istreamable.html doc/html/boost/type_erasure/iterator.html doc/html/boost/type_erasure/left_shift_assignable.html doc/html/boost/type_erasure/left_shiftable.html doc/html/boost/type_erasure/less_than_comparable.html doc/html/boost/type_erasure/make_binding.html doc/html/boost/type_erasure/mod_assignable.html doc/html/boost/type_erasure/modable.html doc/html/boost/type_erasure/multipliable.html doc/html/boost/type_erasure/multiply_assignable.html doc/html/boost/type_erasure/negatable.html doc/html/boost/type_erasure/ostreamable.html doc/html/boost/type_erasure/param.html doc/html/boost/type_erasure/placeholder.html doc/html/boost/type_erasure/placeholder_of.html doc/html/boost/type_erasure/random_access_iterator.html doc/html/boost/type_erasure/rebind_any.html doc/html/boost/type_erasure/relaxed.html doc/html/boost/type_erasure/require_match.html doc/html/boost/type_erasure/right_shift_assignable.html doc/html/boost/type_erasure/right_shiftable.html doc/html/boost/type_erasure/same_type.html doc/html/boost/type_erasure/static_binding.html doc/html/boost/type_erasure/subscriptable.html doc/html/boost/type_erasure/subtract_assignable.html doc/html/boost/type_erasure/subtractable.html doc/html/boost/type_erasure/tuple.html doc/html/boost/type_erasure/typeid_.html doc/html/boost/type_erasure/typeid_of.html doc/html/boost/uninitialized_copy_or_move.html doc/html/boost/uninitialized_move.html doc/html/boost/units/absolute.html doc/html/boost/units/abstract/amount_unit_tag.html doc/html/boost/units/abstract/current_unit_tag.html doc/html/boost/units/abstract/length_unit_tag.html doc/html/boost/units/abstract/luminous_inte_idp149847232.html doc/html/boost/units/abstract/mass_unit_tag.html doc/html/boost/units/abstract/plane_angle_unit_tag.html doc/html/boost/units/abstract/solid_angle_unit_tag.html doc/html/boost/units/abstract/temperature_unit_tag.html doc/html/boost/units/abstract/time_unit_tag.html doc/html/boost/units/add_typeof_he_idp149009392.html doc/html/boost/units/add_typeof_he_idp149012624.html doc/html/boost/units/add_typeof_helper.html doc/html/boost/units/amount_base_dimension.html doc/html/boost/units/angle/degree_base_unit.html doc/html/boost/units/angle/gradian_base_unit.html doc/html/boost/units/angle/radian_base_unit.html doc/html/boost/units/angle/steradian_base_unit.html doc/html/boost/units/astronomical/astronomical__idp149878816.html doc/html/boost/units/astronomical/light_second_base_unit.html doc/html/boost/units/astronomical/parsec_base_unit.html doc/html/boost/units/base_dimension.html doc/html/boost/units/base_unit.html doc/html/boost/units/base_unit_inf_idp149828400.html doc/html/boost/units/base_unit_inf_idp149830128.html doc/html/boost/units/base_unit_inf_idp149831856.html doc/html/boost/units/base_unit_inf_idp149833584.html doc/html/boost/units/base_unit_inf_idp149835312.html doc/html/boost/units/base_unit_inf_idp149837040.html doc/html/boost/units/base_unit_inf_idp149838768.html doc/html/boost/units/base_unit_inf_idp149840512.html doc/html/boost/units/base_unit_inf_idp149842240.html doc/html/boost/units/base_unit_inf_idp149858224.html doc/html/boost/units/base_unit_inf_idp149861392.html doc/html/boost/units/base_unit_inf_idp149872144.html doc/html/boost/units/base_unit_inf_idp149881184.html doc/html/boost/units/base_unit_inf_idp149884416.html doc/html/boost/units/base_unit_inf_idp149887648.html doc/html/boost/units/base_unit_inf_idp149893440.html doc/html/boost/units/base_unit_inf_idp149905632.html doc/html/boost/units/base_unit_inf_idp149908784.html doc/html/boost/units/base_unit_inf_idp149911936.html doc/html/boost/units/base_unit_inf_idp149915072.html doc/html/boost/units/base_unit_inf_idp149918224.html doc/html/boost/units/base_unit_inf_idp149921376.html doc/html/boost/units/base_unit_inf_idp149924512.html doc/html/boost/units/base_unit_inf_idp149927664.html doc/html/boost/units/base_unit_inf_idp149930832.html doc/html/boost/units/base_unit_inf_idp149933968.html doc/html/boost/units/base_unit_inf_idp149937120.html doc/html/boost/units/base_unit_inf_idp149940256.html doc/html/boost/units/base_unit_inf_idp149948400.html doc/html/boost/units/base_unit_inf_idp149951536.html doc/html/boost/units/base_unit_inf_idp149954688.html doc/html/boost/units/base_unit_inf_idp149957824.html doc/html/boost/units/base_unit_inf_idp149960960.html doc/html/boost/units/base_unit_inf_idp149967376.html doc/html/boost/units/base_unit_inf_idp149980352.html doc/html/boost/units/base_unit_inf_idp149983296.html doc/html/boost/units/base_unit_inf_idp149988752.html doc/html/boost/units/base_unit_inf_idp149996704.html doc/html/boost/units/base_unit_inf_idp149999664.html doc/html/boost/units/base_unit_inf_idp150005120.html doc/html/boost/units/base_unit_inf_idp150008080.html doc/html/boost/units/base_unit_inf_idp150013520.html doc/html/boost/units/base_unit_inf_idp150039952.html doc/html/boost/units/base_unit_inf_idp150043088.html doc/html/boost/units/base_unit_inf_idp150046224.html doc/html/boost/units/base_unit_inf_idp150049376.html doc/html/boost/units/base_unit_inf_idp150052528.html doc/html/boost/units/base_unit_inf_idp150055664.html doc/html/boost/units/base_unit_inf_idp150058816.html doc/html/boost/units/base_unit_inf_idp150061952.html doc/html/boost/units/base_unit_inf_idp150065088.html doc/html/boost/units/base_unit_inf_idp150068240.html doc/html/boost/units/base_unit_inf_idp150071376.html doc/html/boost/units/base_unit_inf_idp150074512.html doc/html/boost/units/base_unit_inf_idp150077648.html doc/html/boost/units/base_unit_inf_idp150080784.html doc/html/boost/units/base_unit_inf_idp150091456.html doc/html/boost/units/base_unit_inf_idp150094592.html doc/html/boost/units/base_unit_inf_idp150097744.html doc/html/boost/units/base_unit_inf_idp150100896.html doc/html/boost/units/base_unit_info.html doc/html/boost/units/celsius/degree.html doc/html/boost/units/celsius/degrees.html doc/html/boost/units/cgs/barye.html doc/html/boost/units/cgs/baryes.html doc/html/boost/units/cgs/biot.html doc/html/boost/units/cgs/biots.html doc/html/boost/units/cgs/centimeter.html doc/html/boost/units/cgs/centimeter_per_second.html doc/html/boost/units/cgs/centimeters.html doc/html/boost/units/cgs/centimeters_per_second.html doc/html/boost/units/cgs/centimetre.html doc/html/boost/units/cgs/centimetre_per_second.html doc/html/boost/units/cgs/centimetres.html doc/html/boost/units/cgs/centimetres_per_second.html doc/html/boost/units/cgs/cubic_centimeter.html doc/html/boost/units/cgs/cubic_centimeters.html doc/html/boost/units/cgs/cubic_centimetre.html doc/html/boost/units/cgs/cubic_centimetres.html doc/html/boost/units/cgs/dyne.html doc/html/boost/units/cgs/dynes.html doc/html/boost/units/cgs/erg.html doc/html/boost/units/cgs/ergs.html doc/html/boost/units/cgs/gal.html doc/html/boost/units/cgs/gals.html doc/html/boost/units/cgs/gram.html doc/html/boost/units/cgs/gram_base_unit.html doc/html/boost/units/cgs/gramme.html doc/html/boost/units/cgs/grammes.html doc/html/boost/units/cgs/grams.html doc/html/boost/units/cgs/kayser.html doc/html/boost/units/cgs/kaysers.html doc/html/boost/units/cgs/poise.html doc/html/boost/units/cgs/reciprocal_centimeter.html doc/html/boost/units/cgs/reciprocal_centimeters.html doc/html/boost/units/cgs/reciprocal_centimetre.html doc/html/boost/units/cgs/reciprocal_centimetres.html doc/html/boost/units/cgs/second.html doc/html/boost/units/cgs/seconds.html doc/html/boost/units/cgs/square_centimeter.html doc/html/boost/units/cgs/square_centimeters.html doc/html/boost/units/cgs/square_centimetre.html doc/html/boost/units/cgs/square_centimetres.html doc/html/boost/units/cgs/stoke.html doc/html/boost/units/cgs/stokes.html doc/html/boost/units/conversion_helper.html doc/html/boost/units/current_base_dimension.html doc/html/boost/units/degree/degree.html doc/html/boost/units/degree/degrees.html doc/html/boost/units/derived_dimension.html doc/html/boost/units/dim.html doc/html/boost/units/dimensionless_quantity.html doc/html/boost/units/dimensionless_type.html doc/html/boost/units/dimensionless_unit.html doc/html/boost/units/divide_typeof_helper.html doc/html/boost/units/divide_typeof_idp148856368.html doc/html/boost/units/divide_typeof_idp148861424.html doc/html/boost/units/fahrenheit/degree.html doc/html/boost/units/fahrenheit/degrees.html doc/html/boost/units/get_dimension.html doc/html/boost/units/get_dimension_idp148640784.html doc/html/boost/units/get_dimension_idp148642512.html doc/html/boost/units/get_dimension_idp148644000.html doc/html/boost/units/get_system.html doc/html/boost/units/get_system_ab_idp148649008.html doc/html/boost/units/get_system_qu_idp148650496.html doc/html/boost/units/get_system_un_idp148647280.html doc/html/boost/units/gradian/gradian.html doc/html/boost/units/gradian/gradians.html doc/html/boost/units/heterogeneous_system.html doc/html/boost/units/homogeneous_system.html doc/html/boost/units/imperial/pint_base_unit.html doc/html/boost/units/imperial/pound_base_unit.html doc/html/boost/units/imperial/yard_base_unit.html doc/html/boost/units/is_dim.html doc/html/boost/units/is_dim_dim_T__idp148710784.html doc/html/boost/units/is_dimension__idp148714144.html doc/html/boost/units/is_dimension__idp148715664.html doc/html/boost/units/is_dimension_list.html doc/html/boost/units/is_dimensionl_idp148718192.html doc/html/boost/units/is_dimensionl_idp148719632.html doc/html/boost/units/is_dimensionless.html doc/html/boost/units/is_dimensionless_quantity.html doc/html/boost/units/is_dimensionless_unit.html doc/html/boost/units/is_quantity.html doc/html/boost/units/is_quantity_o_idp148730656.html doc/html/boost/units/is_quantity_o_idp148734784.html doc/html/boost/units/is_quantity_of_dimension.html doc/html/boost/units/is_quantity_of_system.html doc/html/boost/units/is_quantity_q_idp148726992.html doc/html/boost/units/is_unit.html doc/html/boost/units/is_unit_of_di_idp148742208.html doc/html/boost/units/is_unit_of_di_idp148743872.html doc/html/boost/units/is_unit_of_dimension.html doc/html/boost/units/is_unit_of_sy_idp148747712.html doc/html/boost/units/is_unit_of_sy_idp148749376.html doc/html/boost/units/is_unit_of_system.html doc/html/boost/units/is_unit_unit__idp148738544.html doc/html/boost/units/length_base_dimension.html doc/html/boost/units/luminous_inte_idp149239648.html doc/html/boost/units/make_dimension_list.html doc/html/boost/units/make_scaled_u_idp148908096.html doc/html/boost/units/make_scaled_u_idp148911664.html doc/html/boost/units/make_scaled_unit.html doc/html/boost/units/make_system.html doc/html/boost/units/mass_base_dimension.html doc/html/boost/units/metric/are_base_unit.html doc/html/boost/units/metric/atmosphere_base_unit.html doc/html/boost/units/metric/bar_base_unit.html doc/html/boost/units/metric/barn_base_unit.html doc/html/boost/units/metric/hectare_base_unit.html doc/html/boost/units/metric/knot_base_unit.html doc/html/boost/units/metric/liter_base_unit.html doc/html/boost/units/metric/mmHg_base_unit.html doc/html/boost/units/metric/torr_base_unit.html doc/html/boost/units/multiply_type_idp148853824.html doc/html/boost/units/multiply_type_idp148858896.html doc/html/boost/units/multiply_type_idp148863952.html doc/html/boost/units/multiply_type_idp148866736.html doc/html/boost/units/multiply_typeof_helper.html doc/html/boost/units/operator/_idp148872640.html doc/html/boost/units/operator/_idp148878848.html doc/html/boost/units/operator_idp148700608.html doc/html/boost/units/operator_idp148704848.html doc/html/boost/units/operator_idp148869536.html doc/html/boost/units/operator_idp148875744.html doc/html/boost/units/operator_idp148881952.html doc/html/boost/units/operator_idp148885552.html doc/html/boost/units/plane_angle_base_dimension.html doc/html/boost/units/pow_idp148539392.html doc/html/boost/units/power_typeof__idp149131904.html doc/html/boost/units/power_typeof_helper.html doc/html/boost/units/quantity.html doc/html/boost/units/quantity_BOOS_idp148978176.html doc/html/boost/units/reduce_unit.html doc/html/boost/units/reduce_unit_u_idp149130096.html doc/html/boost/units/revolution/revolution.html doc/html/boost/units/revolution/revolutions.html doc/html/boost/units/root_typeof_h_idp149137536.html doc/html/boost/units/root_typeof_helper.html doc/html/boost/units/scale.html doc/html/boost/units/scaled_base_unit.html doc/html/boost/units/si/ampere.html doc/html/boost/units/si/ampere_base_unit.html doc/html/boost/units/si/amperes.html doc/html/boost/units/si/becquerel.html doc/html/boost/units/si/becquerels.html doc/html/boost/units/si/candela.html doc/html/boost/units/si/candela_base_unit.html doc/html/boost/units/si/candelas.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149327072.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149335792.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149344720.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149384304.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149429568.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149449520.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149474640.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149521440.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149559424.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149573680.html doc/html/boost/units/si/constants/codata/BOOST_UNITS_P_idp149604160.html doc/html/boost/units/si/coulomb.html doc/html/boost/units/si/coulombs.html doc/html/boost/units/si/cubic_meter.html doc/html/boost/units/si/cubic_meters.html doc/html/boost/units/si/cubic_metre.html doc/html/boost/units/si/cubic_metres.html doc/html/boost/units/si/farad.html doc/html/boost/units/si/farads.html doc/html/boost/units/si/gray.html doc/html/boost/units/si/grays.html doc/html/boost/units/si/henry.html doc/html/boost/units/si/henrys.html doc/html/boost/units/si/hertz.html doc/html/boost/units/si/joule.html doc/html/boost/units/si/joules.html doc/html/boost/units/si/katal.html doc/html/boost/units/si/katals.html doc/html/boost/units/si/kelvin.html doc/html/boost/units/si/kelvin_base_unit.html doc/html/boost/units/si/kelvins.html doc/html/boost/units/si/kilogram.html doc/html/boost/units/si/kilogram_per_cubic_meter.html doc/html/boost/units/si/kilogram_per_square_meter.html doc/html/boost/units/si/kilogramme.html doc/html/boost/units/si/kilogramme_pe_idp149735760.html doc/html/boost/units/si/kilogramme_per_cubic_metre.html doc/html/boost/units/si/kilogrammes.html doc/html/boost/units/si/kilogrammes_p_idp149695104.html doc/html/boost/units/si/kilogrammes_p_idp149736256.html doc/html/boost/units/si/kilograms.html doc/html/boost/units/si/kilograms_per_cubic_meter.html doc/html/boost/units/si/kilograms_per_square_meter.html doc/html/boost/units/si/lumen.html doc/html/boost/units/si/lumens.html doc/html/boost/units/si/lux.html doc/html/boost/units/si/meter.html doc/html/boost/units/si/meter_base_unit.html doc/html/boost/units/si/meter_per_second.html doc/html/boost/units/si/meter_per_second_squared.html doc/html/boost/units/si/meters.html doc/html/boost/units/si/meters_per_second.html doc/html/boost/units/si/meters_per_second_squared.html doc/html/boost/units/si/metre.html doc/html/boost/units/si/metre_per_second.html doc/html/boost/units/si/metre_per_second_squared.html doc/html/boost/units/si/metres.html doc/html/boost/units/si/metres_per_second.html doc/html/boost/units/si/metres_per_second_squared.html doc/html/boost/units/si/mho.html doc/html/boost/units/si/mhos.html doc/html/boost/units/si/mole.html doc/html/boost/units/si/mole_base_unit.html doc/html/boost/units/si/moles.html doc/html/boost/units/si/newton.html doc/html/boost/units/si/newton_meter.html doc/html/boost/units/si/newton_meters.html doc/html/boost/units/si/newton_per_meter.html doc/html/boost/units/si/newtons.html doc/html/boost/units/si/newtons_per_meter.html doc/html/boost/units/si/ohm.html doc/html/boost/units/si/ohms.html doc/html/boost/units/si/pascal.html doc/html/boost/units/si/pascals.html doc/html/boost/units/si/radian.html doc/html/boost/units/si/radian_per_second.html doc/html/boost/units/si/radians.html doc/html/boost/units/si/radians_per_second.html doc/html/boost/units/si/reciprocal_meter.html doc/html/boost/units/si/reciprocal_meters.html doc/html/boost/units/si/reciprocal_metre.html doc/html/boost/units/si/reciprocal_metres.html doc/html/boost/units/si/second.html doc/html/boost/units/si/second_base_unit.html doc/html/boost/units/si/seconds.html doc/html/boost/units/si/siemen.html doc/html/boost/units/si/siemens.html doc/html/boost/units/si/sievert.html doc/html/boost/units/si/sieverts.html doc/html/boost/units/si/square_meter.html doc/html/boost/units/si/square_meters.html doc/html/boost/units/si/square_metre.html doc/html/boost/units/si/square_metres.html doc/html/boost/units/si/steradian.html doc/html/boost/units/si/steradians.html doc/html/boost/units/si/tesla.html doc/html/boost/units/si/teslas.html doc/html/boost/units/si/volt.html doc/html/boost/units/si/volts.html doc/html/boost/units/si/watt.html doc/html/boost/units/si/watts.html doc/html/boost/units/si/weber.html doc/html/boost/units/si/webers.html doc/html/boost/units/solid_angle_base_dimension.html doc/html/boost/units/static_abs.html doc/html/boost/units/static_power.html doc/html/boost/units/static_rational.html doc/html/boost/units/static_root.html doc/html/boost/units/subtract_type_idp149016496.html doc/html/boost/units/subtract_type_idp149019440.html doc/html/boost/units/subtract_typeof_helper.html doc/html/boost/units/temperature/celsius_base_unit.html doc/html/boost/units/temperature/fahrenheit_base_unit.html doc/html/boost/units/temperature_base_dimension.html doc/html/boost/units/time_base_dimension.html doc/html/boost/units/unary_minus_typeof_helper.html doc/html/boost/units/unary_plus_typeof_helper.html doc/html/boost/units/unit.html doc/html/boost/units/us/pint_base_unit.html doc/html/boost/units/us/pound_base_unit.html doc/html/boost/units/us/pound_force_base_unit.html doc/html/boost/units/us/yard_base_unit.html doc/html/boost/unordered_map.html doc/html/boost/unordered_multimap.html doc/html/boost/unordered_multiset.html doc/html/boost/unordered_set.html doc/html/boost/unwrap_recursive_wrapper.html doc/html/boost/unwrap_reference.html doc/html/boost/variant.html doc/html/boost/variate_generator.html doc/html/boost/visit_each.html doc/html/boost/visitor_ptr.html doc/html/boost/visitor_ptr_t.html doc/html/boost/xpressive/_.html doc/html/boost/xpressive/_b.html doc/html/boost/xpressive/_d.html doc/html/boost/xpressive/_ln.html doc/html/boost/xpressive/_n.html doc/html/boost/xpressive/_s.html doc/html/boost/xpressive/_w.html doc/html/boost/xpressive/a1.html doc/html/boost/xpressive/a2.html doc/html/boost/xpressive/a3.html doc/html/boost/xpressive/a4.html doc/html/boost/xpressive/a5.html doc/html/boost/xpressive/a6.html doc/html/boost/xpressive/a7.html doc/html/boost/xpressive/a8.html doc/html/boost/xpressive/a9.html doc/html/boost/xpressive/after.html doc/html/boost/xpressive/alnum.html doc/html/boost/xpressive/alpha.html doc/html/boost/xpressive/as_idp155451296.html doc/html/boost/xpressive/as_xpr.html doc/html/boost/xpressive/at.html doc/html/boost/xpressive/back.html doc/html/boost/xpressive/basic_regex.html doc/html/boost/xpressive/before.html doc/html/boost/xpressive/blank.html doc/html/boost/xpressive/bol.html doc/html/boost/xpressive/bos.html doc/html/boost/xpressive/bow.html doc/html/boost/xpressive/by_ref.html doc/html/boost/xpressive/c_regex_traits.html doc/html/boost/xpressive/check.html doc/html/boost/xpressive/cntrl.html doc/html/boost/xpressive/compiler_traits.html doc/html/boost/xpressive/const_cast_idp155456208.html doc/html/boost/xpressive/cpp_regex_traits.html doc/html/boost/xpressive/cref_idp155460720.html doc/html/boost/xpressive/digit.html doc/html/boost/xpressive/dynamic_cast_idp155454576.html doc/html/boost/xpressive/eol.html doc/html/boost/xpressive/eos.html doc/html/boost/xpressive/eow.html doc/html/boost/xpressive/first.html doc/html/boost/xpressive/front.html doc/html/boost/xpressive/function.html doc/html/boost/xpressive/graph.html doc/html/boost/xpressive/has_fold_case.html doc/html/boost/xpressive/icase.html doc/html/boost/xpressive/imbue.html doc/html/boost/xpressive/inf.html doc/html/boost/xpressive/insert.html doc/html/boost/xpressive/keep.html doc/html/boost/xpressive/length.html doc/html/boost/xpressive/let.html doc/html/boost/xpressive/local.html doc/html/boost/xpressive/lower.html doc/html/boost/xpressive/make_pair.html doc/html/boost/xpressive/mark_tag.html doc/html/boost/xpressive/match_results.html doc/html/boost/xpressive/matched.html doc/html/boost/xpressive/nil.html doc/html/boost/xpressive/null_regex_traits.html doc/html/boost/xpressive/op/as.html doc/html/boost/xpressive/op/at.html doc/html/boost/xpressive/op/back.html doc/html/boost/xpressive/op/const_cast_.html doc/html/boost/xpressive/op/construct.html doc/html/boost/xpressive/op/dynamic_cast_.html doc/html/boost/xpressive/op/first.html doc/html/boost/xpressive/op/front.html doc/html/boost/xpressive/op/insert.html doc/html/boost/xpressive/op/length.html doc/html/boost/xpressive/op/make_pair.html doc/html/boost/xpressive/op/matched.html doc/html/boost/xpressive/op/pop.html doc/html/boost/xpressive/op/pop_back.html doc/html/boost/xpressive/op/pop_front.html doc/html/boost/xpressive/op/push.html doc/html/boost/xpressive/op/push_back.html doc/html/boost/xpressive/op/push_front.html doc/html/boost/xpressive/op/second.html doc/html/boost/xpressive/op/static_cast_.html doc/html/boost/xpressive/op/str.html doc/html/boost/xpressive/op/throw_.html doc/html/boost/xpressive/op/top.html doc/html/boost/xpressive/op/unwrap_reference.html doc/html/boost/xpressive/operator_idp155805136.html doc/html/boost/xpressive/optional_idp155721312.html doc/html/boost/xpressive/placeholder.html doc/html/boost/xpressive/pop.html doc/html/boost/xpressive/pop_back.html doc/html/boost/xpressive/pop_front.html doc/html/boost/xpressive/print.html doc/html/boost/xpressive/punct.html doc/html/boost/xpressive/push.html doc/html/boost/xpressive/push_back.html doc/html/boost/xpressive/push_front.html doc/html/boost/xpressive/range.html doc/html/boost/xpressive/range_begin.html doc/html/boost/xpressive/range_end.html doc/html/boost/xpressive/ref_idp155459280.html doc/html/boost/xpressive/reference.html doc/html/boost/xpressive/regex_compiler.html doc/html/boost/xpressive/regex_constants/error_type.html doc/html/boost/xpressive/regex_constants/match_flag_type.html doc/html/boost/xpressive/regex_constants/syntax_option_type.html doc/html/boost/xpressive/regex_error.html doc/html/boost/xpressive/regex_id_filter_predicate.html doc/html/boost/xpressive/regex_iterator.html doc/html/boost/xpressive/regex_match.html doc/html/boost/xpressive/regex_replace.html doc/html/boost/xpressive/regex_search.html doc/html/boost/xpressive/regex_token_iterator.html doc/html/boost/xpressive/regex_traits.html doc/html/boost/xpressive/regex_traits_version_1_tag.html doc/html/boost/xpressive/regex_traits_version_2_tag.html doc/html/boost/xpressive/repeat_idp155723136.html doc/html/boost/xpressive/s0.html doc/html/boost/xpressive/s1.html doc/html/boost/xpressive/s2.html doc/html/boost/xpressive/s3.html doc/html/boost/xpressive/s4.html doc/html/boost/xpressive/s5.html doc/html/boost/xpressive/s6.html doc/html/boost/xpressive/s7.html doc/html/boost/xpressive/s8.html doc/html/boost/xpressive/s9.html doc/html/boost/xpressive/second.html doc/html/boost/xpressive/self.html doc/html/boost/xpressive/set.html doc/html/boost/xpressive/skip.html doc/html/boost/xpressive/space.html doc/html/boost/xpressive/static_cast_idp155452944.html doc/html/boost/xpressive/str.html doc/html/boost/xpressive/sub_match.html doc/html/boost/xpressive/swap_idp155230464.html doc/html/boost/xpressive/top.html doc/html/boost/xpressive/unwrap_reference.html doc/html/boost/xpressive/upper.html doc/html/boost/xpressive/val.html doc/html/boost/xpressive/value.html doc/html/boost/xpressive/xdigit.html doc/html/boost_asio.html doc/html/boost_asio/examples.html doc/html/boost_asio/examples/cpp03_examples.html doc/html/boost_asio/examples/cpp11_examples.html doc/html/boost_asio/history.html doc/html/boost_asio/index.html doc/html/boost_asio/overview.html doc/html/boost_asio/overview/core.html doc/html/boost_asio/overview/core/allocation.html doc/html/boost_asio/overview/core/async.html doc/html/boost_asio/overview/core/basics.html doc/html/boost_asio/overview/core/buffers.html doc/html/boost_asio/overview/core/coroutine.html doc/html/boost_asio/overview/core/handler_tracking.html doc/html/boost_asio/overview/core/line_based.html doc/html/boost_asio/overview/core/reactor.html doc/html/boost_asio/overview/core/spawn.html doc/html/boost_asio/overview/core/strands.html doc/html/boost_asio/overview/core/streams.html doc/html/boost_asio/overview/core/threads.html doc/html/boost_asio/overview/cpp2011.html doc/html/boost_asio/overview/cpp2011/array.html doc/html/boost_asio/overview/cpp2011/atomic.html doc/html/boost_asio/overview/cpp2011/chrono.html doc/html/boost_asio/overview/cpp2011/futures.html doc/html/boost_asio/overview/cpp2011/move_handlers.html doc/html/boost_asio/overview/cpp2011/move_objects.html doc/html/boost_asio/overview/cpp2011/shared_ptr.html doc/html/boost_asio/overview/cpp2011/variadic.html doc/html/boost_asio/overview/implementation.html doc/html/boost_asio/overview/networking.html doc/html/boost_asio/overview/networking/bsd_sockets.html doc/html/boost_asio/overview/networking/iostreams.html doc/html/boost_asio/overview/networking/other_protocols.html doc/html/boost_asio/overview/networking/protocols.html doc/html/boost_asio/overview/posix.html doc/html/boost_asio/overview/posix/fork.html doc/html/boost_asio/overview/posix/local.html doc/html/boost_asio/overview/posix/stream_descriptor.html doc/html/boost_asio/overview/rationale.html doc/html/boost_asio/overview/serial_ports.html doc/html/boost_asio/overview/signals.html doc/html/boost_asio/overview/ssl.html doc/html/boost_asio/overview/timers.html doc/html/boost_asio/overview/windows.html doc/html/boost_asio/overview/windows/object_handle.html doc/html/boost_asio/overview/windows/random_access_handle.html doc/html/boost_asio/overview/windows/stream_handle.html doc/html/boost_asio/reference.html doc/html/boost_asio/reference/AcceptHandler.html doc/html/boost_asio/reference/AsyncRandomAccessReadDevice.html doc/html/boost_asio/reference/AsyncRandomAccessWriteDevice.html doc/html/boost_asio/reference/AsyncReadStream.html doc/html/boost_asio/reference/AsyncWriteStream.html doc/html/boost_asio/reference/BufferedHandshakeHandler.html doc/html/boost_asio/reference/CompletionHandler.html doc/html/boost_asio/reference/ComposedConnectHandler.html doc/html/boost_asio/reference/ConnectHandler.html doc/html/boost_asio/reference/ConstBufferSequence.html doc/html/boost_asio/reference/ConvertibleToConstBuffer.html doc/html/boost_asio/reference/ConvertibleToMutableBuffer.html doc/html/boost_asio/reference/DatagramSocketService.html doc/html/boost_asio/reference/DescriptorService.html doc/html/boost_asio/reference/Endpoint.html doc/html/boost_asio/reference/GettableSerialPortOption.html doc/html/boost_asio/reference/GettableSocketOption.html doc/html/boost_asio/reference/HandleService.html doc/html/boost_asio/reference/Handler.html doc/html/boost_asio/reference/HandshakeHandler.html doc/html/boost_asio/reference/InternetProtocol.html doc/html/boost_asio/reference/IoControlCommand.html doc/html/boost_asio/reference/IoObjectService.html doc/html/boost_asio/reference/MutableBufferSequence.html doc/html/boost_asio/reference/ObjectHandleService.html doc/html/boost_asio/reference/Protocol.html doc/html/boost_asio/reference/RandomAccessHandleService.html doc/html/boost_asio/reference/RawSocketService.html doc/html/boost_asio/reference/ReadHandler.html doc/html/boost_asio/reference/ResolveHandler.html doc/html/boost_asio/reference/ResolverService.html doc/html/boost_asio/reference/SeqPacketSocketService.html doc/html/boost_asio/reference/SerialPortService.html doc/html/boost_asio/reference/Service.html doc/html/boost_asio/reference/SettableSerialPortOption.html doc/html/boost_asio/reference/SettableSocketOption.html doc/html/boost_asio/reference/ShutdownHandler.html doc/html/boost_asio/reference/SignalHandler.html doc/html/boost_asio/reference/SignalSetService.html doc/html/boost_asio/reference/SocketAcceptorService.html doc/html/boost_asio/reference/SocketService.html doc/html/boost_asio/reference/StreamDescriptorService.html doc/html/boost_asio/reference/StreamHandleService.html doc/html/boost_asio/reference/StreamSocketService.html doc/html/boost_asio/reference/SyncRandomAccessReadDevice.html doc/html/boost_asio/reference/SyncRandomAccessWriteDevice.html doc/html/boost_asio/reference/SyncReadStream.html doc/html/boost_asio/reference/SyncWriteStream.html doc/html/boost_asio/reference/TimeTraits.html doc/html/boost_asio/reference/TimerService.html doc/html/boost_asio/reference/WaitHandler.html doc/html/boost_asio/reference/WaitTraits.html doc/html/boost_asio/reference/WaitableTimerService.html doc/html/boost_asio/reference/WriteHandler.html doc/html/boost_asio/reference/add_service.html doc/html/boost_asio/reference/asio_handler_allocate.html doc/html/boost_asio/reference/asio_handler_deallocate.html doc/html/boost_asio/reference/asio_handler_invoke.html doc/html/boost_asio/reference/asio_handler_is_continuation.html doc/html/boost_asio/reference/async_connect.html doc/html/boost_asio/reference/async_read.html doc/html/boost_asio/reference/async_read_at.html doc/html/boost_asio/reference/async_read_until.html doc/html/boost_asio/reference/async_result.html doc/html/boost_asio/reference/async_result/async_result.html doc/html/boost_asio/reference/async_result/get.html doc/html/boost_asio/reference/async_result/type.html doc/html/boost_asio/reference/async_write.html doc/html/boost_asio/reference/async_write_at.html doc/html/boost_asio/reference/asynchronous_operations.html doc/html/boost_asio/reference/basic_datagram_socket.html doc/html/boost_asio/reference/basic_datagram_socket/assign.html doc/html/boost_asio/reference/basic_datagram_socket/async_connect.html doc/html/boost_asio/reference/basic_datagram_socket/async_receive.html doc/html/boost_asio/reference/basic_datagram_socket/async_receive_from.html doc/html/boost_asio/reference/basic_datagram_socket/async_send.html doc/html/boost_asio/reference/basic_datagram_socket/async_send_to.html doc/html/boost_asio/reference/basic_datagram_socket/at_mark.html doc/html/boost_asio/reference/basic_datagram_socket/available.html doc/html/boost_asio/reference/basic_datagram_socket/basic_datagram_socket.html doc/html/boost_asio/reference/basic_datagram_socket/bind.html doc/html/boost_asio/reference/basic_datagram_socket/broadcast.html doc/html/boost_asio/reference/basic_datagram_socket/bytes_readable.html doc/html/boost_asio/reference/basic_datagram_socket/cancel.html doc/html/boost_asio/reference/basic_datagram_socket/close.html doc/html/boost_asio/reference/basic_datagram_socket/connect.html doc/html/boost_asio/reference/basic_datagram_socket/debug.html doc/html/boost_asio/reference/basic_datagram_socket/do_not_route.html doc/html/boost_asio/reference/basic_datagram_socket/enable_connection_aborted.html doc/html/boost_asio/reference/basic_datagram_socket/endpoint_type.html doc/html/boost_asio/reference/basic_datagram_socket/get_implementation.html doc/html/boost_asio/reference/basic_datagram_socket/get_io_service.html doc/html/boost_asio/reference/basic_datagram_socket/get_option.html doc/html/boost_asio/reference/basic_datagram_socket/get_service.html doc/html/boost_asio/reference/basic_datagram_socket/implementation.html doc/html/boost_asio/reference/basic_datagram_socket/implementation_type.html doc/html/boost_asio/reference/basic_datagram_socket/io_control.html doc/html/boost_asio/reference/basic_datagram_socket/is_open.html doc/html/boost_asio/reference/basic_datagram_socket/keep_alive.html doc/html/boost_asio/reference/basic_datagram_socket/linger.html doc/html/boost_asio/reference/basic_datagram_socket/local_endpoint.html doc/html/boost_asio/reference/basic_datagram_socket/lowest_layer.html doc/html/boost_asio/reference/basic_datagram_socket/lowest_layer_type.html doc/html/boost_asio/reference/basic_datagram_socket/max_connections.html doc/html/boost_asio/reference/basic_datagram_socket/message_do_not_route.html doc/html/boost_asio/reference/basic_datagram_socket/message_end_of_record.html doc/html/boost_asio/reference/basic_datagram_socket/message_flags.html doc/html/boost_asio/reference/basic_datagram_socket/message_out_of_band.html doc/html/boost_asio/reference/basic_datagram_socket/message_peek.html doc/html/boost_asio/reference/basic_datagram_socket/native.html doc/html/boost_asio/reference/basic_datagram_socket/native_handle.html doc/html/boost_asio/reference/basic_datagram_socket/native_handle_type.html doc/html/boost_asio/reference/basic_datagram_socket/native_non_blocking.html doc/html/boost_asio/reference/basic_datagram_socket/native_type.html doc/html/boost_asio/reference/basic_datagram_socket/non_blocking.html doc/html/boost_asio/reference/basic_datagram_socket/non_blocking_io.html doc/html/boost_asio/reference/basic_datagram_socket/open.html doc/html/boost_asio/reference/basic_datagram_socket/operator_eq_.html doc/html/boost_asio/reference/basic_datagram_socket/protocol_type.html doc/html/boost_asio/reference/basic_datagram_socket/receive.html doc/html/boost_asio/reference/basic_datagram_socket/receive_buffer_size.html doc/html/boost_asio/reference/basic_datagram_socket/receive_from.html doc/html/boost_asio/reference/basic_datagram_socket/receive_low_watermark.html doc/html/boost_asio/reference/basic_datagram_socket/remote_endpoint.html doc/html/boost_asio/reference/basic_datagram_socket/reuse_address.html doc/html/boost_asio/reference/basic_datagram_socket/send.html doc/html/boost_asio/reference/basic_datagram_socket/send_buffer_size.html doc/html/boost_asio/reference/basic_datagram_socket/send_low_watermark.html doc/html/boost_asio/reference/basic_datagram_socket/send_to.html doc/html/boost_asio/reference/basic_datagram_socket/service.html doc/html/boost_asio/reference/basic_datagram_socket/service_type.html doc/html/boost_asio/reference/basic_datagram_socket/set_option.html doc/html/boost_asio/reference/basic_datagram_socket/shutdown.html doc/html/boost_asio/reference/basic_datagram_socket/shutdown_type.html doc/html/boost_asio/reference/basic_deadline_timer.html doc/html/boost_asio/reference/basic_deadline_timer/async_wait.html doc/html/boost_asio/reference/basic_deadline_timer/basic_deadline_timer.html doc/html/boost_asio/reference/basic_deadline_timer/cancel.html doc/html/boost_asio/reference/basic_deadline_timer/cancel_one.html doc/html/boost_asio/reference/basic_deadline_timer/duration_type.html doc/html/boost_asio/reference/basic_deadline_timer/expires_at.html doc/html/boost_asio/reference/basic_deadline_timer/expires_from_now.html doc/html/boost_asio/reference/basic_deadline_timer/get_implementation.html doc/html/boost_asio/reference/basic_deadline_timer/get_io_service.html doc/html/boost_asio/reference/basic_deadline_timer/get_service.html doc/html/boost_asio/reference/basic_deadline_timer/implementation.html doc/html/boost_asio/reference/basic_deadline_timer/implementation_type.html doc/html/boost_asio/reference/basic_deadline_timer/service.html doc/html/boost_asio/reference/basic_deadline_timer/service_type.html doc/html/boost_asio/reference/basic_deadline_timer/time_type.html doc/html/boost_asio/reference/basic_deadline_timer/traits_type.html doc/html/boost_asio/reference/basic_deadline_timer/wait.html doc/html/boost_asio/reference/basic_io_object.html doc/html/boost_asio/reference/basic_io_object/_basic_io_object.html doc/html/boost_asio/reference/basic_io_object/basic_io_object.html doc/html/boost_asio/reference/basic_io_object/get_implementation.html doc/html/boost_asio/reference/basic_io_object/get_io_service.html doc/html/boost_asio/reference/basic_io_object/get_service.html doc/html/boost_asio/reference/basic_io_object/implementation.html doc/html/boost_asio/reference/basic_io_object/implementation_type.html doc/html/boost_asio/reference/basic_io_object/operator_eq_.html doc/html/boost_asio/reference/basic_io_object/service.html doc/html/boost_asio/reference/basic_io_object/service_type.html doc/html/boost_asio/reference/basic_raw_socket.html doc/html/boost_asio/reference/basic_raw_socket/assign.html doc/html/boost_asio/reference/basic_raw_socket/async_connect.html doc/html/boost_asio/reference/basic_raw_socket/async_receive.html doc/html/boost_asio/reference/basic_raw_socket/async_receive_from.html doc/html/boost_asio/reference/basic_raw_socket/async_send.html doc/html/boost_asio/reference/basic_raw_socket/async_send_to.html doc/html/boost_asio/reference/basic_raw_socket/at_mark.html doc/html/boost_asio/reference/basic_raw_socket/available.html doc/html/boost_asio/reference/basic_raw_socket/basic_raw_socket.html doc/html/boost_asio/reference/basic_raw_socket/bind.html doc/html/boost_asio/reference/basic_raw_socket/broadcast.html doc/html/boost_asio/reference/basic_raw_socket/bytes_readable.html doc/html/boost_asio/reference/basic_raw_socket/cancel.html doc/html/boost_asio/reference/basic_raw_socket/close.html doc/html/boost_asio/reference/basic_raw_socket/connect.html doc/html/boost_asio/reference/basic_raw_socket/debug.html doc/html/boost_asio/reference/basic_raw_socket/do_not_route.html doc/html/boost_asio/reference/basic_raw_socket/enable_connection_aborted.html doc/html/boost_asio/reference/basic_raw_socket/endpoint_type.html doc/html/boost_asio/reference/basic_raw_socket/get_implementation.html doc/html/boost_asio/reference/basic_raw_socket/get_io_service.html doc/html/boost_asio/reference/basic_raw_socket/get_option.html doc/html/boost_asio/reference/basic_raw_socket/get_service.html doc/html/boost_asio/reference/basic_raw_socket/implementation.html doc/html/boost_asio/reference/basic_raw_socket/implementation_type.html doc/html/boost_asio/reference/basic_raw_socket/io_control.html doc/html/boost_asio/reference/basic_raw_socket/is_open.html doc/html/boost_asio/reference/basic_raw_socket/keep_alive.html doc/html/boost_asio/reference/basic_raw_socket/linger.html doc/html/boost_asio/reference/basic_raw_socket/local_endpoint.html doc/html/boost_asio/reference/basic_raw_socket/lowest_layer.html doc/html/boost_asio/reference/basic_raw_socket/lowest_layer_type.html doc/html/boost_asio/reference/basic_raw_socket/max_connections.html doc/html/boost_asio/reference/basic_raw_socket/message_do_not_route.html doc/html/boost_asio/reference/basic_raw_socket/message_end_of_record.html doc/html/boost_asio/reference/basic_raw_socket/message_flags.html doc/html/boost_asio/reference/basic_raw_socket/message_out_of_band.html doc/html/boost_asio/reference/basic_raw_socket/message_peek.html doc/html/boost_asio/reference/basic_raw_socket/native.html doc/html/boost_asio/reference/basic_raw_socket/native_handle.html doc/html/boost_asio/reference/basic_raw_socket/native_handle_type.html doc/html/boost_asio/reference/basic_raw_socket/native_non_blocking.html doc/html/boost_asio/reference/basic_raw_socket/native_type.html doc/html/boost_asio/reference/basic_raw_socket/non_blocking.html doc/html/boost_asio/reference/basic_raw_socket/non_blocking_io.html doc/html/boost_asio/reference/basic_raw_socket/open.html doc/html/boost_asio/reference/basic_raw_socket/operator_eq_.html doc/html/boost_asio/reference/basic_raw_socket/protocol_type.html doc/html/boost_asio/reference/basic_raw_socket/receive.html doc/html/boost_asio/reference/basic_raw_socket/receive_buffer_size.html doc/html/boost_asio/reference/basic_raw_socket/receive_from.html doc/html/boost_asio/reference/basic_raw_socket/receive_low_watermark.html doc/html/boost_asio/reference/basic_raw_socket/remote_endpoint.html doc/html/boost_asio/reference/basic_raw_socket/reuse_address.html doc/html/boost_asio/reference/basic_raw_socket/send.html doc/html/boost_asio/reference/basic_raw_socket/send_buffer_size.html doc/html/boost_asio/reference/basic_raw_socket/send_low_watermark.html doc/html/boost_asio/reference/basic_raw_socket/send_to.html doc/html/boost_asio/reference/basic_raw_socket/service.html doc/html/boost_asio/reference/basic_raw_socket/service_type.html doc/html/boost_asio/reference/basic_raw_socket/set_option.html doc/html/boost_asio/reference/basic_raw_socket/shutdown.html doc/html/boost_asio/reference/basic_raw_socket/shutdown_type.html doc/html/boost_asio/reference/basic_seq_packet_socket.html doc/html/boost_asio/reference/basic_seq_packet_socket/assign.html doc/html/boost_asio/reference/basic_seq_packet_socket/async_connect.html doc/html/boost_asio/reference/basic_seq_packet_socket/async_receive.html doc/html/boost_asio/reference/basic_seq_packet_socket/async_send.html doc/html/boost_asio/reference/basic_seq_packet_socket/at_mark.html doc/html/boost_asio/reference/basic_seq_packet_socket/available.html doc/html/boost_asio/reference/basic_seq_packet_socket/basic_seq_packet_socket.html doc/html/boost_asio/reference/basic_seq_packet_socket/bind.html doc/html/boost_asio/reference/basic_seq_packet_socket/broadcast.html doc/html/boost_asio/reference/basic_seq_packet_socket/bytes_readable.html doc/html/boost_asio/reference/basic_seq_packet_socket/cancel.html doc/html/boost_asio/reference/basic_seq_packet_socket/close.html doc/html/boost_asio/reference/basic_seq_packet_socket/connect.html doc/html/boost_asio/reference/basic_seq_packet_socket/debug.html doc/html/boost_asio/reference/basic_seq_packet_socket/do_not_route.html doc/html/boost_asio/reference/basic_seq_packet_socket/enable_connection_aborted.html doc/html/boost_asio/reference/basic_seq_packet_socket/endpoint_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/get_implementation.html doc/html/boost_asio/reference/basic_seq_packet_socket/get_io_service.html doc/html/boost_asio/reference/basic_seq_packet_socket/get_option.html doc/html/boost_asio/reference/basic_seq_packet_socket/get_service.html doc/html/boost_asio/reference/basic_seq_packet_socket/implementation.html doc/html/boost_asio/reference/basic_seq_packet_socket/implementation_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/io_control.html doc/html/boost_asio/reference/basic_seq_packet_socket/is_open.html doc/html/boost_asio/reference/basic_seq_packet_socket/keep_alive.html doc/html/boost_asio/reference/basic_seq_packet_socket/linger.html doc/html/boost_asio/reference/basic_seq_packet_socket/local_endpoint.html doc/html/boost_asio/reference/basic_seq_packet_socket/lowest_layer.html doc/html/boost_asio/reference/basic_seq_packet_socket/lowest_layer_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/max_connections.html doc/html/boost_asio/reference/basic_seq_packet_socket/message_do_not_route.html doc/html/boost_asio/reference/basic_seq_packet_socket/message_end_of_record.html doc/html/boost_asio/reference/basic_seq_packet_socket/message_flags.html doc/html/boost_asio/reference/basic_seq_packet_socket/message_out_of_band.html doc/html/boost_asio/reference/basic_seq_packet_socket/message_peek.html doc/html/boost_asio/reference/basic_seq_packet_socket/native.html doc/html/boost_asio/reference/basic_seq_packet_socket/native_handle.html doc/html/boost_asio/reference/basic_seq_packet_socket/native_handle_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/native_non_blocking.html doc/html/boost_asio/reference/basic_seq_packet_socket/native_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/non_blocking.html doc/html/boost_asio/reference/basic_seq_packet_socket/non_blocking_io.html doc/html/boost_asio/reference/basic_seq_packet_socket/open.html doc/html/boost_asio/reference/basic_seq_packet_socket/operator_eq_.html doc/html/boost_asio/reference/basic_seq_packet_socket/protocol_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/receive.html doc/html/boost_asio/reference/basic_seq_packet_socket/receive_buffer_size.html doc/html/boost_asio/reference/basic_seq_packet_socket/receive_low_watermark.html doc/html/boost_asio/reference/basic_seq_packet_socket/remote_endpoint.html doc/html/boost_asio/reference/basic_seq_packet_socket/reuse_address.html doc/html/boost_asio/reference/basic_seq_packet_socket/send.html doc/html/boost_asio/reference/basic_seq_packet_socket/send_buffer_size.html doc/html/boost_asio/reference/basic_seq_packet_socket/send_low_watermark.html doc/html/boost_asio/reference/basic_seq_packet_socket/service.html doc/html/boost_asio/reference/basic_seq_packet_socket/service_type.html doc/html/boost_asio/reference/basic_seq_packet_socket/set_option.html doc/html/boost_asio/reference/basic_seq_packet_socket/shutdown.html doc/html/boost_asio/reference/basic_seq_packet_socket/shutdown_type.html doc/html/boost_asio/reference/basic_serial_port.html doc/html/boost_asio/reference/basic_serial_port/assign.html doc/html/boost_asio/reference/basic_serial_port/async_read_some.html doc/html/boost_asio/reference/basic_serial_port/async_write_some.html doc/html/boost_asio/reference/basic_serial_port/basic_serial_port.html doc/html/boost_asio/reference/basic_serial_port/cancel.html doc/html/boost_asio/reference/basic_serial_port/close.html doc/html/boost_asio/reference/basic_serial_port/get_implementation.html doc/html/boost_asio/reference/basic_serial_port/get_io_service.html doc/html/boost_asio/reference/basic_serial_port/get_option.html doc/html/boost_asio/reference/basic_serial_port/get_service.html doc/html/boost_asio/reference/basic_serial_port/implementation.html doc/html/boost_asio/reference/basic_serial_port/implementation_type.html doc/html/boost_asio/reference/basic_serial_port/is_open.html doc/html/boost_asio/reference/basic_serial_port/lowest_layer.html doc/html/boost_asio/reference/basic_serial_port/lowest_layer_type.html doc/html/boost_asio/reference/basic_serial_port/native.html doc/html/boost_asio/reference/basic_serial_port/native_handle.html doc/html/boost_asio/reference/basic_serial_port/native_handle_type.html doc/html/boost_asio/reference/basic_serial_port/native_type.html doc/html/boost_asio/reference/basic_serial_port/open.html doc/html/boost_asio/reference/basic_serial_port/operator_eq_.html doc/html/boost_asio/reference/basic_serial_port/read_some.html doc/html/boost_asio/reference/basic_serial_port/send_break.html doc/html/boost_asio/reference/basic_serial_port/service.html doc/html/boost_asio/reference/basic_serial_port/service_type.html doc/html/boost_asio/reference/basic_serial_port/set_option.html doc/html/boost_asio/reference/basic_serial_port/write_some.html doc/html/boost_asio/reference/basic_signal_set.html doc/html/boost_asio/reference/basic_signal_set/add.html doc/html/boost_asio/reference/basic_signal_set/async_wait.html doc/html/boost_asio/reference/basic_signal_set/basic_signal_set.html doc/html/boost_asio/reference/basic_signal_set/cancel.html doc/html/boost_asio/reference/basic_signal_set/clear.html doc/html/boost_asio/reference/basic_signal_set/get_implementation.html doc/html/boost_asio/reference/basic_signal_set/get_io_service.html doc/html/boost_asio/reference/basic_signal_set/get_service.html doc/html/boost_asio/reference/basic_signal_set/implementation.html doc/html/boost_asio/reference/basic_signal_set/implementation_type.html doc/html/boost_asio/reference/basic_signal_set/remove.html doc/html/boost_asio/reference/basic_signal_set/service.html doc/html/boost_asio/reference/basic_signal_set/service_type.html doc/html/boost_asio/reference/basic_socket.html doc/html/boost_asio/reference/basic_socket/_basic_socket.html doc/html/boost_asio/reference/basic_socket/assign.html doc/html/boost_asio/reference/basic_socket/async_connect.html doc/html/boost_asio/reference/basic_socket/at_mark.html doc/html/boost_asio/reference/basic_socket/available.html doc/html/boost_asio/reference/basic_socket/basic_socket.html doc/html/boost_asio/reference/basic_socket/bind.html doc/html/boost_asio/reference/basic_socket/broadcast.html doc/html/boost_asio/reference/basic_socket/bytes_readable.html doc/html/boost_asio/reference/basic_socket/cancel.html doc/html/boost_asio/reference/basic_socket/close.html doc/html/boost_asio/reference/basic_socket/connect.html doc/html/boost_asio/reference/basic_socket/debug.html doc/html/boost_asio/reference/basic_socket/do_not_route.html doc/html/boost_asio/reference/basic_socket/enable_connection_aborted.html doc/html/boost_asio/reference/basic_socket/endpoint_type.html doc/html/boost_asio/reference/basic_socket/get_implementation.html doc/html/boost_asio/reference/basic_socket/get_io_service.html doc/html/boost_asio/reference/basic_socket/get_option.html doc/html/boost_asio/reference/basic_socket/get_service.html doc/html/boost_asio/reference/basic_socket/implementation.html doc/html/boost_asio/reference/basic_socket/implementation_type.html doc/html/boost_asio/reference/basic_socket/io_control.html doc/html/boost_asio/reference/basic_socket/is_open.html doc/html/boost_asio/reference/basic_socket/keep_alive.html doc/html/boost_asio/reference/basic_socket/linger.html doc/html/boost_asio/reference/basic_socket/local_endpoint.html doc/html/boost_asio/reference/basic_socket/lowest_layer.html doc/html/boost_asio/reference/basic_socket/lowest_layer_type.html doc/html/boost_asio/reference/basic_socket/max_connections.html doc/html/boost_asio/reference/basic_socket/message_do_not_route.html doc/html/boost_asio/reference/basic_socket/message_end_of_record.html doc/html/boost_asio/reference/basic_socket/message_flags.html doc/html/boost_asio/reference/basic_socket/message_out_of_band.html doc/html/boost_asio/reference/basic_socket/message_peek.html doc/html/boost_asio/reference/basic_socket/native.html doc/html/boost_asio/reference/basic_socket/native_handle.html doc/html/boost_asio/reference/basic_socket/native_handle_type.html doc/html/boost_asio/reference/basic_socket/native_non_blocking.html doc/html/boost_asio/reference/basic_socket/native_type.html doc/html/boost_asio/reference/basic_socket/non_blocking.html doc/html/boost_asio/reference/basic_socket/non_blocking_io.html doc/html/boost_asio/reference/basic_socket/open.html doc/html/boost_asio/reference/basic_socket/operator_eq_.html doc/html/boost_asio/reference/basic_socket/protocol_type.html doc/html/boost_asio/reference/basic_socket/receive_buffer_size.html doc/html/boost_asio/reference/basic_socket/receive_low_watermark.html doc/html/boost_asio/reference/basic_socket/remote_endpoint.html doc/html/boost_asio/reference/basic_socket/reuse_address.html doc/html/boost_asio/reference/basic_socket/send_buffer_size.html doc/html/boost_asio/reference/basic_socket/send_low_watermark.html doc/html/boost_asio/reference/basic_socket/service.html doc/html/boost_asio/reference/basic_socket/service_type.html doc/html/boost_asio/reference/basic_socket/set_option.html doc/html/boost_asio/reference/basic_socket/shutdown.html doc/html/boost_asio/reference/basic_socket/shutdown_type.html doc/html/boost_asio/reference/basic_socket_acceptor.html doc/html/boost_asio/reference/basic_socket_acceptor/accept.html doc/html/boost_asio/reference/basic_socket_acceptor/assign.html doc/html/boost_asio/reference/basic_socket_acceptor/async_accept.html doc/html/boost_asio/reference/basic_socket_acceptor/basic_socket_acceptor.html doc/html/boost_asio/reference/basic_socket_acceptor/bind.html doc/html/boost_asio/reference/basic_socket_acceptor/broadcast.html doc/html/boost_asio/reference/basic_socket_acceptor/bytes_readable.html doc/html/boost_asio/reference/basic_socket_acceptor/cancel.html doc/html/boost_asio/reference/basic_socket_acceptor/close.html doc/html/boost_asio/reference/basic_socket_acceptor/debug.html doc/html/boost_asio/reference/basic_socket_acceptor/do_not_route.html doc/html/boost_asio/reference/basic_socket_acceptor/enable_connection_aborted.html doc/html/boost_asio/reference/basic_socket_acceptor/endpoint_type.html doc/html/boost_asio/reference/basic_socket_acceptor/get_implementation.html doc/html/boost_asio/reference/basic_socket_acceptor/get_io_service.html doc/html/boost_asio/reference/basic_socket_acceptor/get_option.html doc/html/boost_asio/reference/basic_socket_acceptor/get_service.html doc/html/boost_asio/reference/basic_socket_acceptor/implementation.html doc/html/boost_asio/reference/basic_socket_acceptor/implementation_type.html doc/html/boost_asio/reference/basic_socket_acceptor/io_control.html doc/html/boost_asio/reference/basic_socket_acceptor/is_open.html doc/html/boost_asio/reference/basic_socket_acceptor/keep_alive.html doc/html/boost_asio/reference/basic_socket_acceptor/linger.html doc/html/boost_asio/reference/basic_socket_acceptor/listen.html doc/html/boost_asio/reference/basic_socket_acceptor/local_endpoint.html doc/html/boost_asio/reference/basic_socket_acceptor/max_connections.html doc/html/boost_asio/reference/basic_socket_acceptor/message_do_not_route.html doc/html/boost_asio/reference/basic_socket_acceptor/message_end_of_record.html doc/html/boost_asio/reference/basic_socket_acceptor/message_flags.html doc/html/boost_asio/reference/basic_socket_acceptor/message_out_of_band.html doc/html/boost_asio/reference/basic_socket_acceptor/message_peek.html doc/html/boost_asio/reference/basic_socket_acceptor/native.html doc/html/boost_asio/reference/basic_socket_acceptor/native_handle.html doc/html/boost_asio/reference/basic_socket_acceptor/native_handle_type.html doc/html/boost_asio/reference/basic_socket_acceptor/native_non_blocking.html doc/html/boost_asio/reference/basic_socket_acceptor/native_type.html doc/html/boost_asio/reference/basic_socket_acceptor/non_blocking.html doc/html/boost_asio/reference/basic_socket_acceptor/non_blocking_io.html doc/html/boost_asio/reference/basic_socket_acceptor/open.html doc/html/boost_asio/reference/basic_socket_acceptor/operator_eq_.html doc/html/boost_asio/reference/basic_socket_acceptor/protocol_type.html doc/html/boost_asio/reference/basic_socket_acceptor/receive_buffer_size.html doc/html/boost_asio/reference/basic_socket_acceptor/receive_low_watermark.html doc/html/boost_asio/reference/basic_socket_acceptor/reuse_address.html doc/html/boost_asio/reference/basic_socket_acceptor/send_buffer_size.html doc/html/boost_asio/reference/basic_socket_acceptor/send_low_watermark.html doc/html/boost_asio/reference/basic_socket_acceptor/service.html doc/html/boost_asio/reference/basic_socket_acceptor/service_type.html doc/html/boost_asio/reference/basic_socket_acceptor/set_option.html doc/html/boost_asio/reference/basic_socket_acceptor/shutdown_type.html doc/html/boost_asio/reference/basic_socket_iostream.html doc/html/boost_asio/reference/basic_socket_iostream/basic_socket_iostream.html doc/html/boost_asio/reference/basic_socket_iostream/close.html doc/html/boost_asio/reference/basic_socket_iostream/connect.html doc/html/boost_asio/reference/basic_socket_iostream/duration_type.html doc/html/boost_asio/reference/basic_socket_iostream/endpoint_type.html doc/html/boost_asio/reference/basic_socket_iostream/error.html doc/html/boost_asio/reference/basic_socket_iostream/expires_at.html doc/html/boost_asio/reference/basic_socket_iostream/expires_from_now.html doc/html/boost_asio/reference/basic_socket_iostream/rdbuf.html doc/html/boost_asio/reference/basic_socket_iostream/time_type.html doc/html/boost_asio/reference/basic_socket_streambuf.html doc/html/boost_asio/reference/basic_socket_streambuf/_basic_socket_streambuf.html doc/html/boost_asio/reference/basic_socket_streambuf/assign.html doc/html/boost_asio/reference/basic_socket_streambuf/async_connect.html doc/html/boost_asio/reference/basic_socket_streambuf/at_mark.html doc/html/boost_asio/reference/basic_socket_streambuf/available.html doc/html/boost_asio/reference/basic_socket_streambuf/basic_socket_streambuf.html doc/html/boost_asio/reference/basic_socket_streambuf/bind.html doc/html/boost_asio/reference/basic_socket_streambuf/broadcast.html doc/html/boost_asio/reference/basic_socket_streambuf/bytes_readable.html doc/html/boost_asio/reference/basic_socket_streambuf/cancel.html doc/html/boost_asio/reference/basic_socket_streambuf/close.html doc/html/boost_asio/reference/basic_socket_streambuf/connect.html doc/html/boost_asio/reference/basic_socket_streambuf/debug.html doc/html/boost_asio/reference/basic_socket_streambuf/do_not_route.html doc/html/boost_asio/reference/basic_socket_streambuf/duration_type.html doc/html/boost_asio/reference/basic_socket_streambuf/enable_connection_aborted.html doc/html/boost_asio/reference/basic_socket_streambuf/endpoint_type.html doc/html/boost_asio/reference/basic_socket_streambuf/error.html doc/html/boost_asio/reference/basic_socket_streambuf/expires_at.html doc/html/boost_asio/reference/basic_socket_streambuf/expires_from_now.html doc/html/boost_asio/reference/basic_socket_streambuf/get_implementation.html doc/html/boost_asio/reference/basic_socket_streambuf/get_io_service.html doc/html/boost_asio/reference/basic_socket_streambuf/get_option.html doc/html/boost_asio/reference/basic_socket_streambuf/get_service.html doc/html/boost_asio/reference/basic_socket_streambuf/implementation.html doc/html/boost_asio/reference/basic_socket_streambuf/implementation_type.html doc/html/boost_asio/reference/basic_socket_streambuf/io_control.html doc/html/boost_asio/reference/basic_socket_streambuf/io_handler.html doc/html/boost_asio/reference/basic_socket_streambuf/is_open.html doc/html/boost_asio/reference/basic_socket_streambuf/keep_alive.html doc/html/boost_asio/reference/basic_socket_streambuf/linger.html doc/html/boost_asio/reference/basic_socket_streambuf/local_endpoint.html doc/html/boost_asio/reference/basic_socket_streambuf/lowest_layer.html doc/html/boost_asio/reference/basic_socket_streambuf/lowest_layer_type.html doc/html/boost_asio/reference/basic_socket_streambuf/max_connections.html doc/html/boost_asio/reference/basic_socket_streambuf/message_do_not_route.html doc/html/boost_asio/reference/basic_socket_streambuf/message_end_of_record.html doc/html/boost_asio/reference/basic_socket_streambuf/message_flags.html doc/html/boost_asio/reference/basic_socket_streambuf/message_out_of_band.html doc/html/boost_asio/reference/basic_socket_streambuf/message_peek.html doc/html/boost_asio/reference/basic_socket_streambuf/native.html doc/html/boost_asio/reference/basic_socket_streambuf/native_handle.html doc/html/boost_asio/reference/basic_socket_streambuf/native_handle_type.html doc/html/boost_asio/reference/basic_socket_streambuf/native_non_blocking.html doc/html/boost_asio/reference/basic_socket_streambuf/native_type.html doc/html/boost_asio/reference/basic_socket_streambuf/non_blocking.html doc/html/boost_asio/reference/basic_socket_streambuf/non_blocking_io.html doc/html/boost_asio/reference/basic_socket_streambuf/open.html doc/html/boost_asio/reference/basic_socket_streambuf/overflow.html doc/html/boost_asio/reference/basic_socket_streambuf/protocol_type.html doc/html/boost_asio/reference/basic_socket_streambuf/puberror.html doc/html/boost_asio/reference/basic_socket_streambuf/receive_buffer_size.html doc/html/boost_asio/reference/basic_socket_streambuf/receive_low_watermark.html doc/html/boost_asio/reference/basic_socket_streambuf/remote_endpoint.html doc/html/boost_asio/reference/basic_socket_streambuf/reuse_address.html doc/html/boost_asio/reference/basic_socket_streambuf/send_buffer_size.html doc/html/boost_asio/reference/basic_socket_streambuf/send_low_watermark.html doc/html/boost_asio/reference/basic_socket_streambuf/service.html doc/html/boost_asio/reference/basic_socket_streambuf/service_type.html doc/html/boost_asio/reference/basic_socket_streambuf/set_option.html doc/html/boost_asio/reference/basic_socket_streambuf/setbuf.html doc/html/boost_asio/reference/basic_socket_streambuf/shutdown.html doc/html/boost_asio/reference/basic_socket_streambuf/shutdown_type.html doc/html/boost_asio/reference/basic_socket_streambuf/sync.html doc/html/boost_asio/reference/basic_socket_streambuf/time_type.html doc/html/boost_asio/reference/basic_socket_streambuf/timer_handler.html doc/html/boost_asio/reference/basic_socket_streambuf/underflow.html doc/html/boost_asio/reference/basic_stream_socket.html doc/html/boost_asio/reference/basic_stream_socket/assign.html doc/html/boost_asio/reference/basic_stream_socket/async_connect.html doc/html/boost_asio/reference/basic_stream_socket/async_read_some.html doc/html/boost_asio/reference/basic_stream_socket/async_receive.html doc/html/boost_asio/reference/basic_stream_socket/async_send.html doc/html/boost_asio/reference/basic_stream_socket/async_write_some.html doc/html/boost_asio/reference/basic_stream_socket/at_mark.html doc/html/boost_asio/reference/basic_stream_socket/available.html doc/html/boost_asio/reference/basic_stream_socket/basic_stream_socket.html doc/html/boost_asio/reference/basic_stream_socket/bind.html doc/html/boost_asio/reference/basic_stream_socket/broadcast.html doc/html/boost_asio/reference/basic_stream_socket/bytes_readable.html doc/html/boost_asio/reference/basic_stream_socket/cancel.html doc/html/boost_asio/reference/basic_stream_socket/close.html doc/html/boost_asio/reference/basic_stream_socket/connect.html doc/html/boost_asio/reference/basic_stream_socket/debug.html doc/html/boost_asio/reference/basic_stream_socket/do_not_route.html doc/html/boost_asio/reference/basic_stream_socket/enable_connection_aborted.html doc/html/boost_asio/reference/basic_stream_socket/endpoint_type.html doc/html/boost_asio/reference/basic_stream_socket/get_implementation.html doc/html/boost_asio/reference/basic_stream_socket/get_io_service.html doc/html/boost_asio/reference/basic_stream_socket/get_option.html doc/html/boost_asio/reference/basic_stream_socket/get_service.html doc/html/boost_asio/reference/basic_stream_socket/implementation.html doc/html/boost_asio/reference/basic_stream_socket/implementation_type.html doc/html/boost_asio/reference/basic_stream_socket/io_control.html doc/html/boost_asio/reference/basic_stream_socket/is_open.html doc/html/boost_asio/reference/basic_stream_socket/keep_alive.html doc/html/boost_asio/reference/basic_stream_socket/linger.html doc/html/boost_asio/reference/basic_stream_socket/local_endpoint.html doc/html/boost_asio/reference/basic_stream_socket/lowest_layer.html doc/html/boost_asio/reference/basic_stream_socket/lowest_layer_type.html doc/html/boost_asio/reference/basic_stream_socket/max_connections.html doc/html/boost_asio/reference/basic_stream_socket/message_do_not_route.html doc/html/boost_asio/reference/basic_stream_socket/message_end_of_record.html doc/html/boost_asio/reference/basic_stream_socket/message_flags.html doc/html/boost_asio/reference/basic_stream_socket/message_out_of_band.html doc/html/boost_asio/reference/basic_stream_socket/message_peek.html doc/html/boost_asio/reference/basic_stream_socket/native.html doc/html/boost_asio/reference/basic_stream_socket/native_handle.html doc/html/boost_asio/reference/basic_stream_socket/native_handle_type.html doc/html/boost_asio/reference/basic_stream_socket/native_non_blocking.html doc/html/boost_asio/reference/basic_stream_socket/native_type.html doc/html/boost_asio/reference/basic_stream_socket/non_blocking.html doc/html/boost_asio/reference/basic_stream_socket/non_blocking_io.html doc/html/boost_asio/reference/basic_stream_socket/open.html doc/html/boost_asio/reference/basic_stream_socket/operator_eq_.html doc/html/boost_asio/reference/basic_stream_socket/protocol_type.html doc/html/boost_asio/reference/basic_stream_socket/read_some.html doc/html/boost_asio/reference/basic_stream_socket/receive.html doc/html/boost_asio/reference/basic_stream_socket/receive_buffer_size.html doc/html/boost_asio/reference/basic_stream_socket/receive_low_watermark.html doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint.html doc/html/boost_asio/reference/basic_stream_socket/reuse_address.html doc/html/boost_asio/reference/basic_stream_socket/send.html doc/html/boost_asio/reference/basic_stream_socket/send_buffer_size.html doc/html/boost_asio/reference/basic_stream_socket/send_low_watermark.html doc/html/boost_asio/reference/basic_stream_socket/service.html doc/html/boost_asio/reference/basic_stream_socket/service_type.html doc/html/boost_asio/reference/basic_stream_socket/set_option.html doc/html/boost_asio/reference/basic_stream_socket/shutdown.html doc/html/boost_asio/reference/basic_stream_socket/shutdown_type.html doc/html/boost_asio/reference/basic_stream_socket/write_some.html doc/html/boost_asio/reference/basic_streambuf.html doc/html/boost_asio/reference/basic_streambuf/basic_streambuf.html doc/html/boost_asio/reference/basic_streambuf/commit.html doc/html/boost_asio/reference/basic_streambuf/const_buffers_type.html doc/html/boost_asio/reference/basic_streambuf/consume.html doc/html/boost_asio/reference/basic_streambuf/data.html doc/html/boost_asio/reference/basic_streambuf/max_size.html doc/html/boost_asio/reference/basic_streambuf/mutable_buffers_type.html doc/html/boost_asio/reference/basic_streambuf/overflow.html doc/html/boost_asio/reference/basic_streambuf/prepare.html doc/html/boost_asio/reference/basic_streambuf/reserve.html doc/html/boost_asio/reference/basic_streambuf/size.html doc/html/boost_asio/reference/basic_streambuf/underflow.html doc/html/boost_asio/reference/basic_waitable_timer.html doc/html/boost_asio/reference/basic_waitable_timer/async_wait.html doc/html/boost_asio/reference/basic_waitable_timer/basic_waitable_timer.html doc/html/boost_asio/reference/basic_waitable_timer/cancel.html doc/html/boost_asio/reference/basic_waitable_timer/cancel_one.html doc/html/boost_asio/reference/basic_waitable_timer/clock_type.html doc/html/boost_asio/reference/basic_waitable_timer/duration.html doc/html/boost_asio/reference/basic_waitable_timer/expires_at.html doc/html/boost_asio/reference/basic_waitable_timer/expires_from_now.html doc/html/boost_asio/reference/basic_waitable_timer/get_implementation.html doc/html/boost_asio/reference/basic_waitable_timer/get_io_service.html doc/html/boost_asio/reference/basic_waitable_timer/get_service.html doc/html/boost_asio/reference/basic_waitable_timer/implementation.html doc/html/boost_asio/reference/basic_waitable_timer/implementation_type.html doc/html/boost_asio/reference/basic_waitable_timer/service.html doc/html/boost_asio/reference/basic_waitable_timer/service_type.html doc/html/boost_asio/reference/basic_waitable_timer/time_point.html doc/html/boost_asio/reference/basic_waitable_timer/traits_type.html doc/html/boost_asio/reference/basic_waitable_timer/wait.html doc/html/boost_asio/reference/basic_yield_context.html doc/html/boost_asio/reference/basic_yield_context/basic_yield_context.html doc/html/boost_asio/reference/basic_yield_context/callee_type.html doc/html/boost_asio/reference/basic_yield_context/caller_type.html doc/html/boost_asio/reference/basic_yield_context/operator_lb__rb_.html doc/html/boost_asio/reference/buffer.html doc/html/boost_asio/reference/buffer_cast.html doc/html/boost_asio/reference/buffer_copy.html doc/html/boost_asio/reference/buffer_size.html doc/html/boost_asio/reference/buffered_read_stream.html doc/html/boost_asio/reference/buffered_read_stream/async_fill.html doc/html/boost_asio/reference/buffered_read_stream/async_read_some.html doc/html/boost_asio/reference/buffered_read_stream/async_write_some.html doc/html/boost_asio/reference/buffered_read_stream/buffered_read_stream.html doc/html/boost_asio/reference/buffered_read_stream/close.html doc/html/boost_asio/reference/buffered_read_stream/default_buffer_size.html doc/html/boost_asio/reference/buffered_read_stream/fill.html doc/html/boost_asio/reference/buffered_read_stream/get_io_service.html doc/html/boost_asio/reference/buffered_read_stream/in_avail.html doc/html/boost_asio/reference/buffered_read_stream/lowest_layer.html doc/html/boost_asio/reference/buffered_read_stream/lowest_layer_type.html doc/html/boost_asio/reference/buffered_read_stream/next_layer.html doc/html/boost_asio/reference/buffered_read_stream/next_layer_type.html doc/html/boost_asio/reference/buffered_read_stream/peek.html doc/html/boost_asio/reference/buffered_read_stream/read_some.html doc/html/boost_asio/reference/buffered_read_stream/write_some.html doc/html/boost_asio/reference/buffered_stream.html doc/html/boost_asio/reference/buffered_stream/async_fill.html doc/html/boost_asio/reference/buffered_stream/async_flush.html doc/html/boost_asio/reference/buffered_stream/async_read_some.html doc/html/boost_asio/reference/buffered_stream/async_write_some.html doc/html/boost_asio/reference/buffered_stream/buffered_stream.html doc/html/boost_asio/reference/buffered_stream/close.html doc/html/boost_asio/reference/buffered_stream/fill.html doc/html/boost_asio/reference/buffered_stream/flush.html doc/html/boost_asio/reference/buffered_stream/get_io_service.html doc/html/boost_asio/reference/buffered_stream/in_avail.html doc/html/boost_asio/reference/buffered_stream/lowest_layer.html doc/html/boost_asio/reference/buffered_stream/lowest_layer_type.html doc/html/boost_asio/reference/buffered_stream/next_layer.html doc/html/boost_asio/reference/buffered_stream/next_layer_type.html doc/html/boost_asio/reference/buffered_stream/peek.html doc/html/boost_asio/reference/buffered_stream/read_some.html doc/html/boost_asio/reference/buffered_stream/write_some.html doc/html/boost_asio/reference/buffered_write_stream.html doc/html/boost_asio/reference/buffered_write_stream/async_flush.html doc/html/boost_asio/reference/buffered_write_stream/async_read_some.html doc/html/boost_asio/reference/buffered_write_stream/async_write_some.html doc/html/boost_asio/reference/buffered_write_stream/buffered_write_stream.html doc/html/boost_asio/reference/buffered_write_stream/close.html doc/html/boost_asio/reference/buffered_write_stream/default_buffer_size.html doc/html/boost_asio/reference/buffered_write_stream/flush.html doc/html/boost_asio/reference/buffered_write_stream/get_io_service.html doc/html/boost_asio/reference/buffered_write_stream/in_avail.html doc/html/boost_asio/reference/buffered_write_stream/lowest_layer.html doc/html/boost_asio/reference/buffered_write_stream/lowest_layer_type.html doc/html/boost_asio/reference/buffered_write_stream/next_layer.html doc/html/boost_asio/reference/buffered_write_stream/next_layer_type.html doc/html/boost_asio/reference/buffered_write_stream/peek.html doc/html/boost_asio/reference/buffered_write_stream/read_some.html doc/html/boost_asio/reference/buffered_write_stream/write_some.html doc/html/boost_asio/reference/buffers_begin.html doc/html/boost_asio/reference/buffers_end.html doc/html/boost_asio/reference/buffers_iterator.html doc/html/boost_asio/reference/buffers_iterator/begin.html doc/html/boost_asio/reference/buffers_iterator/buffers_iterator.html doc/html/boost_asio/reference/buffers_iterator/difference_type.html doc/html/boost_asio/reference/buffers_iterator/end.html doc/html/boost_asio/reference/buffers_iterator/iterator_category.html doc/html/boost_asio/reference/buffers_iterator/operator__star_.html doc/html/boost_asio/reference/buffers_iterator/operator_arrow_.html doc/html/boost_asio/reference/buffers_iterator/operator_eq__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_gt_.html doc/html/boost_asio/reference/buffers_iterator/operator_gt__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_lb__rb_.html doc/html/boost_asio/reference/buffers_iterator/operator_lt_.html doc/html/boost_asio/reference/buffers_iterator/operator_lt__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_minus_.html doc/html/boost_asio/reference/buffers_iterator/operator_minus__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_minus__minus_.html doc/html/boost_asio/reference/buffers_iterator/operator_not__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_plus_.html doc/html/boost_asio/reference/buffers_iterator/operator_plus__eq_.html doc/html/boost_asio/reference/buffers_iterator/operator_plus__plus_.html doc/html/boost_asio/reference/buffers_iterator/pointer.html doc/html/boost_asio/reference/buffers_iterator/reference.html doc/html/boost_asio/reference/buffers_iterator/value_type.html doc/html/boost_asio/reference/connect.html doc/html/boost_asio/reference/const_buffer.html doc/html/boost_asio/reference/const_buffer/const_buffer.html doc/html/boost_asio/reference/const_buffer/operator_plus_.html doc/html/boost_asio/reference/const_buffers_1.html doc/html/boost_asio/reference/const_buffers_1/begin.html doc/html/boost_asio/reference/const_buffers_1/const_buffers_1.html doc/html/boost_asio/reference/const_buffers_1/const_iterator.html doc/html/boost_asio/reference/const_buffers_1/end.html doc/html/boost_asio/reference/const_buffers_1/operator_plus_.html doc/html/boost_asio/reference/const_buffers_1/value_type.html doc/html/boost_asio/reference/coroutine.html doc/html/boost_asio/reference/coroutine/coroutine.html doc/html/boost_asio/reference/coroutine/is_child.html doc/html/boost_asio/reference/coroutine/is_complete.html doc/html/boost_asio/reference/coroutine/is_parent.html doc/html/boost_asio/reference/datagram_socket_service.html doc/html/boost_asio/reference/datagram_socket_service/assign.html doc/html/boost_asio/reference/datagram_socket_service/async_connect.html doc/html/boost_asio/reference/datagram_socket_service/async_receive.html doc/html/boost_asio/reference/datagram_socket_service/async_receive_from.html doc/html/boost_asio/reference/datagram_socket_service/async_send.html doc/html/boost_asio/reference/datagram_socket_service/async_send_to.html doc/html/boost_asio/reference/datagram_socket_service/at_mark.html doc/html/boost_asio/reference/datagram_socket_service/available.html doc/html/boost_asio/reference/datagram_socket_service/bind.html doc/html/boost_asio/reference/datagram_socket_service/cancel.html doc/html/boost_asio/reference/datagram_socket_service/close.html doc/html/boost_asio/reference/datagram_socket_service/connect.html doc/html/boost_asio/reference/datagram_socket_service/construct.html doc/html/boost_asio/reference/datagram_socket_service/converting_move_construct.html doc/html/boost_asio/reference/datagram_socket_service/datagram_socket_service.html doc/html/boost_asio/reference/datagram_socket_service/destroy.html doc/html/boost_asio/reference/datagram_socket_service/endpoint_type.html doc/html/boost_asio/reference/datagram_socket_service/get_io_service.html doc/html/boost_asio/reference/datagram_socket_service/get_option.html doc/html/boost_asio/reference/datagram_socket_service/id.html doc/html/boost_asio/reference/datagram_socket_service/implementation_type.html doc/html/boost_asio/reference/datagram_socket_service/io_control.html doc/html/boost_asio/reference/datagram_socket_service/is_open.html doc/html/boost_asio/reference/datagram_socket_service/local_endpoint.html doc/html/boost_asio/reference/datagram_socket_service/move_assign.html doc/html/boost_asio/reference/datagram_socket_service/move_construct.html doc/html/boost_asio/reference/datagram_socket_service/native.html doc/html/boost_asio/reference/datagram_socket_service/native_handle.html doc/html/boost_asio/reference/datagram_socket_service/native_handle_type.html doc/html/boost_asio/reference/datagram_socket_service/native_non_blocking.html doc/html/boost_asio/reference/datagram_socket_service/native_type.html doc/html/boost_asio/reference/datagram_socket_service/non_blocking.html doc/html/boost_asio/reference/datagram_socket_service/open.html doc/html/boost_asio/reference/datagram_socket_service/protocol_type.html doc/html/boost_asio/reference/datagram_socket_service/receive.html doc/html/boost_asio/reference/datagram_socket_service/receive_from.html doc/html/boost_asio/reference/datagram_socket_service/remote_endpoint.html doc/html/boost_asio/reference/datagram_socket_service/send.html doc/html/boost_asio/reference/datagram_socket_service/send_to.html doc/html/boost_asio/reference/datagram_socket_service/set_option.html doc/html/boost_asio/reference/datagram_socket_service/shutdown.html doc/html/boost_asio/reference/deadline_timer.html doc/html/boost_asio/reference/deadline_timer_service.html doc/html/boost_asio/reference/deadline_timer_service/async_wait.html doc/html/boost_asio/reference/deadline_timer_service/cancel.html doc/html/boost_asio/reference/deadline_timer_service/cancel_one.html doc/html/boost_asio/reference/deadline_timer_service/construct.html doc/html/boost_asio/reference/deadline_timer_service/deadline_timer_service.html doc/html/boost_asio/reference/deadline_timer_service/destroy.html doc/html/boost_asio/reference/deadline_timer_service/duration_type.html doc/html/boost_asio/reference/deadline_timer_service/expires_at.html doc/html/boost_asio/reference/deadline_timer_service/expires_from_now.html doc/html/boost_asio/reference/deadline_timer_service/get_io_service.html doc/html/boost_asio/reference/deadline_timer_service/id.html doc/html/boost_asio/reference/deadline_timer_service/implementation_type.html doc/html/boost_asio/reference/deadline_timer_service/time_type.html doc/html/boost_asio/reference/deadline_timer_service/traits_type.html doc/html/boost_asio/reference/deadline_timer_service/wait.html doc/html/boost_asio/reference/error__addrinfo_category.html doc/html/boost_asio/reference/error__addrinfo_errors.html doc/html/boost_asio/reference/error__basic_errors.html doc/html/boost_asio/reference/error__get_addrinfo_category.html doc/html/boost_asio/reference/error__get_misc_category.html doc/html/boost_asio/reference/error__get_netdb_category.html doc/html/boost_asio/reference/error__get_ssl_category.html doc/html/boost_asio/reference/error__get_system_category.html doc/html/boost_asio/reference/error__make_error_code.html doc/html/boost_asio/reference/error__misc_category.html doc/html/boost_asio/reference/error__misc_errors.html doc/html/boost_asio/reference/error__netdb_category.html doc/html/boost_asio/reference/error__netdb_errors.html doc/html/boost_asio/reference/error__ssl_category.html doc/html/boost_asio/reference/error__ssl_errors.html doc/html/boost_asio/reference/error__system_category.html doc/html/boost_asio/reference/generic__basic_endpoint.html doc/html/boost_asio/reference/generic__basic_endpoint/basic_endpoint.html doc/html/boost_asio/reference/generic__basic_endpoint/capacity.html doc/html/boost_asio/reference/generic__basic_endpoint/data.html doc/html/boost_asio/reference/generic__basic_endpoint/data_type.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_eq_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_eq__eq_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_gt_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_gt__eq_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_lt_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_lt__eq_.html doc/html/boost_asio/reference/generic__basic_endpoint/operator_not__eq_.html doc/html/boost_asio/reference/generic__basic_endpoint/protocol.html doc/html/boost_asio/reference/generic__basic_endpoint/protocol_type.html doc/html/boost_asio/reference/generic__basic_endpoint/resize.html doc/html/boost_asio/reference/generic__basic_endpoint/size.html doc/html/boost_asio/reference/generic__datagram_protocol.html doc/html/boost_asio/reference/generic__datagram_protocol/datagram_protocol.html doc/html/boost_asio/reference/generic__datagram_protocol/endpoint.html doc/html/boost_asio/reference/generic__datagram_protocol/family.html doc/html/boost_asio/reference/generic__datagram_protocol/operator_eq__eq_.html doc/html/boost_asio/reference/generic__datagram_protocol/operator_not__eq_.html doc/html/boost_asio/reference/generic__datagram_protocol/protocol.html doc/html/boost_asio/reference/generic__datagram_protocol/socket.html doc/html/boost_asio/reference/generic__datagram_protocol/type.html doc/html/boost_asio/reference/generic__raw_protocol.html doc/html/boost_asio/reference/generic__raw_protocol/endpoint.html doc/html/boost_asio/reference/generic__raw_protocol/family.html doc/html/boost_asio/reference/generic__raw_protocol/operator_eq__eq_.html doc/html/boost_asio/reference/generic__raw_protocol/operator_not__eq_.html doc/html/boost_asio/reference/generic__raw_protocol/protocol.html doc/html/boost_asio/reference/generic__raw_protocol/raw_protocol.html doc/html/boost_asio/reference/generic__raw_protocol/socket.html doc/html/boost_asio/reference/generic__raw_protocol/type.html doc/html/boost_asio/reference/generic__seq_packet_protocol.html doc/html/boost_asio/reference/generic__seq_packet_protocol/endpoint.html doc/html/boost_asio/reference/generic__seq_packet_protocol/family.html doc/html/boost_asio/reference/generic__seq_packet_protocol/operator_eq__eq_.html doc/html/boost_asio/reference/generic__seq_packet_protocol/operator_not__eq_.html doc/html/boost_asio/reference/generic__seq_packet_protocol/protocol.html doc/html/boost_asio/reference/generic__seq_packet_protocol/seq_packet_protocol.html doc/html/boost_asio/reference/generic__seq_packet_protocol/socket.html doc/html/boost_asio/reference/generic__seq_packet_protocol/type.html doc/html/boost_asio/reference/generic__stream_protocol.html doc/html/boost_asio/reference/generic__stream_protocol/endpoint.html doc/html/boost_asio/reference/generic__stream_protocol/family.html doc/html/boost_asio/reference/generic__stream_protocol/iostream.html doc/html/boost_asio/reference/generic__stream_protocol/operator_eq__eq_.html doc/html/boost_asio/reference/generic__stream_protocol/operator_not__eq_.html doc/html/boost_asio/reference/generic__stream_protocol/protocol.html doc/html/boost_asio/reference/generic__stream_protocol/socket.html doc/html/boost_asio/reference/generic__stream_protocol/stream_protocol.html doc/html/boost_asio/reference/generic__stream_protocol/type.html doc/html/boost_asio/reference/handler_type.html doc/html/boost_asio/reference/handler_type/type.html doc/html/boost_asio/reference/has_service.html doc/html/boost_asio/reference/high_resolution_timer.html doc/html/boost_asio/reference/invalid_service_owner.html doc/html/boost_asio/reference/invalid_service_owner/invalid_service_owner.html doc/html/boost_asio/reference/io_service.html doc/html/boost_asio/reference/io_service/_io_service.html doc/html/boost_asio/reference/io_service/add_service.html doc/html/boost_asio/reference/io_service/dispatch.html doc/html/boost_asio/reference/io_service/fork_event.html doc/html/boost_asio/reference/io_service/has_service.html doc/html/boost_asio/reference/io_service/io_service.html doc/html/boost_asio/reference/io_service/notify_fork.html doc/html/boost_asio/reference/io_service/poll.html doc/html/boost_asio/reference/io_service/poll_one.html doc/html/boost_asio/reference/io_service/post.html doc/html/boost_asio/reference/io_service/reset.html doc/html/boost_asio/reference/io_service/run.html doc/html/boost_asio/reference/io_service/run_one.html doc/html/boost_asio/reference/io_service/stop.html doc/html/boost_asio/reference/io_service/stopped.html doc/html/boost_asio/reference/io_service/use_service.html doc/html/boost_asio/reference/io_service/wrap.html doc/html/boost_asio/reference/io_service__id.html doc/html/boost_asio/reference/io_service__id/id.html doc/html/boost_asio/reference/io_service__service.html doc/html/boost_asio/reference/io_service__service/_service.html doc/html/boost_asio/reference/io_service__service/fork_service.html doc/html/boost_asio/reference/io_service__service/get_io_service.html doc/html/boost_asio/reference/io_service__service/service.html doc/html/boost_asio/reference/io_service__service/shutdown_service.html doc/html/boost_asio/reference/io_service__strand.html doc/html/boost_asio/reference/io_service__strand/_strand.html doc/html/boost_asio/reference/io_service__strand/dispatch.html doc/html/boost_asio/reference/io_service__strand/get_io_service.html doc/html/boost_asio/reference/io_service__strand/post.html doc/html/boost_asio/reference/io_service__strand/running_in_this_thread.html doc/html/boost_asio/reference/io_service__strand/strand.html doc/html/boost_asio/reference/io_service__strand/wrap.html doc/html/boost_asio/reference/io_service__work.html doc/html/boost_asio/reference/io_service__work/_work.html doc/html/boost_asio/reference/io_service__work/get_io_service.html doc/html/boost_asio/reference/io_service__work/work.html doc/html/boost_asio/reference/ip__address.html doc/html/boost_asio/reference/ip__address/address.html doc/html/boost_asio/reference/ip__address/from_string.html doc/html/boost_asio/reference/ip__address/is_loopback.html doc/html/boost_asio/reference/ip__address/is_multicast.html doc/html/boost_asio/reference/ip__address/is_unspecified.html doc/html/boost_asio/reference/ip__address/is_v4.html doc/html/boost_asio/reference/ip__address/is_v6.html doc/html/boost_asio/reference/ip__address/operator_eq_.html doc/html/boost_asio/reference/ip__address/operator_eq__eq_.html doc/html/boost_asio/reference/ip__address/operator_gt_.html doc/html/boost_asio/reference/ip__address/operator_gt__eq_.html doc/html/boost_asio/reference/ip__address/operator_lt_.html doc/html/boost_asio/reference/ip__address/operator_lt__eq_.html doc/html/boost_asio/reference/ip__address/operator_lt__lt_.html doc/html/boost_asio/reference/ip__address/operator_not__eq_.html doc/html/boost_asio/reference/ip__address/to_string.html doc/html/boost_asio/reference/ip__address/to_v4.html doc/html/boost_asio/reference/ip__address/to_v6.html doc/html/boost_asio/reference/ip__address_v4.html doc/html/boost_asio/reference/ip__address_v4/address_v4.html doc/html/boost_asio/reference/ip__address_v4/any.html doc/html/boost_asio/reference/ip__address_v4/broadcast.html doc/html/boost_asio/reference/ip__address_v4/bytes_type.html doc/html/boost_asio/reference/ip__address_v4/from_string.html doc/html/boost_asio/reference/ip__address_v4/is_class_a.html doc/html/boost_asio/reference/ip__address_v4/is_class_b.html doc/html/boost_asio/reference/ip__address_v4/is_class_c.html doc/html/boost_asio/reference/ip__address_v4/is_loopback.html doc/html/boost_asio/reference/ip__address_v4/is_multicast.html doc/html/boost_asio/reference/ip__address_v4/is_unspecified.html doc/html/boost_asio/reference/ip__address_v4/loopback.html doc/html/boost_asio/reference/ip__address_v4/netmask.html doc/html/boost_asio/reference/ip__address_v4/operator_eq_.html doc/html/boost_asio/reference/ip__address_v4/operator_eq__eq_.html doc/html/boost_asio/reference/ip__address_v4/operator_gt_.html doc/html/boost_asio/reference/ip__address_v4/operator_gt__eq_.html doc/html/boost_asio/reference/ip__address_v4/operator_lt_.html doc/html/boost_asio/reference/ip__address_v4/operator_lt__eq_.html doc/html/boost_asio/reference/ip__address_v4/operator_lt__lt_.html doc/html/boost_asio/reference/ip__address_v4/operator_not__eq_.html doc/html/boost_asio/reference/ip__address_v4/to_bytes.html doc/html/boost_asio/reference/ip__address_v4/to_string.html doc/html/boost_asio/reference/ip__address_v4/to_ulong.html doc/html/boost_asio/reference/ip__address_v6.html doc/html/boost_asio/reference/ip__address_v6/address_v6.html doc/html/boost_asio/reference/ip__address_v6/any.html doc/html/boost_asio/reference/ip__address_v6/bytes_type.html doc/html/boost_asio/reference/ip__address_v6/from_string.html doc/html/boost_asio/reference/ip__address_v6/is_link_local.html doc/html/boost_asio/reference/ip__address_v6/is_loopback.html doc/html/boost_asio/reference/ip__address_v6/is_multicast.html doc/html/boost_asio/reference/ip__address_v6/is_multicast_global.html doc/html/boost_asio/reference/ip__address_v6/is_multicast_link_local.html doc/html/boost_asio/reference/ip__address_v6/is_multicast_node_local.html doc/html/boost_asio/reference/ip__address_v6/is_multicast_org_local.html doc/html/boost_asio/reference/ip__address_v6/is_multicast_site_local.html doc/html/boost_asio/reference/ip__address_v6/is_site_local.html doc/html/boost_asio/reference/ip__address_v6/is_unspecified.html doc/html/boost_asio/reference/ip__address_v6/is_v4_compatible.html doc/html/boost_asio/reference/ip__address_v6/is_v4_mapped.html doc/html/boost_asio/reference/ip__address_v6/loopback.html doc/html/boost_asio/reference/ip__address_v6/operator_eq_.html doc/html/boost_asio/reference/ip__address_v6/operator_eq__eq_.html doc/html/boost_asio/reference/ip__address_v6/operator_gt_.html doc/html/boost_asio/reference/ip__address_v6/operator_gt__eq_.html doc/html/boost_asio/reference/ip__address_v6/operator_lt_.html doc/html/boost_asio/reference/ip__address_v6/operator_lt__eq_.html doc/html/boost_asio/reference/ip__address_v6/operator_lt__lt_.html doc/html/boost_asio/reference/ip__address_v6/operator_not__eq_.html doc/html/boost_asio/reference/ip__address_v6/scope_id.html doc/html/boost_asio/reference/ip__address_v6/to_bytes.html doc/html/boost_asio/reference/ip__address_v6/to_string.html doc/html/boost_asio/reference/ip__address_v6/to_v4.html doc/html/boost_asio/reference/ip__address_v6/v4_compatible.html doc/html/boost_asio/reference/ip__address_v6/v4_mapped.html doc/html/boost_asio/reference/ip__basic_endpoint.html doc/html/boost_asio/reference/ip__basic_endpoint/address.html doc/html/boost_asio/reference/ip__basic_endpoint/basic_endpoint.html doc/html/boost_asio/reference/ip__basic_endpoint/capacity.html doc/html/boost_asio/reference/ip__basic_endpoint/data.html doc/html/boost_asio/reference/ip__basic_endpoint/data_type.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_eq_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_eq__eq_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_gt_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_gt__eq_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_lt_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_lt__eq_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_lt__lt_.html doc/html/boost_asio/reference/ip__basic_endpoint/operator_not__eq_.html doc/html/boost_asio/reference/ip__basic_endpoint/port.html doc/html/boost_asio/reference/ip__basic_endpoint/protocol.html doc/html/boost_asio/reference/ip__basic_endpoint/protocol_type.html doc/html/boost_asio/reference/ip__basic_endpoint/resize.html doc/html/boost_asio/reference/ip__basic_endpoint/size.html doc/html/boost_asio/reference/ip__basic_resolver.html doc/html/boost_asio/reference/ip__basic_resolver/async_resolve.html doc/html/boost_asio/reference/ip__basic_resolver/basic_resolver.html doc/html/boost_asio/reference/ip__basic_resolver/cancel.html doc/html/boost_asio/reference/ip__basic_resolver/endpoint_type.html doc/html/boost_asio/reference/ip__basic_resolver/get_implementation.html doc/html/boost_asio/reference/ip__basic_resolver/get_io_service.html doc/html/boost_asio/reference/ip__basic_resolver/get_service.html doc/html/boost_asio/reference/ip__basic_resolver/implementation.html doc/html/boost_asio/reference/ip__basic_resolver/implementation_type.html doc/html/boost_asio/reference/ip__basic_resolver/iterator.html doc/html/boost_asio/reference/ip__basic_resolver/protocol_type.html doc/html/boost_asio/reference/ip__basic_resolver/query.html doc/html/boost_asio/reference/ip__basic_resolver/resolve.html doc/html/boost_asio/reference/ip__basic_resolver/service.html doc/html/boost_asio/reference/ip__basic_resolver/service_type.html doc/html/boost_asio/reference/ip__basic_resolver_entry.html doc/html/boost_asio/reference/ip__basic_resolver_entry/basic_resolver_entry.html doc/html/boost_asio/reference/ip__basic_resolver_entry/endpoint.html doc/html/boost_asio/reference/ip__basic_resolver_entry/endpoint_type.html doc/html/boost_asio/reference/ip__basic_resolver_entry/host_name.html doc/html/boost_asio/reference/ip__basic_resolver_entry/operator_endpoint_type.html doc/html/boost_asio/reference/ip__basic_resolver_entry/protocol_type.html doc/html/boost_asio/reference/ip__basic_resolver_entry/service_name.html doc/html/boost_asio/reference/ip__basic_resolver_iterator.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/basic_resolver_iterator.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/create.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/difference_type.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/iterator_category.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/operator__star_.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/operator_arrow_.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/operator_eq__eq_.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/operator_not__eq_.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/operator_plus__plus_.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/pointer.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/reference.html doc/html/boost_asio/reference/ip__basic_resolver_iterator/value_type.html doc/html/boost_asio/reference/ip__basic_resolver_query.html doc/html/boost_asio/reference/ip__basic_resolver_query/address_configured.html doc/html/boost_asio/reference/ip__basic_resolver_query/all_matching.html doc/html/boost_asio/reference/ip__basic_resolver_query/basic_resolver_query.html doc/html/boost_asio/reference/ip__basic_resolver_query/canonical_name.html doc/html/boost_asio/reference/ip__basic_resolver_query/flags.html doc/html/boost_asio/reference/ip__basic_resolver_query/hints.html doc/html/boost_asio/reference/ip__basic_resolver_query/host_name.html doc/html/boost_asio/reference/ip__basic_resolver_query/numeric_host.html doc/html/boost_asio/reference/ip__basic_resolver_query/numeric_service.html doc/html/boost_asio/reference/ip__basic_resolver_query/passive.html doc/html/boost_asio/reference/ip__basic_resolver_query/protocol_type.html doc/html/boost_asio/reference/ip__basic_resolver_query/service_name.html doc/html/boost_asio/reference/ip__basic_resolver_query/v4_mapped.html doc/html/boost_asio/reference/ip__host_name.html doc/html/boost_asio/reference/ip__icmp.html doc/html/boost_asio/reference/ip__icmp/endpoint.html doc/html/boost_asio/reference/ip__icmp/family.html doc/html/boost_asio/reference/ip__icmp/operator_eq__eq_.html doc/html/boost_asio/reference/ip__icmp/operator_not__eq_.html doc/html/boost_asio/reference/ip__icmp/protocol.html doc/html/boost_asio/reference/ip__icmp/resolver.html doc/html/boost_asio/reference/ip__icmp/socket.html doc/html/boost_asio/reference/ip__icmp/type.html doc/html/boost_asio/reference/ip__icmp/v4.html doc/html/boost_asio/reference/ip__icmp/v6.html doc/html/boost_asio/reference/ip__multicast__enable_loopback.html doc/html/boost_asio/reference/ip__multicast__hops.html doc/html/boost_asio/reference/ip__multicast__join_group.html doc/html/boost_asio/reference/ip__multicast__leave_group.html doc/html/boost_asio/reference/ip__multicast__outbound_interface.html doc/html/boost_asio/reference/ip__resolver_query_base.html doc/html/boost_asio/reference/ip__resolver_query_base/_resolver_query_base.html doc/html/boost_asio/reference/ip__resolver_query_base/address_configured.html doc/html/boost_asio/reference/ip__resolver_query_base/all_matching.html doc/html/boost_asio/reference/ip__resolver_query_base/canonical_name.html doc/html/boost_asio/reference/ip__resolver_query_base/flags.html doc/html/boost_asio/reference/ip__resolver_query_base/numeric_host.html doc/html/boost_asio/reference/ip__resolver_query_base/numeric_service.html doc/html/boost_asio/reference/ip__resolver_query_base/passive.html doc/html/boost_asio/reference/ip__resolver_query_base/v4_mapped.html doc/html/boost_asio/reference/ip__resolver_service.html doc/html/boost_asio/reference/ip__resolver_service/async_resolve.html doc/html/boost_asio/reference/ip__resolver_service/cancel.html doc/html/boost_asio/reference/ip__resolver_service/construct.html doc/html/boost_asio/reference/ip__resolver_service/destroy.html doc/html/boost_asio/reference/ip__resolver_service/endpoint_type.html doc/html/boost_asio/reference/ip__resolver_service/get_io_service.html doc/html/boost_asio/reference/ip__resolver_service/id.html doc/html/boost_asio/reference/ip__resolver_service/implementation_type.html doc/html/boost_asio/reference/ip__resolver_service/iterator_type.html doc/html/boost_asio/reference/ip__resolver_service/protocol_type.html doc/html/boost_asio/reference/ip__resolver_service/query_type.html doc/html/boost_asio/reference/ip__resolver_service/resolve.html doc/html/boost_asio/reference/ip__resolver_service/resolver_service.html doc/html/boost_asio/reference/ip__tcp.html doc/html/boost_asio/reference/ip__tcp/acceptor.html doc/html/boost_asio/reference/ip__tcp/endpoint.html doc/html/boost_asio/reference/ip__tcp/family.html doc/html/boost_asio/reference/ip__tcp/iostream.html doc/html/boost_asio/reference/ip__tcp/no_delay.html doc/html/boost_asio/reference/ip__tcp/operator_eq__eq_.html doc/html/boost_asio/reference/ip__tcp/operator_not__eq_.html doc/html/boost_asio/reference/ip__tcp/protocol.html doc/html/boost_asio/reference/ip__tcp/resolver.html doc/html/boost_asio/reference/ip__tcp/socket.html doc/html/boost_asio/reference/ip__tcp/type.html doc/html/boost_asio/reference/ip__tcp/v4.html doc/html/boost_asio/reference/ip__tcp/v6.html doc/html/boost_asio/reference/ip__udp.html doc/html/boost_asio/reference/ip__udp/endpoint.html doc/html/boost_asio/reference/ip__udp/family.html doc/html/boost_asio/reference/ip__udp/operator_eq__eq_.html doc/html/boost_asio/reference/ip__udp/operator_not__eq_.html doc/html/boost_asio/reference/ip__udp/protocol.html doc/html/boost_asio/reference/ip__udp/resolver.html doc/html/boost_asio/reference/ip__udp/socket.html doc/html/boost_asio/reference/ip__udp/type.html doc/html/boost_asio/reference/ip__udp/v4.html doc/html/boost_asio/reference/ip__udp/v6.html doc/html/boost_asio/reference/ip__unicast__hops.html doc/html/boost_asio/reference/ip__v6_only.html doc/html/boost_asio/reference/is_error_code_enum_lt__addrinfo_errors__gt_/value.html doc/html/boost_asio/reference/is_error_code_enum_lt__basic_errors__gt_/value.html doc/html/boost_asio/reference/is_error_code_enum_lt__misc_errors__gt_/value.html doc/html/boost_asio/reference/is_error_code_enum_lt__netdb_errors__gt_/value.html doc/html/boost_asio/reference/is_error_code_enum_lt__ssl_errors__gt_/value.html doc/html/boost_asio/reference/is_match_condition.html doc/html/boost_asio/reference/is_match_condition/value.html doc/html/boost_asio/reference/is_read_buffered.html doc/html/boost_asio/reference/is_read_buffered/value.html doc/html/boost_asio/reference/is_write_buffered.html doc/html/boost_asio/reference/is_write_buffered/value.html doc/html/boost_asio/reference/local__basic_endpoint.html doc/html/boost_asio/reference/local__basic_endpoint/basic_endpoint.html doc/html/boost_asio/reference/local__basic_endpoint/capacity.html doc/html/boost_asio/reference/local__basic_endpoint/data.html doc/html/boost_asio/reference/local__basic_endpoint/data_type.html doc/html/boost_asio/reference/local__basic_endpoint/operator_eq_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_eq__eq_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_gt_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_gt__eq_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_lt_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_lt__eq_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_lt__lt_.html doc/html/boost_asio/reference/local__basic_endpoint/operator_not__eq_.html doc/html/boost_asio/reference/local__basic_endpoint/path.html doc/html/boost_asio/reference/local__basic_endpoint/protocol.html doc/html/boost_asio/reference/local__basic_endpoint/protocol_type.html doc/html/boost_asio/reference/local__basic_endpoint/resize.html doc/html/boost_asio/reference/local__basic_endpoint/size.html doc/html/boost_asio/reference/local__connect_pair.html doc/html/boost_asio/reference/local__datagram_protocol.html doc/html/boost_asio/reference/local__datagram_protocol/endpoint.html doc/html/boost_asio/reference/local__datagram_protocol/family.html doc/html/boost_asio/reference/local__datagram_protocol/protocol.html doc/html/boost_asio/reference/local__datagram_protocol/socket.html doc/html/boost_asio/reference/local__datagram_protocol/type.html doc/html/boost_asio/reference/local__stream_protocol.html doc/html/boost_asio/reference/local__stream_protocol/acceptor.html doc/html/boost_asio/reference/local__stream_protocol/endpoint.html doc/html/boost_asio/reference/local__stream_protocol/family.html doc/html/boost_asio/reference/local__stream_protocol/iostream.html doc/html/boost_asio/reference/local__stream_protocol/protocol.html doc/html/boost_asio/reference/local__stream_protocol/socket.html doc/html/boost_asio/reference/local__stream_protocol/type.html doc/html/boost_asio/reference/mutable_buffer.html doc/html/boost_asio/reference/mutable_buffer/mutable_buffer.html doc/html/boost_asio/reference/mutable_buffer/operator_plus_.html doc/html/boost_asio/reference/mutable_buffers_1.html doc/html/boost_asio/reference/mutable_buffers_1/begin.html doc/html/boost_asio/reference/mutable_buffers_1/const_iterator.html doc/html/boost_asio/reference/mutable_buffers_1/end.html doc/html/boost_asio/reference/mutable_buffers_1/mutable_buffers_1.html doc/html/boost_asio/reference/mutable_buffers_1/operator_plus_.html doc/html/boost_asio/reference/mutable_buffers_1/value_type.html doc/html/boost_asio/reference/null_buffers.html doc/html/boost_asio/reference/null_buffers/begin.html doc/html/boost_asio/reference/null_buffers/const_iterator.html doc/html/boost_asio/reference/null_buffers/end.html doc/html/boost_asio/reference/null_buffers/value_type.html doc/html/boost_asio/reference/placeholders__bytes_transferred.html doc/html/boost_asio/reference/placeholders__error.html doc/html/boost_asio/reference/placeholders__iterator.html doc/html/boost_asio/reference/placeholders__signal_number.html doc/html/boost_asio/reference/posix__basic_descriptor.html doc/html/boost_asio/reference/posix__basic_descriptor/_basic_descriptor.html doc/html/boost_asio/reference/posix__basic_descriptor/assign.html doc/html/boost_asio/reference/posix__basic_descriptor/basic_descriptor.html doc/html/boost_asio/reference/posix__basic_descriptor/bytes_readable.html doc/html/boost_asio/reference/posix__basic_descriptor/cancel.html doc/html/boost_asio/reference/posix__basic_descriptor/close.html doc/html/boost_asio/reference/posix__basic_descriptor/get_implementation.html doc/html/boost_asio/reference/posix__basic_descriptor/get_io_service.html doc/html/boost_asio/reference/posix__basic_descriptor/get_service.html doc/html/boost_asio/reference/posix__basic_descriptor/implementation.html doc/html/boost_asio/reference/posix__basic_descriptor/implementation_type.html doc/html/boost_asio/reference/posix__basic_descriptor/io_control.html doc/html/boost_asio/reference/posix__basic_descriptor/is_open.html doc/html/boost_asio/reference/posix__basic_descriptor/lowest_layer.html doc/html/boost_asio/reference/posix__basic_descriptor/lowest_layer_type.html doc/html/boost_asio/reference/posix__basic_descriptor/native.html doc/html/boost_asio/reference/posix__basic_descriptor/native_handle.html doc/html/boost_asio/reference/posix__basic_descriptor/native_handle_type.html doc/html/boost_asio/reference/posix__basic_descriptor/native_non_blocking.html doc/html/boost_asio/reference/posix__basic_descriptor/native_type.html doc/html/boost_asio/reference/posix__basic_descriptor/non_blocking.html doc/html/boost_asio/reference/posix__basic_descriptor/non_blocking_io.html doc/html/boost_asio/reference/posix__basic_descriptor/operator_eq_.html doc/html/boost_asio/reference/posix__basic_descriptor/release.html doc/html/boost_asio/reference/posix__basic_descriptor/service.html doc/html/boost_asio/reference/posix__basic_descriptor/service_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/assign.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/async_read_some.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/async_write_some.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/basic_stream_descriptor.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/bytes_readable.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/cancel.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/close.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/get_implementation.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/get_io_service.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/get_service.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/implementation.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/implementation_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/io_control.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/is_open.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/lowest_layer.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/lowest_layer_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/native.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/native_handle.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/native_handle_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/native_non_blocking.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/native_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/non_blocking.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/non_blocking_io.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/operator_eq_.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/read_some.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/release.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/service.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/service_type.html doc/html/boost_asio/reference/posix__basic_stream_descriptor/write_some.html doc/html/boost_asio/reference/posix__descriptor_base.html doc/html/boost_asio/reference/posix__descriptor_base/_descriptor_base.html doc/html/boost_asio/reference/posix__descriptor_base/bytes_readable.html doc/html/boost_asio/reference/posix__descriptor_base/non_blocking_io.html doc/html/boost_asio/reference/posix__stream_descriptor.html doc/html/boost_asio/reference/posix__stream_descriptor_service.html doc/html/boost_asio/reference/posix__stream_descriptor_service/assign.html doc/html/boost_asio/reference/posix__stream_descriptor_service/async_read_some.html doc/html/boost_asio/reference/posix__stream_descriptor_service/async_write_some.html doc/html/boost_asio/reference/posix__stream_descriptor_service/cancel.html doc/html/boost_asio/reference/posix__stream_descriptor_service/close.html doc/html/boost_asio/reference/posix__stream_descriptor_service/construct.html doc/html/boost_asio/reference/posix__stream_descriptor_service/destroy.html doc/html/boost_asio/reference/posix__stream_descriptor_service/get_io_service.html doc/html/boost_asio/reference/posix__stream_descriptor_service/id.html doc/html/boost_asio/reference/posix__stream_descriptor_service/implementation_type.html doc/html/boost_asio/reference/posix__stream_descriptor_service/io_control.html doc/html/boost_asio/reference/posix__stream_descriptor_service/is_open.html doc/html/boost_asio/reference/posix__stream_descriptor_service/move_assign.html doc/html/boost_asio/reference/posix__stream_descriptor_service/move_construct.html doc/html/boost_asio/reference/posix__stream_descriptor_service/native.html doc/html/boost_asio/reference/posix__stream_descriptor_service/native_handle.html doc/html/boost_asio/reference/posix__stream_descriptor_service/native_handle_type.html doc/html/boost_asio/reference/posix__stream_descriptor_service/native_non_blocking.html doc/html/boost_asio/reference/posix__stream_descriptor_service/native_type.html doc/html/boost_asio/reference/posix__stream_descriptor_service/non_blocking.html doc/html/boost_asio/reference/posix__stream_descriptor_service/read_some.html doc/html/boost_asio/reference/posix__stream_descriptor_service/release.html doc/html/boost_asio/reference/posix__stream_descriptor_service/stream_descriptor_service.html doc/html/boost_asio/reference/posix__stream_descriptor_service/write_some.html doc/html/boost_asio/reference/raw_socket_service.html doc/html/boost_asio/reference/raw_socket_service/assign.html doc/html/boost_asio/reference/raw_socket_service/async_connect.html doc/html/boost_asio/reference/raw_socket_service/async_receive.html doc/html/boost_asio/reference/raw_socket_service/async_receive_from.html doc/html/boost_asio/reference/raw_socket_service/async_send.html doc/html/boost_asio/reference/raw_socket_service/async_send_to.html doc/html/boost_asio/reference/raw_socket_service/at_mark.html doc/html/boost_asio/reference/raw_socket_service/available.html doc/html/boost_asio/reference/raw_socket_service/bind.html doc/html/boost_asio/reference/raw_socket_service/cancel.html doc/html/boost_asio/reference/raw_socket_service/close.html doc/html/boost_asio/reference/raw_socket_service/connect.html doc/html/boost_asio/reference/raw_socket_service/construct.html doc/html/boost_asio/reference/raw_socket_service/converting_move_construct.html doc/html/boost_asio/reference/raw_socket_service/destroy.html doc/html/boost_asio/reference/raw_socket_service/endpoint_type.html doc/html/boost_asio/reference/raw_socket_service/get_io_service.html doc/html/boost_asio/reference/raw_socket_service/get_option.html doc/html/boost_asio/reference/raw_socket_service/id.html doc/html/boost_asio/reference/raw_socket_service/implementation_type.html doc/html/boost_asio/reference/raw_socket_service/io_control.html doc/html/boost_asio/reference/raw_socket_service/is_open.html doc/html/boost_asio/reference/raw_socket_service/local_endpoint.html doc/html/boost_asio/reference/raw_socket_service/move_assign.html doc/html/boost_asio/reference/raw_socket_service/move_construct.html doc/html/boost_asio/reference/raw_socket_service/native.html doc/html/boost_asio/reference/raw_socket_service/native_handle.html doc/html/boost_asio/reference/raw_socket_service/native_handle_type.html doc/html/boost_asio/reference/raw_socket_service/native_non_blocking.html doc/html/boost_asio/reference/raw_socket_service/native_type.html doc/html/boost_asio/reference/raw_socket_service/non_blocking.html doc/html/boost_asio/reference/raw_socket_service/open.html doc/html/boost_asio/reference/raw_socket_service/protocol_type.html doc/html/boost_asio/reference/raw_socket_service/raw_socket_service.html doc/html/boost_asio/reference/raw_socket_service/receive.html doc/html/boost_asio/reference/raw_socket_service/receive_from.html doc/html/boost_asio/reference/raw_socket_service/remote_endpoint.html doc/html/boost_asio/reference/raw_socket_service/send.html doc/html/boost_asio/reference/raw_socket_service/send_to.html doc/html/boost_asio/reference/raw_socket_service/set_option.html doc/html/boost_asio/reference/raw_socket_service/shutdown.html doc/html/boost_asio/reference/read.html doc/html/boost_asio/reference/read_at.html doc/html/boost_asio/reference/read_until.html doc/html/boost_asio/reference/seq_packet_socket_service.html doc/html/boost_asio/reference/seq_packet_socket_service/assign.html doc/html/boost_asio/reference/seq_packet_socket_service/async_connect.html doc/html/boost_asio/reference/seq_packet_socket_service/async_receive.html doc/html/boost_asio/reference/seq_packet_socket_service/async_send.html doc/html/boost_asio/reference/seq_packet_socket_service/at_mark.html doc/html/boost_asio/reference/seq_packet_socket_service/available.html doc/html/boost_asio/reference/seq_packet_socket_service/bind.html doc/html/boost_asio/reference/seq_packet_socket_service/cancel.html doc/html/boost_asio/reference/seq_packet_socket_service/close.html doc/html/boost_asio/reference/seq_packet_socket_service/connect.html doc/html/boost_asio/reference/seq_packet_socket_service/construct.html doc/html/boost_asio/reference/seq_packet_socket_service/converting_move_construct.html doc/html/boost_asio/reference/seq_packet_socket_service/destroy.html doc/html/boost_asio/reference/seq_packet_socket_service/endpoint_type.html doc/html/boost_asio/reference/seq_packet_socket_service/get_io_service.html doc/html/boost_asio/reference/seq_packet_socket_service/get_option.html doc/html/boost_asio/reference/seq_packet_socket_service/id.html doc/html/boost_asio/reference/seq_packet_socket_service/implementation_type.html doc/html/boost_asio/reference/seq_packet_socket_service/io_control.html doc/html/boost_asio/reference/seq_packet_socket_service/is_open.html doc/html/boost_asio/reference/seq_packet_socket_service/local_endpoint.html doc/html/boost_asio/reference/seq_packet_socket_service/move_assign.html doc/html/boost_asio/reference/seq_packet_socket_service/move_construct.html doc/html/boost_asio/reference/seq_packet_socket_service/native.html doc/html/boost_asio/reference/seq_packet_socket_service/native_handle.html doc/html/boost_asio/reference/seq_packet_socket_service/native_handle_type.html doc/html/boost_asio/reference/seq_packet_socket_service/native_non_blocking.html doc/html/boost_asio/reference/seq_packet_socket_service/native_type.html doc/html/boost_asio/reference/seq_packet_socket_service/non_blocking.html doc/html/boost_asio/reference/seq_packet_socket_service/open.html doc/html/boost_asio/reference/seq_packet_socket_service/protocol_type.html doc/html/boost_asio/reference/seq_packet_socket_service/receive.html doc/html/boost_asio/reference/seq_packet_socket_service/remote_endpoint.html doc/html/boost_asio/reference/seq_packet_socket_service/send.html doc/html/boost_asio/reference/seq_packet_socket_service/seq_packet_socket_service.html doc/html/boost_asio/reference/seq_packet_socket_service/set_option.html doc/html/boost_asio/reference/seq_packet_socket_service/shutdown.html doc/html/boost_asio/reference/serial_port.html doc/html/boost_asio/reference/serial_port_base.html doc/html/boost_asio/reference/serial_port_base/_serial_port_base.html doc/html/boost_asio/reference/serial_port_base__baud_rate.html doc/html/boost_asio/reference/serial_port_base__baud_rate/baud_rate.html doc/html/boost_asio/reference/serial_port_base__baud_rate/load.html doc/html/boost_asio/reference/serial_port_base__baud_rate/store.html doc/html/boost_asio/reference/serial_port_base__baud_rate/value.html doc/html/boost_asio/reference/serial_port_base__character_size.html doc/html/boost_asio/reference/serial_port_base__character_size/character_size.html doc/html/boost_asio/reference/serial_port_base__character_size/load.html doc/html/boost_asio/reference/serial_port_base__character_size/store.html doc/html/boost_asio/reference/serial_port_base__character_size/value.html doc/html/boost_asio/reference/serial_port_base__flow_control.html doc/html/boost_asio/reference/serial_port_base__flow_control/flow_control.html doc/html/boost_asio/reference/serial_port_base__flow_control/load.html doc/html/boost_asio/reference/serial_port_base__flow_control/store.html doc/html/boost_asio/reference/serial_port_base__flow_control/type.html doc/html/boost_asio/reference/serial_port_base__flow_control/value.html doc/html/boost_asio/reference/serial_port_base__parity.html doc/html/boost_asio/reference/serial_port_base__parity/load.html doc/html/boost_asio/reference/serial_port_base__parity/parity.html doc/html/boost_asio/reference/serial_port_base__parity/store.html doc/html/boost_asio/reference/serial_port_base__parity/type.html doc/html/boost_asio/reference/serial_port_base__parity/value.html doc/html/boost_asio/reference/serial_port_base__stop_bits.html doc/html/boost_asio/reference/serial_port_base__stop_bits/load.html doc/html/boost_asio/reference/serial_port_base__stop_bits/stop_bits.html doc/html/boost_asio/reference/serial_port_base__stop_bits/store.html doc/html/boost_asio/reference/serial_port_base__stop_bits/type.html doc/html/boost_asio/reference/serial_port_base__stop_bits/value.html doc/html/boost_asio/reference/serial_port_service.html doc/html/boost_asio/reference/serial_port_service/assign.html doc/html/boost_asio/reference/serial_port_service/async_read_some.html doc/html/boost_asio/reference/serial_port_service/async_write_some.html doc/html/boost_asio/reference/serial_port_service/cancel.html doc/html/boost_asio/reference/serial_port_service/close.html doc/html/boost_asio/reference/serial_port_service/construct.html doc/html/boost_asio/reference/serial_port_service/destroy.html doc/html/boost_asio/reference/serial_port_service/get_io_service.html doc/html/boost_asio/reference/serial_port_service/get_option.html doc/html/boost_asio/reference/serial_port_service/id.html doc/html/boost_asio/reference/serial_port_service/implementation_type.html doc/html/boost_asio/reference/serial_port_service/is_open.html doc/html/boost_asio/reference/serial_port_service/move_assign.html doc/html/boost_asio/reference/serial_port_service/move_construct.html doc/html/boost_asio/reference/serial_port_service/native.html doc/html/boost_asio/reference/serial_port_service/native_handle.html doc/html/boost_asio/reference/serial_port_service/native_handle_type.html doc/html/boost_asio/reference/serial_port_service/native_type.html doc/html/boost_asio/reference/serial_port_service/open.html doc/html/boost_asio/reference/serial_port_service/read_some.html doc/html/boost_asio/reference/serial_port_service/send_break.html doc/html/boost_asio/reference/serial_port_service/serial_port_service.html doc/html/boost_asio/reference/serial_port_service/set_option.html doc/html/boost_asio/reference/serial_port_service/write_some.html doc/html/boost_asio/reference/service_already_exists.html doc/html/boost_asio/reference/service_already_exists/service_already_exists.html doc/html/boost_asio/reference/signal_set.html doc/html/boost_asio/reference/signal_set_service.html doc/html/boost_asio/reference/signal_set_service/add.html doc/html/boost_asio/reference/signal_set_service/async_wait.html doc/html/boost_asio/reference/signal_set_service/cancel.html doc/html/boost_asio/reference/signal_set_service/clear.html doc/html/boost_asio/reference/signal_set_service/construct.html doc/html/boost_asio/reference/signal_set_service/destroy.html doc/html/boost_asio/reference/signal_set_service/get_io_service.html doc/html/boost_asio/reference/signal_set_service/id.html doc/html/boost_asio/reference/signal_set_service/implementation_type.html doc/html/boost_asio/reference/signal_set_service/remove.html doc/html/boost_asio/reference/signal_set_service/signal_set_service.html doc/html/boost_asio/reference/socket_acceptor_service.html doc/html/boost_asio/reference/socket_acceptor_service/accept.html doc/html/boost_asio/reference/socket_acceptor_service/assign.html doc/html/boost_asio/reference/socket_acceptor_service/async_accept.html doc/html/boost_asio/reference/socket_acceptor_service/bind.html doc/html/boost_asio/reference/socket_acceptor_service/cancel.html doc/html/boost_asio/reference/socket_acceptor_service/close.html doc/html/boost_asio/reference/socket_acceptor_service/construct.html doc/html/boost_asio/reference/socket_acceptor_service/converting_move_construct.html doc/html/boost_asio/reference/socket_acceptor_service/destroy.html doc/html/boost_asio/reference/socket_acceptor_service/endpoint_type.html doc/html/boost_asio/reference/socket_acceptor_service/get_io_service.html doc/html/boost_asio/reference/socket_acceptor_service/get_option.html doc/html/boost_asio/reference/socket_acceptor_service/id.html doc/html/boost_asio/reference/socket_acceptor_service/implementation_type.html doc/html/boost_asio/reference/socket_acceptor_service/io_control.html doc/html/boost_asio/reference/socket_acceptor_service/is_open.html doc/html/boost_asio/reference/socket_acceptor_service/listen.html doc/html/boost_asio/reference/socket_acceptor_service/local_endpoint.html doc/html/boost_asio/reference/socket_acceptor_service/move_assign.html doc/html/boost_asio/reference/socket_acceptor_service/move_construct.html doc/html/boost_asio/reference/socket_acceptor_service/native.html doc/html/boost_asio/reference/socket_acceptor_service/native_handle.html doc/html/boost_asio/reference/socket_acceptor_service/native_handle_type.html doc/html/boost_asio/reference/socket_acceptor_service/native_non_blocking.html doc/html/boost_asio/reference/socket_acceptor_service/native_type.html doc/html/boost_asio/reference/socket_acceptor_service/non_blocking.html doc/html/boost_asio/reference/socket_acceptor_service/open.html doc/html/boost_asio/reference/socket_acceptor_service/protocol_type.html doc/html/boost_asio/reference/socket_acceptor_service/set_option.html doc/html/boost_asio/reference/socket_acceptor_service/socket_acceptor_service.html doc/html/boost_asio/reference/socket_base.html doc/html/boost_asio/reference/socket_base/_socket_base.html doc/html/boost_asio/reference/socket_base/broadcast.html doc/html/boost_asio/reference/socket_base/bytes_readable.html doc/html/boost_asio/reference/socket_base/debug.html doc/html/boost_asio/reference/socket_base/do_not_route.html doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html doc/html/boost_asio/reference/socket_base/keep_alive.html doc/html/boost_asio/reference/socket_base/linger.html doc/html/boost_asio/reference/socket_base/max_connections.html doc/html/boost_asio/reference/socket_base/message_do_not_route.html doc/html/boost_asio/reference/socket_base/message_end_of_record.html doc/html/boost_asio/reference/socket_base/message_flags.html doc/html/boost_asio/reference/socket_base/message_out_of_band.html doc/html/boost_asio/reference/socket_base/message_peek.html doc/html/boost_asio/reference/socket_base/non_blocking_io.html doc/html/boost_asio/reference/socket_base/receive_buffer_size.html doc/html/boost_asio/reference/socket_base/receive_low_watermark.html doc/html/boost_asio/reference/socket_base/reuse_address.html doc/html/boost_asio/reference/socket_base/send_buffer_size.html doc/html/boost_asio/reference/socket_base/send_low_watermark.html doc/html/boost_asio/reference/socket_base/shutdown_type.html doc/html/boost_asio/reference/spawn.html doc/html/boost_asio/reference/ssl__context.html doc/html/boost_asio/reference/ssl__context/_context.html doc/html/boost_asio/reference/ssl__context/add_certificate_authority.html doc/html/boost_asio/reference/ssl__context/add_verify_path.html doc/html/boost_asio/reference/ssl__context/clear_options.html doc/html/boost_asio/reference/ssl__context/context.html doc/html/boost_asio/reference/ssl__context/default_workarounds.html doc/html/boost_asio/reference/ssl__context/file_format.html doc/html/boost_asio/reference/ssl__context/impl.html doc/html/boost_asio/reference/ssl__context/impl_type.html doc/html/boost_asio/reference/ssl__context/load_verify_file.html doc/html/boost_asio/reference/ssl__context/method.html doc/html/boost_asio/reference/ssl__context/native_handle.html doc/html/boost_asio/reference/ssl__context/native_handle_type.html doc/html/boost_asio/reference/ssl__context/no_compression.html doc/html/boost_asio/reference/ssl__context/no_sslv2.html doc/html/boost_asio/reference/ssl__context/no_sslv3.html doc/html/boost_asio/reference/ssl__context/no_tlsv1.html doc/html/boost_asio/reference/ssl__context/operator_eq_.html doc/html/boost_asio/reference/ssl__context/options.html doc/html/boost_asio/reference/ssl__context/password_purpose.html doc/html/boost_asio/reference/ssl__context/set_default_verify_paths.html doc/html/boost_asio/reference/ssl__context/set_options.html doc/html/boost_asio/reference/ssl__context/set_password_callback.html doc/html/boost_asio/reference/ssl__context/set_verify_callback.html doc/html/boost_asio/reference/ssl__context/set_verify_depth.html doc/html/boost_asio/reference/ssl__context/set_verify_mode.html doc/html/boost_asio/reference/ssl__context/single_dh_use.html doc/html/boost_asio/reference/ssl__context/use_certificate.html doc/html/boost_asio/reference/ssl__context/use_certificate_chain.html doc/html/boost_asio/reference/ssl__context/use_certificate_chain_file.html doc/html/boost_asio/reference/ssl__context/use_certificate_file.html doc/html/boost_asio/reference/ssl__context/use_private_key.html doc/html/boost_asio/reference/ssl__context/use_private_key_file.html doc/html/boost_asio/reference/ssl__context/use_rsa_private_key.html doc/html/boost_asio/reference/ssl__context/use_rsa_private_key_file.html doc/html/boost_asio/reference/ssl__context/use_tmp_dh.html doc/html/boost_asio/reference/ssl__context/use_tmp_dh_file.html doc/html/boost_asio/reference/ssl__context_base.html doc/html/boost_asio/reference/ssl__context_base/_context_base.html doc/html/boost_asio/reference/ssl__context_base/default_workarounds.html doc/html/boost_asio/reference/ssl__context_base/file_format.html doc/html/boost_asio/reference/ssl__context_base/method.html doc/html/boost_asio/reference/ssl__context_base/no_compression.html doc/html/boost_asio/reference/ssl__context_base/no_sslv2.html doc/html/boost_asio/reference/ssl__context_base/no_sslv3.html doc/html/boost_asio/reference/ssl__context_base/no_tlsv1.html doc/html/boost_asio/reference/ssl__context_base/options.html doc/html/boost_asio/reference/ssl__context_base/password_purpose.html doc/html/boost_asio/reference/ssl__context_base/single_dh_use.html doc/html/boost_asio/reference/ssl__rfc2818_verification.html doc/html/boost_asio/reference/ssl__rfc2818_verification/operator_lp__rp_.html doc/html/boost_asio/reference/ssl__rfc2818_verification/result_type.html doc/html/boost_asio/reference/ssl__rfc2818_verification/rfc2818_verification.html doc/html/boost_asio/reference/ssl__stream.html doc/html/boost_asio/reference/ssl__stream/_stream.html doc/html/boost_asio/reference/ssl__stream/async_handshake.html doc/html/boost_asio/reference/ssl__stream/async_read_some.html doc/html/boost_asio/reference/ssl__stream/async_shutdown.html doc/html/boost_asio/reference/ssl__stream/async_write_some.html doc/html/boost_asio/reference/ssl__stream/get_io_service.html doc/html/boost_asio/reference/ssl__stream/handshake.html doc/html/boost_asio/reference/ssl__stream/handshake_type.html doc/html/boost_asio/reference/ssl__stream/impl.html doc/html/boost_asio/reference/ssl__stream/impl_type.html doc/html/boost_asio/reference/ssl__stream/lowest_layer.html doc/html/boost_asio/reference/ssl__stream/lowest_layer_type.html doc/html/boost_asio/reference/ssl__stream/native_handle.html doc/html/boost_asio/reference/ssl__stream/native_handle_type.html doc/html/boost_asio/reference/ssl__stream/next_layer.html doc/html/boost_asio/reference/ssl__stream/next_layer_type.html doc/html/boost_asio/reference/ssl__stream/read_some.html doc/html/boost_asio/reference/ssl__stream/set_verify_callback.html doc/html/boost_asio/reference/ssl__stream/set_verify_depth.html doc/html/boost_asio/reference/ssl__stream/set_verify_mode.html doc/html/boost_asio/reference/ssl__stream/shutdown.html doc/html/boost_asio/reference/ssl__stream/stream.html doc/html/boost_asio/reference/ssl__stream/write_some.html doc/html/boost_asio/reference/ssl__stream__impl_struct/ssl.html doc/html/boost_asio/reference/ssl__stream_base.html doc/html/boost_asio/reference/ssl__stream_base/_stream_base.html doc/html/boost_asio/reference/ssl__stream_base/handshake_type.html doc/html/boost_asio/reference/ssl__verify_client_once.html doc/html/boost_asio/reference/ssl__verify_context.html doc/html/boost_asio/reference/ssl__verify_context/native_handle.html doc/html/boost_asio/reference/ssl__verify_context/native_handle_type.html doc/html/boost_asio/reference/ssl__verify_context/verify_context.html doc/html/boost_asio/reference/ssl__verify_fail_if_no_peer_cert.html doc/html/boost_asio/reference/ssl__verify_mode.html doc/html/boost_asio/reference/ssl__verify_none.html doc/html/boost_asio/reference/ssl__verify_peer.html doc/html/boost_asio/reference/steady_timer.html doc/html/boost_asio/reference/strand.html doc/html/boost_asio/reference/stream_socket_service.html doc/html/boost_asio/reference/stream_socket_service/assign.html doc/html/boost_asio/reference/stream_socket_service/async_connect.html doc/html/boost_asio/reference/stream_socket_service/async_receive.html doc/html/boost_asio/reference/stream_socket_service/async_send.html doc/html/boost_asio/reference/stream_socket_service/at_mark.html doc/html/boost_asio/reference/stream_socket_service/available.html doc/html/boost_asio/reference/stream_socket_service/bind.html doc/html/boost_asio/reference/stream_socket_service/cancel.html doc/html/boost_asio/reference/stream_socket_service/close.html doc/html/boost_asio/reference/stream_socket_service/connect.html doc/html/boost_asio/reference/stream_socket_service/construct.html doc/html/boost_asio/reference/stream_socket_service/converting_move_construct.html doc/html/boost_asio/reference/stream_socket_service/destroy.html doc/html/boost_asio/reference/stream_socket_service/endpoint_type.html doc/html/boost_asio/reference/stream_socket_service/get_io_service.html doc/html/boost_asio/reference/stream_socket_service/get_option.html doc/html/boost_asio/reference/stream_socket_service/id.html doc/html/boost_asio/reference/stream_socket_service/implementation_type.html doc/html/boost_asio/reference/stream_socket_service/io_control.html doc/html/boost_asio/reference/stream_socket_service/is_open.html doc/html/boost_asio/reference/stream_socket_service/local_endpoint.html doc/html/boost_asio/reference/stream_socket_service/move_assign.html doc/html/boost_asio/reference/stream_socket_service/move_construct.html doc/html/boost_asio/reference/stream_socket_service/native.html doc/html/boost_asio/reference/stream_socket_service/native_handle.html doc/html/boost_asio/reference/stream_socket_service/native_handle_type.html doc/html/boost_asio/reference/stream_socket_service/native_non_blocking.html doc/html/boost_asio/reference/stream_socket_service/native_type.html doc/html/boost_asio/reference/stream_socket_service/non_blocking.html doc/html/boost_asio/reference/stream_socket_service/open.html doc/html/boost_asio/reference/stream_socket_service/protocol_type.html doc/html/boost_asio/reference/stream_socket_service/receive.html doc/html/boost_asio/reference/stream_socket_service/remote_endpoint.html doc/html/boost_asio/reference/stream_socket_service/send.html doc/html/boost_asio/reference/stream_socket_service/set_option.html doc/html/boost_asio/reference/stream_socket_service/shutdown.html doc/html/boost_asio/reference/stream_socket_service/stream_socket_service.html doc/html/boost_asio/reference/streambuf.html doc/html/boost_asio/reference/system_timer.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/add.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/duration_type.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/less_than.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/now.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/subtract.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/time_type.html doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/to_posix_duration.html doc/html/boost_asio/reference/transfer_all.html doc/html/boost_asio/reference/transfer_at_least.html doc/html/boost_asio/reference/transfer_exactly.html doc/html/boost_asio/reference/use_future.html doc/html/boost_asio/reference/use_future_t.html doc/html/boost_asio/reference/use_future_t/allocator_type.html doc/html/boost_asio/reference/use_future_t/get_allocator.html doc/html/boost_asio/reference/use_future_t/operator_lb__rb_.html doc/html/boost_asio/reference/use_future_t/use_future_t.html doc/html/boost_asio/reference/use_service.html doc/html/boost_asio/reference/wait_traits.html doc/html/boost_asio/reference/wait_traits/to_wait_duration.html doc/html/boost_asio/reference/waitable_timer_service.html doc/html/boost_asio/reference/waitable_timer_service/async_wait.html doc/html/boost_asio/reference/waitable_timer_service/cancel.html doc/html/boost_asio/reference/waitable_timer_service/cancel_one.html doc/html/boost_asio/reference/waitable_timer_service/clock_type.html doc/html/boost_asio/reference/waitable_timer_service/construct.html doc/html/boost_asio/reference/waitable_timer_service/destroy.html doc/html/boost_asio/reference/waitable_timer_service/duration.html doc/html/boost_asio/reference/waitable_timer_service/expires_at.html doc/html/boost_asio/reference/waitable_timer_service/expires_from_now.html doc/html/boost_asio/reference/waitable_timer_service/get_io_service.html doc/html/boost_asio/reference/waitable_timer_service/id.html doc/html/boost_asio/reference/waitable_timer_service/implementation_type.html doc/html/boost_asio/reference/waitable_timer_service/time_point.html doc/html/boost_asio/reference/waitable_timer_service/traits_type.html doc/html/boost_asio/reference/waitable_timer_service/wait.html doc/html/boost_asio/reference/waitable_timer_service/waitable_timer_service.html doc/html/boost_asio/reference/windows__basic_handle.html doc/html/boost_asio/reference/windows__basic_handle/_basic_handle.html doc/html/boost_asio/reference/windows__basic_handle/assign.html doc/html/boost_asio/reference/windows__basic_handle/basic_handle.html doc/html/boost_asio/reference/windows__basic_handle/cancel.html doc/html/boost_asio/reference/windows__basic_handle/close.html doc/html/boost_asio/reference/windows__basic_handle/get_implementation.html doc/html/boost_asio/reference/windows__basic_handle/get_io_service.html doc/html/boost_asio/reference/windows__basic_handle/get_service.html doc/html/boost_asio/reference/windows__basic_handle/implementation.html doc/html/boost_asio/reference/windows__basic_handle/implementation_type.html doc/html/boost_asio/reference/windows__basic_handle/is_open.html doc/html/boost_asio/reference/windows__basic_handle/lowest_layer.html doc/html/boost_asio/reference/windows__basic_handle/lowest_layer_type.html doc/html/boost_asio/reference/windows__basic_handle/native.html doc/html/boost_asio/reference/windows__basic_handle/native_handle.html doc/html/boost_asio/reference/windows__basic_handle/native_handle_type.html doc/html/boost_asio/reference/windows__basic_handle/native_type.html doc/html/boost_asio/reference/windows__basic_handle/operator_eq_.html doc/html/boost_asio/reference/windows__basic_handle/service.html doc/html/boost_asio/reference/windows__basic_handle/service_type.html doc/html/boost_asio/reference/windows__basic_object_handle.html doc/html/boost_asio/reference/windows__basic_object_handle/assign.html doc/html/boost_asio/reference/windows__basic_object_handle/async_wait.html doc/html/boost_asio/reference/windows__basic_object_handle/basic_object_handle.html doc/html/boost_asio/reference/windows__basic_object_handle/cancel.html doc/html/boost_asio/reference/windows__basic_object_handle/close.html doc/html/boost_asio/reference/windows__basic_object_handle/get_implementation.html doc/html/boost_asio/reference/windows__basic_object_handle/get_io_service.html doc/html/boost_asio/reference/windows__basic_object_handle/get_service.html doc/html/boost_asio/reference/windows__basic_object_handle/implementation.html doc/html/boost_asio/reference/windows__basic_object_handle/implementation_type.html doc/html/boost_asio/reference/windows__basic_object_handle/is_open.html doc/html/boost_asio/reference/windows__basic_object_handle/lowest_layer.html doc/html/boost_asio/reference/windows__basic_object_handle/lowest_layer_type.html doc/html/boost_asio/reference/windows__basic_object_handle/native.html doc/html/boost_asio/reference/windows__basic_object_handle/native_handle.html doc/html/boost_asio/reference/windows__basic_object_handle/native_handle_type.html doc/html/boost_asio/reference/windows__basic_object_handle/native_type.html doc/html/boost_asio/reference/windows__basic_object_handle/operator_eq_.html doc/html/boost_asio/reference/windows__basic_object_handle/service.html doc/html/boost_asio/reference/windows__basic_object_handle/service_type.html doc/html/boost_asio/reference/windows__basic_object_handle/wait.html doc/html/boost_asio/reference/windows__basic_random_access_handle.html doc/html/boost_asio/reference/windows__basic_random_access_handle/assign.html doc/html/boost_asio/reference/windows__basic_random_access_handle/async_read_some_at.html doc/html/boost_asio/reference/windows__basic_random_access_handle/async_write_some_at.html doc/html/boost_asio/reference/windows__basic_random_access_handle/basic_random_access_handle.html doc/html/boost_asio/reference/windows__basic_random_access_handle/cancel.html doc/html/boost_asio/reference/windows__basic_random_access_handle/close.html doc/html/boost_asio/reference/windows__basic_random_access_handle/get_implementation.html doc/html/boost_asio/reference/windows__basic_random_access_handle/get_io_service.html doc/html/boost_asio/reference/windows__basic_random_access_handle/get_service.html doc/html/boost_asio/reference/windows__basic_random_access_handle/implementation.html doc/html/boost_asio/reference/windows__basic_random_access_handle/implementation_type.html doc/html/boost_asio/reference/windows__basic_random_access_handle/is_open.html doc/html/boost_asio/reference/windows__basic_random_access_handle/lowest_layer.html doc/html/boost_asio/reference/windows__basic_random_access_handle/lowest_layer_type.html doc/html/boost_asio/reference/windows__basic_random_access_handle/native.html doc/html/boost_asio/reference/windows__basic_random_access_handle/native_handle.html doc/html/boost_asio/reference/windows__basic_random_access_handle/native_handle_type.html doc/html/boost_asio/reference/windows__basic_random_access_handle/native_type.html doc/html/boost_asio/reference/windows__basic_random_access_handle/operator_eq_.html doc/html/boost_asio/reference/windows__basic_random_access_handle/read_some_at.html doc/html/boost_asio/reference/windows__basic_random_access_handle/service.html doc/html/boost_asio/reference/windows__basic_random_access_handle/service_type.html doc/html/boost_asio/reference/windows__basic_random_access_handle/write_some_at.html doc/html/boost_asio/reference/windows__basic_stream_handle.html doc/html/boost_asio/reference/windows__basic_stream_handle/assign.html doc/html/boost_asio/reference/windows__basic_stream_handle/async_read_some.html doc/html/boost_asio/reference/windows__basic_stream_handle/async_write_some.html doc/html/boost_asio/reference/windows__basic_stream_handle/basic_stream_handle.html doc/html/boost_asio/reference/windows__basic_stream_handle/cancel.html doc/html/boost_asio/reference/windows__basic_stream_handle/close.html doc/html/boost_asio/reference/windows__basic_stream_handle/get_implementation.html doc/html/boost_asio/reference/windows__basic_stream_handle/get_io_service.html doc/html/boost_asio/reference/windows__basic_stream_handle/get_service.html doc/html/boost_asio/reference/windows__basic_stream_handle/implementation.html doc/html/boost_asio/reference/windows__basic_stream_handle/implementation_type.html doc/html/boost_asio/reference/windows__basic_stream_handle/is_open.html doc/html/boost_asio/reference/windows__basic_stream_handle/lowest_layer.html doc/html/boost_asio/reference/windows__basic_stream_handle/lowest_layer_type.html doc/html/boost_asio/reference/windows__basic_stream_handle/native.html doc/html/boost_asio/reference/windows__basic_stream_handle/native_handle.html doc/html/boost_asio/reference/windows__basic_stream_handle/native_handle_type.html doc/html/boost_asio/reference/windows__basic_stream_handle/native_type.html doc/html/boost_asio/reference/windows__basic_stream_handle/operator_eq_.html doc/html/boost_asio/reference/windows__basic_stream_handle/read_some.html doc/html/boost_asio/reference/windows__basic_stream_handle/service.html doc/html/boost_asio/reference/windows__basic_stream_handle/service_type.html doc/html/boost_asio/reference/windows__basic_stream_handle/write_some.html doc/html/boost_asio/reference/windows__object_handle.html doc/html/boost_asio/reference/windows__object_handle_service.html doc/html/boost_asio/reference/windows__object_handle_service/assign.html doc/html/boost_asio/reference/windows__object_handle_service/async_wait.html doc/html/boost_asio/reference/windows__object_handle_service/cancel.html doc/html/boost_asio/reference/windows__object_handle_service/close.html doc/html/boost_asio/reference/windows__object_handle_service/construct.html doc/html/boost_asio/reference/windows__object_handle_service/destroy.html doc/html/boost_asio/reference/windows__object_handle_service/get_io_service.html doc/html/boost_asio/reference/windows__object_handle_service/id.html doc/html/boost_asio/reference/windows__object_handle_service/implementation_type.html doc/html/boost_asio/reference/windows__object_handle_service/is_open.html doc/html/boost_asio/reference/windows__object_handle_service/move_assign.html doc/html/boost_asio/reference/windows__object_handle_service/move_construct.html doc/html/boost_asio/reference/windows__object_handle_service/native_handle.html doc/html/boost_asio/reference/windows__object_handle_service/native_handle_type.html doc/html/boost_asio/reference/windows__object_handle_service/object_handle_service.html doc/html/boost_asio/reference/windows__object_handle_service/wait.html doc/html/boost_asio/reference/windows__overlapped_ptr.html doc/html/boost_asio/reference/windows__overlapped_ptr/_overlapped_ptr.html doc/html/boost_asio/reference/windows__overlapped_ptr/complete.html doc/html/boost_asio/reference/windows__overlapped_ptr/get.html doc/html/boost_asio/reference/windows__overlapped_ptr/overlapped_ptr.html doc/html/boost_asio/reference/windows__overlapped_ptr/release.html doc/html/boost_asio/reference/windows__overlapped_ptr/reset.html doc/html/boost_asio/reference/windows__random_access_handle.html doc/html/boost_asio/reference/windows__random_access_handle_service.html doc/html/boost_asio/reference/windows__random_access_handle_service/assign.html doc/html/boost_asio/reference/windows__random_access_handle_service/async_read_some_at.html doc/html/boost_asio/reference/windows__random_access_handle_service/async_write_some_at.html doc/html/boost_asio/reference/windows__random_access_handle_service/cancel.html doc/html/boost_asio/reference/windows__random_access_handle_service/close.html doc/html/boost_asio/reference/windows__random_access_handle_service/construct.html doc/html/boost_asio/reference/windows__random_access_handle_service/destroy.html doc/html/boost_asio/reference/windows__random_access_handle_service/get_io_service.html doc/html/boost_asio/reference/windows__random_access_handle_service/id.html doc/html/boost_asio/reference/windows__random_access_handle_service/implementation_type.html doc/html/boost_asio/reference/windows__random_access_handle_service/is_open.html doc/html/boost_asio/reference/windows__random_access_handle_service/move_assign.html doc/html/boost_asio/reference/windows__random_access_handle_service/move_construct.html doc/html/boost_asio/reference/windows__random_access_handle_service/native.html doc/html/boost_asio/reference/windows__random_access_handle_service/native_handle.html doc/html/boost_asio/reference/windows__random_access_handle_service/native_handle_type.html doc/html/boost_asio/reference/windows__random_access_handle_service/native_type.html doc/html/boost_asio/reference/windows__random_access_handle_service/random_access_handle_service.html doc/html/boost_asio/reference/windows__random_access_handle_service/read_some_at.html doc/html/boost_asio/reference/windows__random_access_handle_service/write_some_at.html doc/html/boost_asio/reference/windows__stream_handle.html doc/html/boost_asio/reference/windows__stream_handle_service.html doc/html/boost_asio/reference/windows__stream_handle_service/assign.html doc/html/boost_asio/reference/windows__stream_handle_service/async_read_some.html doc/html/boost_asio/reference/windows__stream_handle_service/async_write_some.html doc/html/boost_asio/reference/windows__stream_handle_service/cancel.html doc/html/boost_asio/reference/windows__stream_handle_service/close.html doc/html/boost_asio/reference/windows__stream_handle_service/construct.html doc/html/boost_asio/reference/windows__stream_handle_service/destroy.html doc/html/boost_asio/reference/windows__stream_handle_service/get_io_service.html doc/html/boost_asio/reference/windows__stream_handle_service/id.html doc/html/boost_asio/reference/windows__stream_handle_service/implementation_type.html doc/html/boost_asio/reference/windows__stream_handle_service/is_open.html doc/html/boost_asio/reference/windows__stream_handle_service/move_assign.html doc/html/boost_asio/reference/windows__stream_handle_service/move_construct.html doc/html/boost_asio/reference/windows__stream_handle_service/native.html doc/html/boost_asio/reference/windows__stream_handle_service/native_handle.html doc/html/boost_asio/reference/windows__stream_handle_service/native_handle_type.html doc/html/boost_asio/reference/windows__stream_handle_service/native_type.html doc/html/boost_asio/reference/windows__stream_handle_service/read_some.html doc/html/boost_asio/reference/windows__stream_handle_service/stream_handle_service.html doc/html/boost_asio/reference/windows__stream_handle_service/write_some.html doc/html/boost_asio/reference/write.html doc/html/boost_asio/reference/write_at.html doc/html/boost_asio/reference/yield_context.html doc/html/boost_asio/tutorial.html doc/html/boost_asio/tutorial/tutdaytime1.html doc/html/boost_asio/tutorial/tutdaytime2.html doc/html/boost_asio/tutorial/tutdaytime3.html doc/html/boost_asio/tutorial/tutdaytime4.html doc/html/boost_asio/tutorial/tutdaytime5.html doc/html/boost_asio/tutorial/tutdaytime6.html doc/html/boost_asio/tutorial/tutdaytime7.html doc/html/boost_asio/tutorial/tutdaytime7/src.html doc/html/boost_asio/tutorial/tuttimer1.html doc/html/boost_asio/tutorial/tuttimer2.html doc/html/boost_asio/tutorial/tuttimer3.html doc/html/boost_asio/tutorial/tuttimer4.html doc/html/boost_asio/tutorial/tuttimer5.html doc/html/boost_asio/using.html doc/html/boost_container_header_reference.html doc/html/boost_lexical_cast.html doc/html/boost_lexical_cast/changes.html doc/html/boost_lexical_cast/examples.html doc/html/boost_lexical_cast/frequently_asked_questions.html doc/html/boost_lexical_cast/performance.html doc/html/boost_lexical_cast/synopsis.html doc/html/boost_propertytree/accessing.html doc/html/boost_propertytree/container.html doc/html/boost_propertytree/parsers.html doc/html/boost_propertytree/synopsis.html doc/html/boost_propertytree/tutorial.html doc/html/boost_random.html doc/html/boost_random/history_and_acknowledgements.html doc/html/boost_random/performance.html doc/html/boost_random/reference.html doc/html/boost_random/tutorial.html doc/html/boost_staticassert.html doc/html/boost_staticassert/how.html doc/html/boost_staticassert/test.html doc/html/boost_tr1.html doc/html/boost_tr1/config.html doc/html/boost_tr1/header_list.html doc/html/boost_tr1/implementation.html doc/html/boost_tr1/subject_list.html doc/html/boost_tr1/testing.html doc/html/boost_tr1/usage.html doc/html/boost_typeerasure.html doc/html/boost_typeerasure/acknowledgements.html doc/html/boost_typeerasure/any.html doc/html/boost_typeerasure/basic.html doc/html/boost_typeerasure/composing_concepts.html doc/html/boost_typeerasure/concept.html doc/html/boost_typeerasure/conceptdef.html doc/html/boost_typeerasure/examples.html doc/html/boost_typeerasure/future.html doc/html/boost_typeerasure/multi.html doc/html/boost_typeerasure/predef.html doc/html/boost_typeerasure/rationale.html doc/html/boost_typeerasure/reading.html doc/html/boost_typeerasure/reference.html doc/html/boost_typeerasure/related.html doc/html/boost_units.html doc/html/boost_units/Acknowledgements.html doc/html/boost_units/Dimensional_Analysis.html doc/html/boost_units/Examples.html doc/html/boost_units/FAQ.html doc/html/boost_units/HelpWanted.html doc/html/boost_units/Installation.html doc/html/boost_units/Quantities.html doc/html/boost_units/Quick_Start.html doc/html/boost_units/Reference.html doc/html/boost_units/ReleaseNotes.html doc/html/boost_units/TODO.html doc/html/boost_units/Units.html doc/html/boost_units/Utilities.html doc/html/boost_units/version_id.html doc/html/boost_xpressive/acknowledgments.html doc/html/boostbook.html doc/html/boostbook/documenting.html doc/html/boostbook/dtd/access.html doc/html/boostbook/dtd/boostbook.html doc/html/boostbook/dtd/class-specialization.html doc/html/boostbook/dtd/class.html doc/html/boostbook/dtd/code.html doc/html/boostbook/dtd/compile-fail-test.html doc/html/boostbook/dtd/compile-test.html doc/html/boostbook/dtd/complexity.html doc/html/boostbook/dtd/constructor.html doc/html/boostbook/dtd/copy-assignment.html doc/html/boostbook/dtd/data-member.html doc/html/boostbook/dtd/default.html doc/html/boostbook/dtd/description.html doc/html/boostbook/dtd/destructor.html doc/html/boostbook/dtd/effects.html doc/html/boostbook/dtd/enum.html doc/html/boostbook/dtd/enumname.html doc/html/boostbook/dtd/enumvalue.html doc/html/boostbook/dtd/free-function-group.html doc/html/boostbook/dtd/function.html doc/html/boostbook/dtd/functionname.html doc/html/boostbook/dtd/globalname.html doc/html/boostbook/dtd/header.html doc/html/boostbook/dtd/headername.html doc/html/boostbook/dtd/if-fails.html doc/html/boostbook/dtd/inherit.html doc/html/boostbook/dtd/lib.html doc/html/boostbook/dtd/library-reference.html doc/html/boostbook/dtd/library.html doc/html/boostbook/dtd/librarycategory.html doc/html/boostbook/dtd/librarycategorydef.html doc/html/boostbook/dtd/librarycategorylist.html doc/html/boostbook/dtd/libraryinfo.html doc/html/boostbook/dtd/librarylist.html doc/html/boostbook/dtd/libraryname.html doc/html/boostbook/dtd/librarypurpose.html doc/html/boostbook/dtd/link-fail-test.html doc/html/boostbook/dtd/link-test.html doc/html/boostbook/dtd/macroname.html doc/html/boostbook/dtd/method-group.html doc/html/boostbook/dtd/method.html doc/html/boostbook/dtd/namespace.html doc/html/boostbook/dtd/notes.html doc/html/boostbook/dtd/overloaded-function.html doc/html/boostbook/dtd/overloaded-method.html doc/html/boostbook/dtd/parameter.html doc/html/boostbook/dtd/paramtype.html doc/html/boostbook/dtd/postconditions.html doc/html/boostbook/dtd/precondition.html doc/html/boostbook/dtd/programlisting.html doc/html/boostbook/dtd/purpose.html doc/html/boostbook/dtd/rationale.html doc/html/boostbook/dtd/requirement.html doc/html/boostbook/dtd/requires.html doc/html/boostbook/dtd/returns.html doc/html/boostbook/dtd/run-fail-test.html doc/html/boostbook/dtd/run-test.html doc/html/boostbook/dtd/signature.html doc/html/boostbook/dtd/snippet.html doc/html/boostbook/dtd/source.html doc/html/boostbook/dtd/specialization.html doc/html/boostbook/dtd/static-constant.html doc/html/boostbook/dtd/struct-specialization.html doc/html/boostbook/dtd/struct.html doc/html/boostbook/dtd/template-arg.html doc/html/boostbook/dtd/template-nontype-parameter.html doc/html/boostbook/dtd/template-type-parameter.html doc/html/boostbook/dtd/template-varargs.html doc/html/boostbook/dtd/template.html doc/html/boostbook/dtd/testsuite.html doc/html/boostbook/dtd/throws.html doc/html/boostbook/dtd/type.html doc/html/boostbook/dtd/typedef.html doc/html/boostbook/dtd/union-specialization.html doc/html/boostbook/dtd/union.html doc/html/boostbook/dtd/using-class.html doc/html/boostbook/dtd/using-namespace.html doc/html/boostbook/getting/started.html doc/html/boostbook/together.html doc/html/chrono.html doc/html/chrono/appendices.html doc/html/chrono/reference.html doc/html/chrono/users_guide.html doc/html/container.html doc/html/container/Cpp11_conformance.html doc/html/container/acknowledgements_notes.html doc/html/container/containers_of_incomplete_types.html doc/html/container/exception_handling.html doc/html/container/history_and_reasons.html doc/html/container/index.html doc/html/container/move_emplace.html doc/html/container/non_standard_containers.html doc/html/container/other_features.html doc/html/container/release_notes.html doc/html/date_time.html doc/html/date_time/date_time_io.html doc/html/date_time/details.html doc/html/date_time/doxy.html doc/html/date_time/examples.html doc/html/date_time/examples/general_usage_examples.html doc/html/date_time/gregorian.html doc/html/date_time/local_time.html doc/html/date_time/posix_time.html doc/html/date_time/serialization.html doc/html/foreach.html doc/html/foreach/extensibility.html doc/html/foreach/history_and_acknowledgements.html doc/html/foreach/pitfalls.html doc/html/foreach/portability.html doc/html/function.html doc/html/function/faq.html doc/html/function/history.html doc/html/function/misc.html doc/html/function/reference.html doc/html/function/testsuite.html doc/html/function/tutorial.html doc/html/hash.html doc/html/hash/acknowledgements.html doc/html/hash/changes.html doc/html/hash/combine.html doc/html/hash/custom.html doc/html/hash/disable.html doc/html/hash/links.html doc/html/hash/portability.html doc/html/hash/rationale.html doc/html/hash/reference.html doc/html/hash/tutorial.html doc/html/heap.html doc/html/heap/acknowledgements.html doc/html/heap/concepts.html doc/html/heap/data_structures.html doc/html/heap/reference.html doc/html/idp12138272-bb.html doc/html/index.html doc/html/interprocess.html doc/html/interprocess/acknowledgements_notes.html doc/html/interprocess/allocators_containers.html doc/html/interprocess/architecture.html doc/html/interprocess/customizing_interprocess.html doc/html/interprocess/indexes_reference.html doc/html/interprocess/interprocess_smart_ptr.html doc/html/interprocess/managed_memory_segments.html doc/html/interprocess/memory_algorithms.html doc/html/interprocess/offset_ptr.html doc/html/interprocess/quick_guide.html doc/html/interprocess/sharedmemorybetweenprocesses.html doc/html/interprocess/some_basic_explanations.html doc/html/interprocess/streams.html doc/html/interprocess/synchronization_mechanisms.html doc/html/intrusive.html doc/html/intrusive/acknowledgements.html doc/html/intrusive/advanced_lookups_insertions.html doc/html/intrusive/any_hooks.html doc/html/intrusive/auto_unlink_hooks.html doc/html/intrusive/avl_set_multiset.html doc/html/intrusive/clone_from.html doc/html/intrusive/concepts.html doc/html/intrusive/concepts_summary.html doc/html/intrusive/design_notes.html doc/html/intrusive/equal_range_stability.html doc/html/intrusive/erasing_and_disposing.html doc/html/intrusive/function_hooks.html doc/html/intrusive/index.html doc/html/intrusive/intrusive_vs_nontrusive.html doc/html/intrusive/list.html doc/html/intrusive/node_algorithms.html doc/html/intrusive/obtaining_iterators_from_values.html doc/html/intrusive/obtaining_same_type_reducing_space.html doc/html/intrusive/performance.html doc/html/intrusive/presenting_containers.html doc/html/intrusive/recursive.html doc/html/intrusive/reference.html doc/html/intrusive/references.html doc/html/intrusive/release_notes.html doc/html/intrusive/safe_hook.html doc/html/intrusive/set_multiset.html doc/html/intrusive/sg_set_multiset.html doc/html/intrusive/slist.html doc/html/intrusive/splay_set_multiset.html doc/html/intrusive/tested_compilers.html doc/html/intrusive/thread_safety.html doc/html/intrusive/treap_set_multiset.html doc/html/intrusive/unordered_set_unordered_multiset.html doc/html/intrusive/usage.html doc/html/intrusive/usage_when.html doc/html/intrusive/using_smart_pointers.html doc/html/intrusive/value_traits.html doc/html/jam.html doc/html/jam/history.html doc/html/jam/language.html doc/html/jam/miscellaneous.html doc/html/lambda.html doc/html/lambda/extending.html doc/html/lambda/getting_started.html doc/html/lambda/le_in_details.html doc/html/lambda/s03.html doc/html/lambda/s07.html doc/html/lambda/s08.html doc/html/lambda/s09.html doc/html/lambda/s10.html doc/html/lambda/using_library.html doc/html/libraries.html doc/html/load_idp12704528.html doc/html/load_idp13514768.html doc/html/load_idp15063056.html doc/html/load_idp15134608.html doc/html/load_idp16260240.html doc/html/load_idp16833504.html doc/html/load_idp38674224.html doc/html/load_idp38796544.html doc/html/load_idp39329552.html doc/html/lockfree.html doc/html/lockfree/appendices.html doc/html/lockfree/examples.html doc/html/lockfree/rationale.html doc/html/lockfree/reference.html doc/html/move.html doc/html/move/composition_inheritance.html doc/html/move/construct_forwarding.html doc/html/move/emulation_limitations.html doc/html/move/how_the_library_works.html doc/html/move/implementing_movable_classes.html doc/html/move/introduction.html doc/html/move/movable_only_classes.html doc/html/move/move_algorithms.html doc/html/move/move_and_containers.html doc/html/move/move_inserters.html doc/html/move/move_iterator.html doc/html/move/reference.html doc/html/move/release_notes.html doc/html/move/thanks_to.html doc/html/mpi.html doc/html/mpi/acknowledge.html doc/html/mpi/design.html doc/html/mpi/getting_started.html doc/html/mpi/history.html doc/html/mpi/performance.html doc/html/mpi/python.html doc/html/mpi/reference.html doc/html/mpi/tutorial.html doc/html/program_options.html doc/html/program_options/design.html doc/html/program_options/howto.html doc/html/program_options/overview.html doc/html/program_options/reference.html doc/html/program_options/s06.html doc/html/program_options/tutorial.html doc/html/property_tree.html doc/html/property_tree/appendices.html doc/html/property_tree/reference.html doc/html/proto.html doc/html/proto/appendices.html doc/html/proto/reference.html doc/html/proto/users_guide.html doc/html/quickbook.html doc/html/quickbook/change_log.html doc/html/quickbook/editors.html doc/html/quickbook/faq.html doc/html/quickbook/install.html doc/html/quickbook/ref.html doc/html/quickbook/syntax.html doc/html/quickbook/syntax/block.html doc/html/quickbook/syntax/phrase.html doc/html/quickbook/syntax/structure.html doc/html/quickbook/versions.html doc/html/ratio.html doc/html/ratio/appendices.html doc/html/ratio/reference.html doc/html/ratio/users_guide.html doc/html/ref.html doc/html/ref/ack.html doc/html/ref/reference.html doc/html/reference.html doc/html/save_idp12414224.html doc/html/save_idp15132272.html doc/html/save_idp15725824.html doc/html/save_idp16476416.html doc/html/save_idp16516912.html doc/html/save_idp18026288.html doc/html/save_idp21466192.html doc/html/save_idp39953584.html doc/html/signals.html doc/html/signals/reference.html doc/html/signals/s04.html doc/html/signals/s05.html doc/html/signals/s06.html doc/html/signals/tests.html doc/html/signals/tutorial.html doc/html/signals2.html doc/html/signals2/api_changes.html doc/html/signals2/examples.html doc/html/signals2/faq.html doc/html/signals2/rationale.html doc/html/signals2/reference.html doc/html/signals2/tests.html doc/html/signals2/thread-safety.html doc/html/signals2/tutorial.html doc/html/std/numeric_limit_idp148889728.html doc/html/string_algo.html doc/html/string_algo/concept.html doc/html/string_algo/credits.html doc/html/string_algo/design.html doc/html/string_algo/env.html doc/html/string_algo/quickref.html doc/html/string_algo/rationale.html doc/html/string_algo/reference.html doc/html/string_algo/release_notes.html doc/html/string_algo/usage.html doc/html/thread.html doc/html/thread/ScopedThreads.html doc/html/thread/acknowledgements.html doc/html/thread/build.html doc/html/thread/changes.html doc/html/thread/compliance.html doc/html/thread/emulations.html doc/html/thread/future.html doc/html/thread/sds.html doc/html/thread/synchronization.html doc/html/thread/thread_local_storage.html doc/html/thread/thread_management.html doc/html/thread/time.html doc/html/tools.html doc/html/tribool.html doc/html/tribool/reference.html doc/html/tribool/tests.html doc/html/tribool/tutorial.html doc/html/typeof.html doc/html/typeof/ackn.html doc/html/typeof/cont.html doc/html/typeof/other.html doc/html/typeof/refe.html doc/html/typeof/tuto.html doc/html/unordered.html doc/html/unordered/bibliography.html doc/html/unordered/buckets.html doc/html/unordered/changes.html doc/html/unordered/comparison.html doc/html/unordered/compliance.html doc/html/unordered/hash_equality.html doc/html/unordered/rationale.html doc/html/unordered/reference.html doc/html/variant.html doc/html/variant/design.html doc/html/variant/misc.html doc/html/variant/reference.html doc/html/variant/refs.html doc/html/variant/tutorial.html doc/html/xpressive.html doc/html/xpressive/appendices.html doc/html/xpressive/reference.html doc/html/xpressive/user_s_guide.html index.htm index.html libs/accumulators/index.html libs/algorithm/doc/html/algorithm/CXX11.html libs/algorithm/doc/html/algorithm/CXX14.html libs/algorithm/doc/html/algorithm/Misc.html libs/algorithm/doc/html/algorithm/Searching.html libs/algorithm/doc/html/algorithm/reference.html libs/algorithm/doc/html/boost/algorithm/all_of_equal_idp13821888.html libs/algorithm/doc/html/boost/algorithm/all_of_equal_idp13825392.html libs/algorithm/doc/html/boost/algorithm/all_of_idp13814960.html libs/algorithm/doc/html/boost/algorithm/all_of_idp13818944.html libs/algorithm/doc/html/boost/algorithm/any_of_equal_idp13835888.html libs/algorithm/doc/html/boost/algorithm/any_of_equal_idp13839408.html libs/algorithm/doc/html/boost/algorithm/any_of_idp13829392.html libs/algorithm/doc/html/boost/algorithm/any_of_idp13832944.html libs/algorithm/doc/html/boost/algorithm/boyer_moore.html libs/algorithm/doc/html/boost/algorithm/boyer_moore_ho_idp14137712.html libs/algorithm/doc/html/boost/algorithm/boyer_moore_horspool.html libs/algorithm/doc/html/boost/algorithm/boyer_moore_se_idp14119840.html libs/algorithm/doc/html/boost/algorithm/clamp_idm1408.html libs/algorithm/doc/html/boost/algorithm/clamp_idp13791792.html libs/algorithm/doc/html/boost/algorithm/clamp_range_idp13794928.html libs/algorithm/doc/html/boost/algorithm/clamp_range_idp13799408.html libs/algorithm/doc/html/boost/algorithm/clamp_range_idp13803488.html libs/algorithm/doc/html/boost/algorithm/clamp_range_idp13808880.html libs/algorithm/doc/html/boost/algorithm/copy_if_idp13843392.html libs/algorithm/doc/html/boost/algorithm/copy_if_idp13848096.html libs/algorithm/doc/html/boost/algorithm/copy_n.html libs/algorithm/doc/html/boost/algorithm/copy_until_idp13859904.html libs/algorithm/doc/html/boost/algorithm/copy_until_idp13864224.html libs/algorithm/doc/html/boost/algorithm/copy_while_idp13851776.html libs/algorithm/doc/html/boost/algorithm/copy_while_idp13856112.html libs/algorithm/doc/html/boost/algorithm/equal_idp14027664.html libs/algorithm/doc/html/boost/algorithm/equal_idp14032288.html libs/algorithm/doc/html/boost/algorithm/find_if_not_idp13874288.html libs/algorithm/doc/html/boost/algorithm/find_if_not_idp13878144.html libs/algorithm/doc/html/boost/algorithm/hex_decode_error.html libs/algorithm/doc/html/boost/algorithm/hex_idp14054272.html libs/algorithm/doc/html/boost/algorithm/hex_idp14058064.html libs/algorithm/doc/html/boost/algorithm/hex_idp14061280.html libs/algorithm/doc/html/boost/algorithm/hex_idp14074448.html libs/algorithm/doc/html/boost/algorithm/iota_idp13882048.html libs/algorithm/doc/html/boost/algorithm/iota_idp13885664.html libs/algorithm/doc/html/boost/algorithm/iota_n.html libs/algorithm/doc/html/boost/algorithm/is_decreasing_idp13966096.html libs/algorithm/doc/html/boost/algorithm/is_decreasing_idp13968960.html libs/algorithm/doc/html/boost/algorithm/is_increasing_idp13960864.html libs/algorithm/doc/html/boost/algorithm/is_increasing_idp13963824.html libs/algorithm/doc/html/boost/algorithm/is_partitioned_idp13892528.html libs/algorithm/doc/html/boost/algorithm/is_partitioned_idp13896128.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13899328.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13903872.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13907328.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13911616.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13916752.html libs/algorithm/doc/html/boost/algorithm/is_permutation_idp13919344.html libs/algorithm/doc/html/boost/algorithm/is_sorted_idp13929776.html libs/algorithm/doc/html/boost/algorithm/is_sorted_idp13949280.html libs/algorithm/doc/html/boost/algorithm/is_sorted_idp13956320.html libs/algorithm/doc/html/boost/algorithm/is_sorted_idp13959104.html libs/algorithm/doc/html/boost/algorithm/is_sorted_unti_idp13924080.html libs/algorithm/doc/html/boost/algorithm/is_sorted_unti_idp13927392.html libs/algorithm/doc/html/boost/algorithm/is_sorted_unti_idp13951616.html libs/algorithm/doc/html/boost/algorithm/is_sorted_unti_idp13954512.html libs/algorithm/doc/html/boost/algorithm/is_strictly_de_idp13976368.html libs/algorithm/doc/html/boost/algorithm/is_strictly_de_idp13979232.html libs/algorithm/doc/html/boost/algorithm/is_strictly_in_idp13971232.html libs/algorithm/doc/html/boost/algorithm/is_strictly_in_idp13974096.html libs/algorithm/doc/html/boost/algorithm/knuth_morris_p_idp14155184.html libs/algorithm/doc/html/boost/algorithm/knuth_morris_pratt.html libs/algorithm/doc/html/boost/algorithm/mismatch_idp14037136.html libs/algorithm/doc/html/boost/algorithm/mismatch_idp14040864.html libs/algorithm/doc/html/boost/algorithm/non_hex_input.html libs/algorithm/doc/html/boost/algorithm/none_of_equal_idp13989104.html libs/algorithm/doc/html/boost/algorithm/none_of_equal_idp13992624.html libs/algorithm/doc/html/boost/algorithm/none_of_idp13982592.html libs/algorithm/doc/html/boost/algorithm/none_of_idp13986144.html libs/algorithm/doc/html/boost/algorithm/not_enough_input.html libs/algorithm/doc/html/boost/algorithm/one_of_equal_idp14002544.html libs/algorithm/doc/html/boost/algorithm/one_of_equal_idp14005744.html libs/algorithm/doc/html/boost/algorithm/one_of_idp13996640.html libs/algorithm/doc/html/boost/algorithm/one_of_idp13999888.html libs/algorithm/doc/html/boost/algorithm/partition_copy_idp14009424.html libs/algorithm/doc/html/boost/algorithm/partition_copy_idp14014976.html libs/algorithm/doc/html/boost/algorithm/partition_poin_idp14020240.html libs/algorithm/doc/html/boost/algorithm/partition_poin_idp14023872.html libs/algorithm/doc/html/boost/algorithm/unhex_idp14064480.html libs/algorithm/doc/html/boost/algorithm/unhex_idp14068192.html libs/algorithm/doc/html/boost/algorithm/unhex_idp14071328.html libs/algorithm/doc/html/boost/algorithm/unhex_idp14076432.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/all_of_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/any_of_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/copy_if_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/copy_n_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/find_if_not_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/iota_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/is_partitioned_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/is_permutation_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/is_sorted_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/none_of_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/one_of_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/partition_copy_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx11/partition_point_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx14/equal_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx14/is_permutation_hpp.html libs/algorithm/doc/html/header/boost/algorithm/cxx14/mismatch_hpp.html libs/algorithm/doc/html/header/boost/algorithm/gather_hpp.html libs/algorithm/doc/html/header/boost/algorithm/hex_hpp.html libs/algorithm/doc/html/header/boost/algorithm/minmax_element_hpp.html libs/algorithm/doc/html/header/boost/algorithm/minmax_hpp.html libs/algorithm/doc/html/header/boost/algorithm/searching/boyer_moore_horspool_hpp.html libs/algorithm/doc/html/header/boost/algorithm/searching/boyer_moore_hpp.html libs/algorithm/doc/html/header/boost/algorithm/searching/knuth_morris_pratt_hpp.html libs/algorithm/doc/html/header/boost/algorithm/string_hpp.html libs/algorithm/doc/html/header/boost/algorithm/string_regex_hpp.html libs/algorithm/doc/html/index.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/any_of.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/is_partitioned.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/is_permutation.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/is_sorted.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/none_of.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/one_of.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/partition_point.html libs/algorithm/doc/html/the_boost_algorithm_library/CXX14/mismatch.html libs/algorithm/doc/html/the_boost_algorithm_library/Misc/gather.html libs/algorithm/doc/html/the_boost_algorithm_library/Misc/hex.html libs/algorithm/doc/html/the_boost_algorithm_library/Searching/BoyerMooreHorspool.html libs/algorithm/doc/html/the_boost_algorithm_library/Searching/KnuthMorrisPratt.html libs/algorithm/index.html libs/algorithm/minmax/doc/minmax_benchs.html libs/algorithm/minmax/doc/minmax_synopsis.html libs/algorithm/minmax/index.html libs/algorithm/string/index.html libs/any/index.html libs/array/index.html libs/asio/index.html libs/assign/doc/email_example.html libs/assign/doc/index.html libs/assign/doc/multi_index_container.html libs/assign/doc/my_vector_example.html libs/assign/index.html libs/atomic/index.html libs/bimap/doc/html/boost_bimap/acknowledgements.html libs/bimap/doc/html/boost_bimap/bimap_and_boost.html libs/bimap/doc/html/boost_bimap/bimap_and_boost/boost_libraries_that_work_well_with_boost_bimap.html libs/bimap/doc/html/boost_bimap/bimap_and_boost/dependencies.html libs/bimap/doc/html/boost_bimap/compiler_specifics.html libs/bimap/doc/html/boost_bimap/examples.html libs/bimap/doc/html/boost_bimap/examples/mighty_bimap.html libs/bimap/doc/html/boost_bimap/examples/multiindex_to_bimap_path___bidirectional_map.html libs/bimap/doc/html/boost_bimap/examples/multiindex_to_bimap_path___hashed_indices.html libs/bimap/doc/html/boost_bimap/examples/simple_bimap.html libs/bimap/doc/html/boost_bimap/future_work.html libs/bimap/doc/html/boost_bimap/history.html libs/bimap/doc/html/boost_bimap/history/multiindex_and_bimap.html libs/bimap/doc/html/boost_bimap/introduction.html libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html libs/bimap/doc/html/boost_bimap/performance.html libs/bimap/doc/html/boost_bimap/rationale.html libs/bimap/doc/html/boost_bimap/rationale/additional_features.html libs/bimap/doc/html/boost_bimap/rationale/code.html libs/bimap/doc/html/boost_bimap/rationale/the_student_and_the_mentor.html libs/bimap/doc/html/boost_bimap/reference.html libs/bimap/doc/html/boost_bimap/reference/bimap_reference.html libs/bimap/doc/html/boost_bimap/reference/list_of_reference.html libs/bimap/doc/html/boost_bimap/reference/set_of_reference.html libs/bimap/doc/html/boost_bimap/reference/unconstrained_set_of_reference.html libs/bimap/doc/html/boost_bimap/reference/unordered_set_of_reference.html libs/bimap/doc/html/boost_bimap/reference/vector_of_reference.html libs/bimap/doc/html/boost_bimap/release_notes.html libs/bimap/doc/html/boost_bimap/test_suite.html libs/bimap/doc/html/boost_bimap/the_tutorial.html libs/bimap/doc/html/boost_bimap/the_tutorial/additional_information.html libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html libs/bimap/doc/html/boost_bimap/the_tutorial/differences_with_standard_maps.html libs/bimap/doc/html/boost_bimap/the_tutorial/discovering_the_bimap_framework.html libs/bimap/doc/html/boost_bimap/the_tutorial/the_collection_of_relations_type.html libs/bimap/doc/html/boost_bimap/the_tutorial/unconstrained_sets.html libs/bimap/doc/html/boost_bimap/the_tutorial/useful_functions.html libs/bimap/doc/html/index.html libs/bimap/index.html libs/bind/bind.html libs/bind/index.html libs/bind/mem_fn.html libs/bind/ref.html libs/chrono/index.html libs/circular_buffer/doc/circular_buffer.html libs/circular_buffer/doc/space_optimized.html libs/circular_buffer/index.html libs/compatibility/index.html libs/compose/index.htm libs/concept_check/bibliography.htm libs/concept_check/concept_check.htm libs/concept_check/concept_covering.htm libs/concept_check/creating_concepts.htm libs/concept_check/implementation.htm libs/concept_check/index.html libs/concept_check/prog_with_concepts.htm libs/concept_check/reference.htm libs/concept_check/using_concept_check.htm libs/config/config.htm libs/config/doc/html/boost_config/acknowledgements.html libs/config/doc/html/boost_config/boost_macro_reference.html libs/config/doc/html/boost_config/guidelines_for_boost_authors.html libs/config/doc/html/boost_config/rationale.html libs/config/doc/html/index.html libs/config/index.html libs/container/index.html libs/context/doc/html/context/acknowledgements.html libs/context/doc/html/context/context.html libs/context/doc/html/context/context/boost_fcontext.html libs/context/doc/html/context/overview.html libs/context/doc/html/context/performance.html libs/context/doc/html/context/rationale.html libs/context/doc/html/context/rationale/other_apis_.html libs/context/doc/html/context/rationale/x86_and_floating_point_env.html libs/context/doc/html/context/reference.html libs/context/doc/html/context/requirements.html libs/context/doc/html/context/stack.html libs/context/doc/html/context/todo.html libs/context/doc/html/index.html libs/context/index.html libs/conversion/cast.htm libs/conversion/index.html libs/conversion/lexical_cast.htm libs/coroutine/doc/html/coroutine/acknowledgements.html libs/coroutine/doc/html/coroutine/attributes.html libs/coroutine/doc/html/coroutine/coroutine.html libs/coroutine/doc/html/coroutine/coroutine/coroutine.html libs/coroutine/doc/html/coroutine/intro.html libs/coroutine/doc/html/coroutine/overview.html libs/coroutine/doc/html/coroutine/performance.html libs/coroutine/doc/html/coroutine/stack.html libs/coroutine/doc/html/coroutine/stack/segmented_stack.html libs/coroutine/doc/html/coroutine/stack/stack_allocator.html libs/coroutine/doc/html/coroutine/stack/stack_context.html libs/coroutine/doc/html/index.html libs/coroutine/index.html libs/crc/crc.html libs/crc/index.html libs/date_time/doc/index.html libs/date_time/index.html libs/disjoint_sets/bibliography.html libs/disjoint_sets/disjoint_sets.html libs/dynamic_bitset/dynamic_bitset.html libs/exception/doc/BOOST_THROW_EXCEPTION.html libs/exception/doc/boost-exception.html libs/exception/doc/boost_exception_all_hpp.html libs/exception/doc/boost_exception_current_exception_cast_hpp.html libs/exception/doc/boost_exception_diagnostic_information_hpp.html libs/exception/doc/boost_exception_enable_current_exception_hpp.html libs/exception/doc/boost_exception_enable_error_info_hpp.html libs/exception/doc/boost_exception_errinfo_api_function_hpp.html libs/exception/doc/boost_exception_errinfo_at_line_hpp.html libs/exception/doc/boost_exception_errinfo_errno_hpp.html libs/exception/doc/boost_exception_errinfo_file_handle_hpp.html libs/exception/doc/boost_exception_errinfo_file_name_hpp.html libs/exception/doc/boost_exception_errinfo_file_open_mode_hpp.html libs/exception/doc/boost_exception_errinfo_nested_exception_hpp.html libs/exception/doc/boost_exception_errinfo_type_info_name_hpp.html libs/exception/doc/boost_exception_error_info_hpp.html libs/exception/doc/boost_exception_exception_hpp.html libs/exception/doc/boost_exception_get_error_info_hpp.html libs/exception/doc/boost_exception_info_hpp.html libs/exception/doc/boost_exception_info_tuple_hpp.html libs/exception/doc/boost_exception_ptr_hpp.html libs/exception/doc/boost_throw_exception_hpp.html libs/exception/doc/configuration_macros.html libs/exception/doc/copy_exception.html libs/exception/doc/current_exception.html libs/exception/doc/current_exception_cast.html libs/exception/doc/current_exception_diagnostic_information.html libs/exception/doc/diagnostic_information.html libs/exception/doc/diagnostic_information_what.html libs/exception/doc/enable_current_exception.html libs/exception/doc/enable_error_info.html libs/exception/doc/errinfo_api_function.html libs/exception/doc/errinfo_at_line.html libs/exception/doc/errinfo_errno.html libs/exception/doc/errinfo_file_handle.html libs/exception/doc/errinfo_file_name.html libs/exception/doc/errinfo_file_open_mode.html libs/exception/doc/errinfo_nested_exception.html libs/exception/doc/errinfo_type_info_name.html libs/exception/doc/error_info.html libs/exception/doc/error_info_error_info.html libs/exception/doc/error_info_value.html libs/exception/doc/error_info_value_type.html libs/exception/doc/exception.html libs/exception/doc/exception_constructors.html libs/exception/doc/exception_destructor.html libs/exception/doc/exception_operator_shl.html libs/exception/doc/exception_ptr.html libs/exception/doc/exception_types_as_simple_semantic_tags.html libs/exception/doc/frequently_asked_questions.html libs/exception/doc/functions.html libs/exception/doc/get_error_info.html libs/exception/doc/headers.html libs/exception/doc/macros.html libs/exception/doc/motivation.html libs/exception/doc/original_exception_type.html libs/exception/doc/page_idx.html libs/exception/doc/rethrow_exception.html libs/exception/doc/synopsis.html libs/exception/doc/throw_exception.html libs/exception/doc/tuple_operator_shl.html libs/exception/doc/tutorial_diagnostic_information.html libs/exception/doc/tutorial_enable_error_info.html libs/exception/doc/tutorial_exception_ptr.html libs/exception/doc/tutorial_transporting_data.html libs/exception/doc/types.html libs/exception/doc/unknown_exception.html libs/exception/doc/using_virtual_inheritance_in_exception_types.html libs/exception/index.html libs/filesystem/doc/deprecated.html libs/filesystem/doc/design.htm libs/filesystem/doc/do_list.html libs/filesystem/doc/faq.htm libs/filesystem/doc/index.htm libs/filesystem/doc/portability_guide.htm libs/filesystem/doc/reference.html libs/filesystem/doc/release_history.html libs/filesystem/doc/tutorial.html libs/filesystem/doc/v3.html libs/filesystem/doc/v3_design.html libs/filesystem/index.html libs/flyweight/doc/acknowledgements.html libs/flyweight/doc/examples.html libs/flyweight/doc/future_work.html libs/flyweight/doc/index.html libs/flyweight/doc/performance.html libs/flyweight/doc/reference/factories.html libs/flyweight/doc/reference/flyweight.html libs/flyweight/doc/reference/holders.html libs/flyweight/doc/reference/index.html libs/flyweight/doc/reference/key_value.html libs/flyweight/doc/reference/locking.html libs/flyweight/doc/reference/tags.html libs/flyweight/doc/reference/tracking.html libs/flyweight/doc/release_notes.html libs/flyweight/doc/tests.html libs/flyweight/doc/tutorial/basics.html libs/flyweight/doc/tutorial/configuration.html libs/flyweight/doc/tutorial/extension.html libs/flyweight/doc/tutorial/index.html libs/flyweight/doc/tutorial/key_value.html libs/flyweight/doc/tutorial/lambda_expressions.html libs/flyweight/doc/tutorial/technical.html libs/flyweight/index.html libs/foreach/index.html libs/format/doc/choices.html libs/format/doc/format.html libs/format/index.html libs/function/index.html libs/function_types/doc/html/boost_functiontypes/about_tag_types.html libs/function_types/doc/html/boost_functiontypes/acknowledgements.html libs/function_types/doc/html/boost_functiontypes/introduction.html libs/function_types/doc/html/boost_functiontypes/rationale.html libs/function_types/doc/html/boost_functiontypes/reference.html libs/function_types/doc/html/boost_functiontypes/reference/classification.html libs/function_types/doc/html/boost_functiontypes/reference/decomposition.html libs/function_types/doc/html/boost_functiontypes/reference/macros.html libs/function_types/doc/html/boost_functiontypes/reference/synthesis.html libs/function_types/doc/html/boost_functiontypes/reference/tag_types.html libs/function_types/doc/html/boost_functiontypes/use_cases.html libs/function_types/doc/html/index.html libs/function_types/index.html libs/functional/binders.html libs/functional/factory/doc/html/index.html libs/functional/factory/index.html libs/functional/forward/doc/html/index.html libs/functional/forward/index.html libs/functional/function_traits.html libs/functional/hash/index.html libs/functional/index.html libs/functional/mem_fun.html libs/functional/negators.html libs/functional/overloaded_function/doc/html/BOOST_FUNCTIONAL_OVERLOADED_FUNCTION_CONFIG_ARITY_MAX.html libs/functional/overloaded_function/doc/html/BOOST_FUNCTIONAL_OVERLOADED_FUNCTION_CONFIG_OVERLOAD_MAX.html libs/functional/overloaded_function/doc/html/boost/make_overloaded_function.html libs/functional/overloaded_function/doc/html/boost/overloaded_function.html libs/functional/overloaded_function/doc/html/boost_functional_overloadedfunction/acknowledgments.html libs/functional/overloaded_function/doc/html/boost_functional_overloadedfunction/getting_started.html libs/functional/overloaded_function/doc/html/boost_functional_overloadedfunction/tutorial.html libs/functional/overloaded_function/doc/html/index.html libs/functional/overloaded_function/doc/html/reference.html libs/functional/overloaded_function/index.html libs/functional/ptr_fun.html libs/fusion/doc/html/fusion/acknowledgements.html libs/fusion/doc/html/fusion/adapted.html libs/fusion/doc/html/fusion/adapted/adapt_adt.html libs/fusion/doc/html/fusion/adapted/adapt_assoc.html libs/fusion/doc/html/fusion/adapted/adapt_assoc_adt.html libs/fusion/doc/html/fusion/adapted/adapt_assoc_struct_named.html libs/fusion/doc/html/fusion/adapted/adapt_assoc_tpl_adt.html libs/fusion/doc/html/fusion/adapted/adapt_assoc_tpl_struct.html libs/fusion/doc/html/fusion/adapted/adapt_struct.html libs/fusion/doc/html/fusion/adapted/adapt_struct_named.html libs/fusion/doc/html/fusion/adapted/adapt_tpl_adt.html libs/fusion/doc/html/fusion/adapted/adapt_tpl_struct.html libs/fusion/doc/html/fusion/adapted/array.html libs/fusion/doc/html/fusion/adapted/boost__array.html libs/fusion/doc/html/fusion/adapted/boost__tuple.html libs/fusion/doc/html/fusion/adapted/define_assoc_struct.html libs/fusion/doc/html/fusion/adapted/define_assoc_tpl_struct.html libs/fusion/doc/html/fusion/adapted/define_struct.html libs/fusion/doc/html/fusion/adapted/define_struct_inline.html libs/fusion/doc/html/fusion/adapted/define_tpl_struct.html libs/fusion/doc/html/fusion/adapted/define_tpl_struct_inline.html libs/fusion/doc/html/fusion/adapted/mpl_sequence.html libs/fusion/doc/html/fusion/adapted/std__pair.html libs/fusion/doc/html/fusion/algorithm.html libs/fusion/doc/html/fusion/algorithm/auxiliary.html libs/fusion/doc/html/fusion/algorithm/auxiliary/functions.html libs/fusion/doc/html/fusion/algorithm/auxiliary/functions/copy.html libs/fusion/doc/html/fusion/algorithm/iteration.html libs/fusion/doc/html/fusion/algorithm/iteration/functions.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/accumulate.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/fold.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/for_each.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/iter_fold.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/reverse_fold.html libs/fusion/doc/html/fusion/algorithm/iteration/functions/reverse_iter_fold.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/accumulate.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/fold.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/for_each.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/iter_fold.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/reverse_fold.html libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/reverse_iter_fold.html libs/fusion/doc/html/fusion/algorithm/query.html libs/fusion/doc/html/fusion/algorithm/query/functions.html libs/fusion/doc/html/fusion/algorithm/query/functions/all.html libs/fusion/doc/html/fusion/algorithm/query/functions/any.html libs/fusion/doc/html/fusion/algorithm/query/functions/count.html libs/fusion/doc/html/fusion/algorithm/query/functions/count_if.html libs/fusion/doc/html/fusion/algorithm/query/functions/find.html libs/fusion/doc/html/fusion/algorithm/query/functions/find_if.html libs/fusion/doc/html/fusion/algorithm/query/functions/none.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/all.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/any.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/count.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/count_if.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/find.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/find_if.html libs/fusion/doc/html/fusion/algorithm/query/metafunctions/none.html libs/fusion/doc/html/fusion/algorithm/transformation.html libs/fusion/doc/html/fusion/algorithm/transformation/functions.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/clear.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/erase.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/erase_key.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/filter.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/filter_if.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/insert.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/insert_range.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/join.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/pop_back.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/pop_front.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/push_back.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/push_front.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/remove.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/remove_if.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/replace.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/replace_if.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/reverse.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/transform.html libs/fusion/doc/html/fusion/algorithm/transformation/functions/zip.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/clear.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/erase.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/filter.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/insert.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/join.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/remove.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/replace.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/transform.html libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/zip.html libs/fusion/doc/html/fusion/change_log.html libs/fusion/doc/html/fusion/container.html libs/fusion/doc/html/fusion/container/back_extended_deque.html libs/fusion/doc/html/fusion/container/cons.html libs/fusion/doc/html/fusion/container/conversion.html libs/fusion/doc/html/fusion/container/conversion/functions.html libs/fusion/doc/html/fusion/container/conversion/functions/as_deque.html libs/fusion/doc/html/fusion/container/conversion/functions/as_list.html libs/fusion/doc/html/fusion/container/conversion/functions/as_map.html libs/fusion/doc/html/fusion/container/conversion/functions/as_set.html libs/fusion/doc/html/fusion/container/conversion/functions/as_vector.html libs/fusion/doc/html/fusion/container/conversion/metafunctions.html libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_deque.html libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_list.html libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_map.html libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_set.html libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_vector.html libs/fusion/doc/html/fusion/container/deque.html libs/fusion/doc/html/fusion/container/front_extended_deque.html libs/fusion/doc/html/fusion/container/generation.html libs/fusion/doc/html/fusion/container/generation/functions.html libs/fusion/doc/html/fusion/container/generation/functions/deque_tie.html libs/fusion/doc/html/fusion/container/generation/functions/list_tie.html libs/fusion/doc/html/fusion/container/generation/functions/make_cons.html libs/fusion/doc/html/fusion/container/generation/functions/make_deque.html libs/fusion/doc/html/fusion/container/generation/functions/make_list.html libs/fusion/doc/html/fusion/container/generation/functions/make_map.html libs/fusion/doc/html/fusion/container/generation/functions/make_set.html libs/fusion/doc/html/fusion/container/generation/functions/make_vector.html libs/fusion/doc/html/fusion/container/generation/functions/map_tie.html libs/fusion/doc/html/fusion/container/generation/functions/tiers.html libs/fusion/doc/html/fusion/container/generation/functions/vector_tie.html libs/fusion/doc/html/fusion/container/generation/metafunctions.html libs/fusion/doc/html/fusion/container/generation/metafunctions/deque_tie.html libs/fusion/doc/html/fusion/container/generation/metafunctions/list_tie.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_cons.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_deque.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_list.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_map.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_set.html libs/fusion/doc/html/fusion/container/generation/metafunctions/make_vector.html libs/fusion/doc/html/fusion/container/generation/metafunctions/map_tie.html libs/fusion/doc/html/fusion/container/generation/metafunctions/vector_tie.html libs/fusion/doc/html/fusion/container/list.html libs/fusion/doc/html/fusion/container/map.html libs/fusion/doc/html/fusion/container/set.html libs/fusion/doc/html/fusion/container/vector.html libs/fusion/doc/html/fusion/extension.html libs/fusion/doc/html/fusion/extension/ext_full.html libs/fusion/doc/html/fusion/extension/iterator_facade.html libs/fusion/doc/html/fusion/extension/sequence_facade.html libs/fusion/doc/html/fusion/functional.html libs/fusion/doc/html/fusion/functional/adapters.html libs/fusion/doc/html/fusion/functional/adapters/fused.html libs/fusion/doc/html/fusion/functional/adapters/fused_function_object.html libs/fusion/doc/html/fusion/functional/adapters/fused_procedure.html libs/fusion/doc/html/fusion/functional/adapters/limits.html libs/fusion/doc/html/fusion/functional/adapters/unfused.html libs/fusion/doc/html/fusion/functional/adapters/unfused_typed.html libs/fusion/doc/html/fusion/functional/concepts.html libs/fusion/doc/html/fusion/functional/concepts/callable.html libs/fusion/doc/html/fusion/functional/concepts/def_callable.html libs/fusion/doc/html/fusion/functional/concepts/poly.html libs/fusion/doc/html/fusion/functional/concepts/reg_callable.html libs/fusion/doc/html/fusion/functional/generation.html libs/fusion/doc/html/fusion/functional/generation/functions.html libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused.html libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused_proc.html libs/fusion/doc/html/fusion/functional/generation/functions/mk_unfused.html libs/fusion/doc/html/fusion/functional/generation/metafunctions.html libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused.html libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_unfused.html libs/fusion/doc/html/fusion/functional/invocation.html libs/fusion/doc/html/fusion/functional/invocation/functions.html libs/fusion/doc/html/fusion/functional/invocation/functions/invoke.html libs/fusion/doc/html/fusion/functional/invocation/functions/invoke_fobj.html libs/fusion/doc/html/fusion/functional/invocation/functions/invoke_proc.html libs/fusion/doc/html/fusion/functional/invocation/limits.html libs/fusion/doc/html/fusion/functional/invocation/metafunctions.html libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke.html libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html libs/fusion/doc/html/fusion/introduction.html libs/fusion/doc/html/fusion/iterator.html libs/fusion/doc/html/fusion/iterator/concepts.html libs/fusion/doc/html/fusion/iterator/concepts/associative_iterator.html libs/fusion/doc/html/fusion/iterator/concepts/bidirectional_iterator.html libs/fusion/doc/html/fusion/iterator/concepts/forward_iterator.html libs/fusion/doc/html/fusion/iterator/concepts/random_access_iterator.html libs/fusion/doc/html/fusion/iterator/functions.html libs/fusion/doc/html/fusion/iterator/functions/advance.html libs/fusion/doc/html/fusion/iterator/functions/advance_c.html libs/fusion/doc/html/fusion/iterator/functions/deref.html libs/fusion/doc/html/fusion/iterator/functions/deref_data.html libs/fusion/doc/html/fusion/iterator/functions/distance.html libs/fusion/doc/html/fusion/iterator/functions/next.html libs/fusion/doc/html/fusion/iterator/functions/prior.html libs/fusion/doc/html/fusion/iterator/metafunctions.html libs/fusion/doc/html/fusion/iterator/metafunctions/advance.html libs/fusion/doc/html/fusion/iterator/metafunctions/advance_c.html libs/fusion/doc/html/fusion/iterator/metafunctions/deref.html libs/fusion/doc/html/fusion/iterator/metafunctions/deref_data.html libs/fusion/doc/html/fusion/iterator/metafunctions/distance.html libs/fusion/doc/html/fusion/iterator/metafunctions/equal_to.html libs/fusion/doc/html/fusion/iterator/metafunctions/key_of.html libs/fusion/doc/html/fusion/iterator/metafunctions/next.html libs/fusion/doc/html/fusion/iterator/metafunctions/prior.html libs/fusion/doc/html/fusion/iterator/metafunctions/value_of.html libs/fusion/doc/html/fusion/iterator/metafunctions/value_of_data.html libs/fusion/doc/html/fusion/iterator/operator.html libs/fusion/doc/html/fusion/iterator/operator/operator_equality.html libs/fusion/doc/html/fusion/iterator/operator/operator_inequality.html libs/fusion/doc/html/fusion/iterator/operator/operator_unary_star.html libs/fusion/doc/html/fusion/notes.html libs/fusion/doc/html/fusion/organization.html libs/fusion/doc/html/fusion/preface.html libs/fusion/doc/html/fusion/quick_start.html libs/fusion/doc/html/fusion/references.html libs/fusion/doc/html/fusion/sequence.html libs/fusion/doc/html/fusion/sequence/concepts.html libs/fusion/doc/html/fusion/sequence/concepts/associative_sequence.html libs/fusion/doc/html/fusion/sequence/concepts/bidirectional_sequence.html libs/fusion/doc/html/fusion/sequence/concepts/forward_sequence.html libs/fusion/doc/html/fusion/sequence/concepts/random_access_sequence.html libs/fusion/doc/html/fusion/sequence/intrinsic.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at_c.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at_key.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/back.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/begin.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/empty.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/end.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/front.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/has_key.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/size.html libs/fusion/doc/html/fusion/sequence/intrinsic/functions/swap.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/back.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/end.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/front.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/size.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html libs/fusion/doc/html/fusion/sequence/operator.html libs/fusion/doc/html/fusion/sequence/operator/comparison.html libs/fusion/doc/html/fusion/sequence/operator/comparison/equal.html libs/fusion/doc/html/fusion/sequence/operator/comparison/greater_than.html libs/fusion/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html libs/fusion/doc/html/fusion/sequence/operator/comparison/less_than.html libs/fusion/doc/html/fusion/sequence/operator/comparison/less_than_equal.html libs/fusion/doc/html/fusion/sequence/operator/comparison/not_equal.html libs/fusion/doc/html/fusion/sequence/operator/i_o.html libs/fusion/doc/html/fusion/sequence/operator/i_o/in.html libs/fusion/doc/html/fusion/sequence/operator/i_o/out.html libs/fusion/doc/html/fusion/support.html libs/fusion/doc/html/fusion/support/category_of.html libs/fusion/doc/html/fusion/support/deduce.html libs/fusion/doc/html/fusion/support/deduce_sequence.html libs/fusion/doc/html/fusion/support/is_sequence.html libs/fusion/doc/html/fusion/support/is_view.html libs/fusion/doc/html/fusion/support/pair.html libs/fusion/doc/html/fusion/support/tag_of.html libs/fusion/doc/html/fusion/tuple.html libs/fusion/doc/html/fusion/tuple/class_template_tuple.html libs/fusion/doc/html/fusion/tuple/class_template_tuple/construction.html libs/fusion/doc/html/fusion/tuple/class_template_tuple/element_access.html libs/fusion/doc/html/fusion/tuple/class_template_tuple/relational_operators.html libs/fusion/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html libs/fusion/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html libs/fusion/doc/html/fusion/tuple/pairs.html libs/fusion/doc/html/fusion/view.html libs/fusion/doc/html/fusion/view/filter_view.html libs/fusion/doc/html/fusion/view/iterator_range.html libs/fusion/doc/html/fusion/view/joint_view.html libs/fusion/doc/html/fusion/view/nview.html libs/fusion/doc/html/fusion/view/repetitive_view.html libs/fusion/doc/html/fusion/view/reverse_view.html libs/fusion/doc/html/fusion/view/single_view.html libs/fusion/doc/html/fusion/view/transform_view.html libs/fusion/doc/html/fusion/view/zip_view.html libs/fusion/doc/html/index.html libs/fusion/index.html libs/geometry/doc/html/geometry/aboutdoc.html libs/geometry/doc/html/geometry/acknowledgments.html libs/geometry/doc/html/geometry/compilation.html libs/geometry/doc/html/geometry/design.html libs/geometry/doc/html/geometry/examples.html libs/geometry/doc/html/geometry/examples/example__adapting_a_legacy_geometry_object_model.html libs/geometry/doc/html/geometry/examples/example_source_code__adapting_a_legacy_geometry_object_model.html libs/geometry/doc/html/geometry/indexes.html libs/geometry/doc/html/geometry/indexes/alphabetical_index.html libs/geometry/doc/html/geometry/indexes/matrix.html libs/geometry/doc/html/geometry/introduction.html libs/geometry/doc/html/geometry/quickstart.html libs/geometry/doc/html/geometry/reference.html libs/geometry/doc/html/geometry/reference/access.html libs/geometry/doc/html/geometry/reference/access/exterior_ring.html libs/geometry/doc/html/geometry/reference/access/exterior_ring/exterior_ring_1.html libs/geometry/doc/html/geometry/reference/access/exterior_ring/exterior_ring_1_const_version.html libs/geometry/doc/html/geometry/reference/access/get.html libs/geometry/doc/html/geometry/reference/access/get/get_1.html libs/geometry/doc/html/geometry/reference/access/get/get_1_with_index.html libs/geometry/doc/html/geometry/reference/access/get/get_as_radian.html libs/geometry/doc/html/geometry/reference/access/interior_rings.html libs/geometry/doc/html/geometry/reference/access/interior_rings/interior_rings_1.html libs/geometry/doc/html/geometry/reference/access/interior_rings/interior_rings_1_const_version.html libs/geometry/doc/html/geometry/reference/access/set.html libs/geometry/doc/html/geometry/reference/access/set/set_2.html libs/geometry/doc/html/geometry/reference/access/set/set_2_with_index.html libs/geometry/doc/html/geometry/reference/access/set/set_from_radian.html libs/geometry/doc/html/geometry/reference/adapted.html libs/geometry/doc/html/geometry/reference/adapted/boost_array.html libs/geometry/doc/html/geometry/reference/adapted/boost_fusion.html libs/geometry/doc/html/geometry/reference/adapted/boost_polygon.html libs/geometry/doc/html/geometry/reference/adapted/boost_polygon/point_data.html libs/geometry/doc/html/geometry/reference/adapted/boost_polygon/polygon_data.html libs/geometry/doc/html/geometry/reference/adapted/boost_polygon/polygon_with_holes_data.html libs/geometry/doc/html/geometry/reference/adapted/boost_polygon/rectangle_data.html libs/geometry/doc/html/geometry/reference/adapted/boost_range.html libs/geometry/doc/html/geometry/reference/adapted/boost_tuple.html libs/geometry/doc/html/geometry/reference/adapted/c_array.html libs/geometry/doc/html/geometry/reference/adapted/register.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_box.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_box_2d_4values.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_box_templated.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_linestring.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_linestring_templated.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_linestring.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_linestring_templated.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_point.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_point_templated.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_polygon.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_multi_polygon_templated.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_2d.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_2d_const.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_2d_get_set.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_3d.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_3d_const.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_point_3d_get_set.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_ring.html libs/geometry/doc/html/geometry/reference/adapted/register/boost_geometry_register_ring_templated.html libs/geometry/doc/html/geometry/reference/algorithms.html libs/geometry/doc/html/geometry/reference/algorithms/append.html libs/geometry/doc/html/geometry/reference/algorithms/area.html libs/geometry/doc/html/geometry/reference/algorithms/area/area_1.html libs/geometry/doc/html/geometry/reference/algorithms/area/area_2_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/assign.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_inverse.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_points.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_values_3_2_coordinate_values.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_values_4_3_coordinate_values.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_values_5_4_coordinate_values.html libs/geometry/doc/html/geometry/reference/algorithms/assign/assign_zero.html libs/geometry/doc/html/geometry/reference/algorithms/buffer.html libs/geometry/doc/html/geometry/reference/algorithms/buffer/buffer.html libs/geometry/doc/html/geometry/reference/algorithms/buffer/return_buffer.html libs/geometry/doc/html/geometry/reference/algorithms/centroid.html libs/geometry/doc/html/geometry/reference/algorithms/centroid/centroid_2.html libs/geometry/doc/html/geometry/reference/algorithms/centroid/centroid_3_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/centroid/return_centroid_1.html libs/geometry/doc/html/geometry/reference/algorithms/centroid/return_centroid_2_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/clear.html libs/geometry/doc/html/geometry/reference/algorithms/convert.html libs/geometry/doc/html/geometry/reference/algorithms/convex_hull.html libs/geometry/doc/html/geometry/reference/algorithms/correct.html libs/geometry/doc/html/geometry/reference/algorithms/covered_by.html libs/geometry/doc/html/geometry/reference/algorithms/covered_by/covered_by_2.html libs/geometry/doc/html/geometry/reference/algorithms/covered_by/covered_by_3_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/difference.html libs/geometry/doc/html/geometry/reference/algorithms/disjoint.html libs/geometry/doc/html/geometry/reference/algorithms/distance.html libs/geometry/doc/html/geometry/reference/algorithms/distance/comparable_distance.html libs/geometry/doc/html/geometry/reference/algorithms/distance/distance_2.html libs/geometry/doc/html/geometry/reference/algorithms/distance/distance_3_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/envelope.html libs/geometry/doc/html/geometry/reference/algorithms/envelope/envelope.html libs/geometry/doc/html/geometry/reference/algorithms/envelope/return_envelope.html libs/geometry/doc/html/geometry/reference/algorithms/equals.html libs/geometry/doc/html/geometry/reference/algorithms/expand.html libs/geometry/doc/html/geometry/reference/algorithms/for_each.html libs/geometry/doc/html/geometry/reference/algorithms/for_each/for_each_point.html libs/geometry/doc/html/geometry/reference/algorithms/for_each/for_each_segment.html libs/geometry/doc/html/geometry/reference/algorithms/intersection.html libs/geometry/doc/html/geometry/reference/algorithms/intersects.html libs/geometry/doc/html/geometry/reference/algorithms/intersects/intersects_1_one_geometry.html libs/geometry/doc/html/geometry/reference/algorithms/intersects/intersects_2_two_geometries.html libs/geometry/doc/html/geometry/reference/algorithms/length.html libs/geometry/doc/html/geometry/reference/algorithms/length/length_1.html libs/geometry/doc/html/geometry/reference/algorithms/length/length_2_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/make.html libs/geometry/doc/html/geometry/reference/algorithms/make/make_2_2_coordinate_values.html libs/geometry/doc/html/geometry/reference/algorithms/make/make_3_3_coordinate_values.html libs/geometry/doc/html/geometry/reference/algorithms/make/make_inverse.html libs/geometry/doc/html/geometry/reference/algorithms/make/make_zero.html libs/geometry/doc/html/geometry/reference/algorithms/num_geometries.html libs/geometry/doc/html/geometry/reference/algorithms/num_interior_rings.html libs/geometry/doc/html/geometry/reference/algorithms/num_points.html libs/geometry/doc/html/geometry/reference/algorithms/overlaps.html libs/geometry/doc/html/geometry/reference/algorithms/perimeter.html libs/geometry/doc/html/geometry/reference/algorithms/perimeter/perimeter_1.html libs/geometry/doc/html/geometry/reference/algorithms/perimeter/perimeter_2_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/reverse.html libs/geometry/doc/html/geometry/reference/algorithms/simplify.html libs/geometry/doc/html/geometry/reference/algorithms/simplify/simplify_3.html libs/geometry/doc/html/geometry/reference/algorithms/simplify/simplify_4_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/sym_difference.html libs/geometry/doc/html/geometry/reference/algorithms/touches.html libs/geometry/doc/html/geometry/reference/algorithms/touches/touches_1_one_geometry.html libs/geometry/doc/html/geometry/reference/algorithms/touches/touches_2_two_geometries.html libs/geometry/doc/html/geometry/reference/algorithms/transform.html libs/geometry/doc/html/geometry/reference/algorithms/transform/transform_2.html libs/geometry/doc/html/geometry/reference/algorithms/transform/transform_3_with_strategy.html libs/geometry/doc/html/geometry/reference/algorithms/union_.html libs/geometry/doc/html/geometry/reference/algorithms/unique.html libs/geometry/doc/html/geometry/reference/algorithms/within.html libs/geometry/doc/html/geometry/reference/algorithms/within/within_2.html libs/geometry/doc/html/geometry/reference/algorithms/within/within_3_with_strategy.html libs/geometry/doc/html/geometry/reference/arithmetic.html libs/geometry/doc/html/geometry/reference/arithmetic/add_point.html libs/geometry/doc/html/geometry/reference/arithmetic/add_value.html libs/geometry/doc/html/geometry/reference/arithmetic/assign_point.html libs/geometry/doc/html/geometry/reference/arithmetic/assign_value.html libs/geometry/doc/html/geometry/reference/arithmetic/divide_point.html libs/geometry/doc/html/geometry/reference/arithmetic/divide_value.html libs/geometry/doc/html/geometry/reference/arithmetic/dot_product.html libs/geometry/doc/html/geometry/reference/arithmetic/multiply_point.html libs/geometry/doc/html/geometry/reference/arithmetic/multiply_value.html libs/geometry/doc/html/geometry/reference/arithmetic/subtract_point.html libs/geometry/doc/html/geometry/reference/arithmetic/subtract_value.html libs/geometry/doc/html/geometry/reference/concepts.html libs/geometry/doc/html/geometry/reference/concepts/concept_box.html libs/geometry/doc/html/geometry/reference/concepts/concept_linestring.html libs/geometry/doc/html/geometry/reference/concepts/concept_multi_linestring.html libs/geometry/doc/html/geometry/reference/concepts/concept_multi_point.html libs/geometry/doc/html/geometry/reference/concepts/concept_multi_polygon.html libs/geometry/doc/html/geometry/reference/concepts/concept_point.html libs/geometry/doc/html/geometry/reference/concepts/concept_polygon.html libs/geometry/doc/html/geometry/reference/concepts/concept_ring.html libs/geometry/doc/html/geometry/reference/concepts/concept_segment.html libs/geometry/doc/html/geometry/reference/constants.html libs/geometry/doc/html/geometry/reference/constants/max_corner.html libs/geometry/doc/html/geometry/reference/constants/min_corner.html libs/geometry/doc/html/geometry/reference/core.html libs/geometry/doc/html/geometry/reference/core/closure.html libs/geometry/doc/html/geometry/reference/core/coordinate_system.html libs/geometry/doc/html/geometry/reference/core/coordinate_type.html libs/geometry/doc/html/geometry/reference/core/cs_tag.html libs/geometry/doc/html/geometry/reference/core/degree.html libs/geometry/doc/html/geometry/reference/core/dimension.html libs/geometry/doc/html/geometry/reference/core/interior_type.html libs/geometry/doc/html/geometry/reference/core/is_radian.html libs/geometry/doc/html/geometry/reference/core/point_order.html libs/geometry/doc/html/geometry/reference/core/point_type.html libs/geometry/doc/html/geometry/reference/core/radian.html libs/geometry/doc/html/geometry/reference/core/ring_type.html libs/geometry/doc/html/geometry/reference/core/tag.html libs/geometry/doc/html/geometry/reference/core/tag_cast.html libs/geometry/doc/html/geometry/reference/cs.html libs/geometry/doc/html/geometry/reference/cs/cs_cartesian.html libs/geometry/doc/html/geometry/reference/cs/cs_geographic.html libs/geometry/doc/html/geometry/reference/cs/cs_spherical.html libs/geometry/doc/html/geometry/reference/cs/cs_spherical_equatorial.html libs/geometry/doc/html/geometry/reference/enumerations.html libs/geometry/doc/html/geometry/reference/enumerations/closure_selector.html libs/geometry/doc/html/geometry/reference/enumerations/order_selector.html libs/geometry/doc/html/geometry/reference/exceptions.html libs/geometry/doc/html/geometry/reference/exceptions/centroid_exception.html libs/geometry/doc/html/geometry/reference/exceptions/exception.html libs/geometry/doc/html/geometry/reference/io.html libs/geometry/doc/html/geometry/reference/io/svg.html libs/geometry/doc/html/geometry/reference/io/svg/svg.html libs/geometry/doc/html/geometry/reference/io/svg/svg_mapper.html libs/geometry/doc/html/geometry/reference/io/wkt.html libs/geometry/doc/html/geometry/reference/iterators.html libs/geometry/doc/html/geometry/reference/iterators/closing_iterator.html libs/geometry/doc/html/geometry/reference/iterators/ever_circling_iterator.html libs/geometry/doc/html/geometry/reference/models.html libs/geometry/doc/html/geometry/reference/models/model_box.html libs/geometry/doc/html/geometry/reference/models/model_d2_point_xy.html libs/geometry/doc/html/geometry/reference/models/model_linestring.html libs/geometry/doc/html/geometry/reference/models/model_multi_linestring.html libs/geometry/doc/html/geometry/reference/models/model_multi_point.html libs/geometry/doc/html/geometry/reference/models/model_multi_polygon.html libs/geometry/doc/html/geometry/reference/models/model_point.html libs/geometry/doc/html/geometry/reference/models/model_polygon.html libs/geometry/doc/html/geometry/reference/models/model_referring_segment.html libs/geometry/doc/html/geometry/reference/models/model_ring.html libs/geometry/doc/html/geometry/reference/models/model_segment.html libs/geometry/doc/html/geometry/reference/spatial_indexes.html libs/geometry/doc/html/geometry/reference/spatial_indexes/observers.html libs/geometry/doc/html/geometry/reference/spatial_indexes/parameters.html libs/geometry/doc/html/geometry/reference/strategies.html libs/geometry/doc/html/geometry/reference/strategies/strategy_area_huiller.html libs/geometry/doc/html/geometry/reference/strategies/strategy_area_surveyor.html libs/geometry/doc/html/geometry/reference/strategies/strategy_centroid_average.html libs/geometry/doc/html/geometry/reference/strategies/strategy_centroid_bashein_detmer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_convex_hull_graham_andrew.html libs/geometry/doc/html/geometry/reference/strategies/strategy_distance_cross_track.html libs/geometry/doc/html/geometry/reference/strategies/strategy_distance_haversine.html libs/geometry/doc/html/geometry/reference/strategies/strategy_distance_projected_point.html libs/geometry/doc/html/geometry/reference/strategies/strategy_distance_pythagoras.html libs/geometry/doc/html/geometry/reference/strategies/strategy_side_side_by_cross_track.html libs/geometry/doc/html/geometry/reference/strategies/strategy_side_side_by_triangle.html libs/geometry/doc/html/geometry/reference/strategies/strategy_side_spherical_side_formula.html libs/geometry/doc/html/geometry/reference/strategies/strategy_simplify_douglas_peucker.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_inverse_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_map_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_rotate_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_scale_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_translate_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_transform_ublas_transformer.html libs/geometry/doc/html/geometry/reference/strategies/strategy_within_crossings_multiply.html libs/geometry/doc/html/geometry/reference/strategies/strategy_within_franklin.html libs/geometry/doc/html/geometry/reference/strategies/strategy_within_winding.html libs/geometry/doc/html/geometry/reference/views.html libs/geometry/doc/html/geometry/reference/views/box_view.html libs/geometry/doc/html/geometry/reference/views/closeable_view.html libs/geometry/doc/html/geometry/reference/views/identity_view.html libs/geometry/doc/html/geometry/reference/views/reversible_view.html libs/geometry/doc/html/geometry/reference/views/segment_view.html libs/geometry/doc/html/geometry/release_notes.html libs/geometry/doc/html/geometry/spatial_indexes.html libs/geometry/doc/html/geometry/spatial_indexes/creation_and_modification.html libs/geometry/doc/html/geometry/spatial_indexes/introduction.html libs/geometry/doc/html/geometry/spatial_indexes/queries.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/index_of_iterators_of_a_map_storing_variant_geometries.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/index_of_polygons_stored_in_vector.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/index_of_shared_pointers_to_polygons.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/index_stored_in_shared_memory_using_boost_interprocess.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/quick_start.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/specializing_index__indexable_function_object___storing_shared_pointers_in_the_rtree.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_examples/using_indexablegetter_function_object___storing_indexes_of_external_container_s_elements.html libs/geometry/doc/html/geometry/spatial_indexes/rtree_quickstart.html libs/geometry/doc/html/index.html libs/geometry/index.html libs/gil/doc/boost.png libs/gil/doc/html/algorithm_8hpp.html libs/gil/doc/html/annotated.html libs/gil/doc/html/any__image_8hpp.html libs/gil/doc/html/channel_8hpp.html libs/gil/doc/html/classes.html libs/gil/doc/html/cmyk_8hpp.html libs/gil/doc/html/deprecated_8hpp.html libs/gil/doc/html/device__n_8hpp.html libs/gil/doc/html/dirs.html libs/gil/doc/html/files.html libs/gil/doc/html/g_i_l_0001.html libs/gil/doc/html/g_i_l_0002.html libs/gil/doc/html/g_i_l_0003.html libs/gil/doc/html/g_i_l_0004.html libs/gil/doc/html/g_i_l_0005.html libs/gil/doc/html/g_i_l_0006.html libs/gil/doc/html/g_i_l_0007.html libs/gil/doc/html/g_i_l_0008.html libs/gil/doc/html/g_i_l_0010.html libs/gil/doc/html/g_i_l_0011.html libs/gil/doc/html/g_i_l_0012.html libs/gil/doc/html/g_i_l_0013.html libs/gil/doc/html/g_i_l_0014.html libs/gil/doc/html/g_i_l_0015.html libs/gil/doc/html/g_i_l_0016.html libs/gil/doc/html/g_i_l_0018.html libs/gil/doc/html/g_i_l_0020.html libs/gil/doc/html/g_i_l_0022.html libs/gil/doc/html/g_i_l_0024.html libs/gil/doc/html/g_i_l_0026.html libs/gil/doc/html/g_i_l_0028.html libs/gil/doc/html/g_i_l_0030.html libs/gil/doc/html/g_i_l_0032.html libs/gil/doc/html/g_i_l_0034.html libs/gil/doc/html/g_i_l_0036.html libs/gil/doc/html/g_i_l_0038.html libs/gil/doc/html/g_i_l_0040.html libs/gil/doc/html/g_i_l_0042.html libs/gil/doc/html/g_i_l_0044.html libs/gil/doc/html/g_i_l_0046.html libs/gil/doc/html/g_i_l_0048.html libs/gil/doc/html/g_i_l_0050.html libs/gil/doc/html/g_i_l_0052.html libs/gil/doc/html/g_i_l_0054.html libs/gil/doc/html/g_i_l_0056.html libs/gil/doc/html/g_i_l_0058.html libs/gil/doc/html/g_i_l_0060.html libs/gil/doc/html/g_i_l_0062.html libs/gil/doc/html/g_i_l_0064.html libs/gil/doc/html/g_i_l_0065.html libs/gil/doc/html/g_i_l_0066.html libs/gil/doc/html/g_i_l_0067.html libs/gil/doc/html/g_i_l_0068.html libs/gil/doc/html/g_i_l_0069.html libs/gil/doc/html/g_i_l_0070.html libs/gil/doc/html/g_i_l_0071.html libs/gil/doc/html/g_i_l_0072.html libs/gil/doc/html/g_i_l_0074.html libs/gil/doc/html/g_i_l_0075.html libs/gil/doc/html/g_i_l_0076.html libs/gil/doc/html/g_i_l_0077.html libs/gil/doc/html/g_i_l_0078.html libs/gil/doc/html/g_i_l_0079.html libs/gil/doc/html/g_i_l_0080.html libs/gil/doc/html/g_i_l_0081.html libs/gil/doc/html/g_i_l_0082.html libs/gil/doc/html/g_i_l_0083.html libs/gil/doc/html/g_i_l_0084.html libs/gil/doc/html/g_i_l_0085.html libs/gil/doc/html/g_i_l_0086.html libs/gil/doc/html/g_i_l_0087.html libs/gil/doc/html/g_i_l_0088.html libs/gil/doc/html/g_i_l_0089.html libs/gil/doc/html/g_i_l_0090.html libs/gil/doc/html/g_i_l_0091.html libs/gil/doc/html/g_i_l_0092.html libs/gil/doc/html/g_i_l_0093.html libs/gil/doc/html/g_i_l_0094.html libs/gil/doc/html/g_i_l_0095.html libs/gil/doc/html/g_i_l_0096.html libs/gil/doc/html/g_i_l_0097.html libs/gil/doc/html/g_i_l_0098.html libs/gil/doc/html/g_i_l_0099.html libs/gil/doc/html/g_i_l_0100.html libs/gil/doc/html/g_i_l_0101.html libs/gil/doc/html/g_i_l_0102.html libs/gil/doc/html/g_i_l_0103.html libs/gil/doc/html/g_i_l_0104.html libs/gil/doc/html/g_i_l_0105.html libs/gil/doc/html/g_i_l_0106.html libs/gil/doc/html/g_i_l_0107.html libs/gil/doc/html/g_i_l_0108.html libs/gil/doc/html/g_i_l_0109.html libs/gil/doc/html/g_i_l_0110.html libs/gil/doc/html/g_i_l_0111.html libs/gil/doc/html/g_i_l_0112.html libs/gil/doc/html/g_i_l_0113.html libs/gil/doc/html/g_i_l_0114.html libs/gil/doc/html/g_i_l_0115.html libs/gil/doc/html/g_i_l_0116.html libs/gil/doc/html/g_i_l_0117.html libs/gil/doc/html/g_i_l_0118.html libs/gil/doc/html/g_i_l_0119.html libs/gil/doc/html/g_i_l_0120.html libs/gil/doc/html/g_i_l_0121.html libs/gil/doc/html/g_i_l_0122.html libs/gil/doc/html/g_i_l_0123.html libs/gil/doc/html/g_i_l_0124.html libs/gil/doc/html/g_i_l_0126.html libs/gil/doc/html/g_i_l_0127.html libs/gil/doc/html/g_i_l_0128.html libs/gil/doc/html/g_i_l_0129.html libs/gil/doc/html/g_i_l_0130.html libs/gil/doc/html/g_i_l_0131.html libs/gil/doc/html/g_i_l_0132.html libs/gil/doc/html/g_i_l_0133.html libs/gil/doc/html/g_i_l_0134.html libs/gil/doc/html/g_i_l_0135.html libs/gil/doc/html/g_i_l_0136.html libs/gil/doc/html/g_i_l_0137.html libs/gil/doc/html/g_i_l_0138.html libs/gil/doc/html/g_i_l_0139.html libs/gil/doc/html/g_i_l_0140.html libs/gil/doc/html/g_i_l_0141.html libs/gil/doc/html/g_i_l_0142.html libs/gil/doc/html/g_i_l_0143.html libs/gil/doc/html/g_i_l_0145.html libs/gil/doc/html/g_i_l_0148.html libs/gil/doc/html/g_i_l_0149.html libs/gil/doc/html/g_i_l_0152.html libs/gil/doc/html/g_i_l_0153.html libs/gil/doc/html/g_i_l_0154.html libs/gil/doc/html/g_i_l_0155.html libs/gil/doc/html/g_i_l_0156.html libs/gil/doc/html/g_i_l_0157.html libs/gil/doc/html/g_i_l_0161.html libs/gil/doc/html/g_i_l_0169.html libs/gil/doc/html/g_i_l_0170.html libs/gil/doc/html/g_i_l_0171.html libs/gil/doc/html/g_i_l_0172.html libs/gil/doc/html/g_i_l_0173.html libs/gil/doc/html/g_i_l_0174.html libs/gil/doc/html/g_i_l_0175.html libs/gil/doc/html/g_i_l_0176.html libs/gil/doc/html/g_i_l_0177.html libs/gil/doc/html/g_i_l_0178.html libs/gil/doc/html/g_i_l_0179.html libs/gil/doc/html/g_i_l_0180.html libs/gil/doc/html/g_i_l_0181.html libs/gil/doc/html/g_i_l_0182.html libs/gil/doc/html/g_i_l_0183.html libs/gil/doc/html/g_i_l_0184.html libs/gil/doc/html/g_i_l_0185.html libs/gil/doc/html/g_i_l_0186.html libs/gil/doc/html/g_i_l_0187.html libs/gil/doc/html/g_i_l_0188.html libs/gil/doc/html/g_i_l_0189.html libs/gil/doc/html/g_i_l_0190.html libs/gil/doc/html/g_i_l_0191.html libs/gil/doc/html/g_i_l_0192.html libs/gil/doc/html/g_i_l_0193.html libs/gil/doc/html/g_i_l_0194.html libs/gil/doc/html/g_i_l_0195.html libs/gil/doc/html/g_i_l_0196.html libs/gil/doc/html/g_i_l_0197.html libs/gil/doc/html/g_i_l_0198.html libs/gil/doc/html/g_i_l_0199.html libs/gil/doc/html/g_i_l_0200.html libs/gil/doc/html/g_i_l_0201.html libs/gil/doc/html/g_i_l_0202.html libs/gil/doc/html/g_i_l_0203.html libs/gil/doc/html/g_i_l_0204.html libs/gil/doc/html/g_i_l_0205.html libs/gil/doc/html/g_i_l_0206.html libs/gil/doc/html/g_i_l_0207.html libs/gil/doc/html/g_i_l_0208.html libs/gil/doc/html/g_i_l_0209.html libs/gil/doc/html/g_i_l_0210.html libs/gil/doc/html/g_i_l_0211.html libs/gil/doc/html/g_i_l_0212.html libs/gil/doc/html/g_i_l_0213.html libs/gil/doc/html/g_i_l_0214.html libs/gil/doc/html/g_i_l_0215.html libs/gil/doc/html/g_i_l_0216.html libs/gil/doc/html/g_i_l_0217.html libs/gil/doc/html/g_i_l_0218.html libs/gil/doc/html/g_i_l_0219.html libs/gil/doc/html/g_i_l_0220.html libs/gil/doc/html/g_i_l_0221.html libs/gil/doc/html/g_i_l_0223.html libs/gil/doc/html/g_i_l_0224.html libs/gil/doc/html/g_i_l_0225.html libs/gil/doc/html/g_i_l_0226.html libs/gil/doc/html/g_i_l_0227.html libs/gil/doc/html/g_i_l_0228.html libs/gil/doc/html/g_i_l_0229.html libs/gil/doc/html/g_i_l_0230.html libs/gil/doc/html/g_i_l_0231.html libs/gil/doc/html/g_i_l_0232.html libs/gil/doc/html/g_i_l_0233.html libs/gil/doc/html/g_i_l_0234.html libs/gil/doc/html/g_i_l_0235.html libs/gil/doc/html/g_i_l_0236.html libs/gil/doc/html/g_i_l_0237.html libs/gil/doc/html/g_i_l_0238.html libs/gil/doc/html/g_i_l_0239.html libs/gil/doc/html/g_i_l_0240.html libs/gil/doc/html/g_i_l_0241.html libs/gil/doc/html/g_i_l_0242.html libs/gil/doc/html/g_i_l_0243.html libs/gil/doc/html/g_i_l_0244.html libs/gil/doc/html/g_i_l_0245.html libs/gil/doc/html/g_i_l_0246.html libs/gil/doc/html/g_i_l_0247.html libs/gil/doc/html/g_i_l_0248.html libs/gil/doc/html/g_i_l_0249.html libs/gil/doc/html/g_i_l_0250.html libs/gil/doc/html/g_i_l_0251.html libs/gil/doc/html/g_i_l_0252.html libs/gil/doc/html/g_i_l_0253.html libs/gil/doc/html/g_i_l_0254.html libs/gil/doc/html/g_i_l_0255.html libs/gil/doc/html/g_i_l_0256.html libs/gil/doc/html/g_i_l_0257.html libs/gil/doc/html/g_i_l_0258.html libs/gil/doc/html/g_i_l_0259.html libs/gil/doc/html/g_i_l_0260.html libs/gil/doc/html/g_i_l_0262.html libs/gil/doc/html/g_i_l_0264.html libs/gil/doc/html/g_i_l_0266.html libs/gil/doc/html/g_i_l_0268.html libs/gil/doc/html/g_i_l_0270.html libs/gil/doc/html/g_i_l_0272.html libs/gil/doc/html/g_i_l_0274.html libs/gil/doc/html/g_i_l_0276.html libs/gil/doc/html/g_i_l_0278.html libs/gil/doc/html/g_i_l_0280.html libs/gil/doc/html/g_i_l_0282.html libs/gil/doc/html/g_i_l_0284.html libs/gil/doc/html/g_i_l_0286.html libs/gil/doc/html/g_i_l_0288.html libs/gil/doc/html/g_i_l_0290.html libs/gil/doc/html/g_i_l_0292.html libs/gil/doc/html/g_i_l_0294.html libs/gil/doc/html/g_i_l_0296.html libs/gil/doc/html/g_i_l_0298.html libs/gil/doc/html/g_i_l_0300.html libs/gil/doc/html/g_i_l_0302.html libs/gil/doc/html/g_i_l_0304.html libs/gil/doc/html/g_i_l_0306.html libs/gil/doc/html/g_i_l_0308.html libs/gil/doc/html/g_i_l_0310.html libs/gil/doc/html/g_i_l_0312.html libs/gil/doc/html/g_i_l_0314.html libs/gil/doc/html/g_i_l_0316.html libs/gil/doc/html/g_i_l_0318.html libs/gil/doc/html/g_i_l_0320.html libs/gil/doc/html/g_i_l_0322.html libs/gil/doc/html/g_i_l_0324.html libs/gil/doc/html/g_i_l_0326.html libs/gil/doc/html/g_i_l_0328.html libs/gil/doc/html/g_i_l_0330.html libs/gil/doc/html/g_i_l_0332.html libs/gil/doc/html/g_i_l_0334.html libs/gil/doc/html/g_i_l_0336.html libs/gil/doc/html/g_i_l_0338.html libs/gil/doc/html/g_i_l_0340.html libs/gil/doc/html/g_i_l_0342.html libs/gil/doc/html/g_i_l_0344.html libs/gil/doc/html/g_i_l_0346.html libs/gil/doc/html/g_i_l_0348.html libs/gil/doc/html/g_i_l_0350.html libs/gil/doc/html/g_i_l_0352.html libs/gil/doc/html/g_i_l_0354.html libs/gil/doc/html/g_i_l_0356.html libs/gil/doc/html/g_i_l_0358.html libs/gil/doc/html/g_i_l_0360.html libs/gil/doc/html/g_i_l_0362.html libs/gil/doc/html/g_i_l_0364.html libs/gil/doc/html/g_i_l_0366.html libs/gil/doc/html/g_i_l_0368.html libs/gil/doc/html/g_i_l_0370.html libs/gil/doc/html/g_i_l_0372.html libs/gil/doc/html/g_i_l_0374.html libs/gil/doc/html/g_i_l_0376.html libs/gil/doc/html/g_i_l_0378.html libs/gil/doc/html/g_i_l_0380.html libs/gil/doc/html/g_i_l_0382.html libs/gil/doc/html/g_i_l_0384.html libs/gil/doc/html/g_i_l_0385.html libs/gil/doc/html/g_i_l_0387.html libs/gil/doc/html/g_i_l_0389.html libs/gil/doc/html/g_i_l_0391.html libs/gil/doc/html/g_i_l_0393.html libs/gil/doc/html/g_i_l_0395.html libs/gil/doc/html/g_i_l_0397.html libs/gil/doc/html/g_i_l_0399.html libs/gil/doc/html/g_i_l_0401.html libs/gil/doc/html/g_i_l_0403.html libs/gil/doc/html/g_i_l_0404.html libs/gil/doc/html/g_i_l_0405.html libs/gil/doc/html/g_i_l_0406.html libs/gil/doc/html/g_i_l_0408.html libs/gil/doc/html/g_i_l_0410.html libs/gil/doc/html/g_i_l_0412.html libs/gil/doc/html/g_i_l_0414.html libs/gil/doc/html/g_i_l_0416.html libs/gil/doc/html/g_i_l_0418.html libs/gil/doc/html/g_i_l_0420.html libs/gil/doc/html/g_i_l_0422.html libs/gil/doc/html/g_i_l_0424.html libs/gil/doc/html/g_i_l_0426.html libs/gil/doc/html/g_i_l_0428.html libs/gil/doc/html/g_i_l_0429.html libs/gil/doc/html/g_i_l_0431.html libs/gil/doc/html/g_i_l_0432.html libs/gil/doc/html/g_i_l_0434.html libs/gil/doc/html/g_i_l_0436.html libs/gil/doc/html/g_i_l_0438.html libs/gil/doc/html/g_i_l_0440.html libs/gil/doc/html/g_i_l_0442.html libs/gil/doc/html/g_i_l_0444.html libs/gil/doc/html/g_i_l_0445.html libs/gil/doc/html/g_i_l_0447.html libs/gil/doc/html/g_i_l_0448.html libs/gil/doc/html/g_i_l_0450.html libs/gil/doc/html/g_i_l_0452.html libs/gil/doc/html/g_i_l_0453.html libs/gil/doc/html/g_i_l_0455.html libs/gil/doc/html/g_i_l_0457.html libs/gil/doc/html/g_i_l_0459.html libs/gil/doc/html/g_i_l_0461.html libs/gil/doc/html/g_i_l_0463.html libs/gil/doc/html/g_i_l_0465.html libs/gil/doc/html/g_i_l_0467.html libs/gil/doc/html/g_i_l_0469.html libs/gil/doc/html/g_i_l_0471.html libs/gil/doc/html/g_i_l_0473.html libs/gil/doc/html/g_i_l_0475.html libs/gil/doc/html/g_i_l_0477.html libs/gil/doc/html/g_i_l_0479.html libs/gil/doc/html/g_i_l_0481.html libs/gil/doc/html/g_i_l_0483.html libs/gil/doc/html/g_i_l_0485.html libs/gil/doc/html/g_i_l_0487.html libs/gil/doc/html/g_i_l_0489.html libs/gil/doc/html/g_i_l_0490.html libs/gil/doc/html/g_i_l_0493.html libs/gil/doc/html/g_i_l_0494.html libs/gil/doc/html/g_i_l_0496.html libs/gil/doc/html/g_i_l_0499.html libs/gil/doc/html/g_i_l_0501.html libs/gil/doc/html/g_i_l_0503.html libs/gil/doc/html/g_i_l_0505.html libs/gil/doc/html/g_i_l_0507.html libs/gil/doc/html/g_i_l_0509.html libs/gil/doc/html/g_i_l_0511.html libs/gil/doc/html/g_i_l_0513.html libs/gil/doc/html/g_i_l_0515.html libs/gil/doc/html/g_i_l_0517.html libs/gil/doc/html/g_i_l_0519.html libs/gil/doc/html/g_i_l_0521.html libs/gil/doc/html/g_i_l_0522.html libs/gil/doc/html/g_i_l_0523.html libs/gil/doc/html/g_i_l_0525.html libs/gil/doc/html/g_i_l_0526.html libs/gil/doc/html/g_i_l_0527.html libs/gil/doc/html/g_i_l_0528.html libs/gil/doc/html/g_i_l_0529.html libs/gil/doc/html/g_i_l_0530.html libs/gil/doc/html/g_i_l_0531.html libs/gil/doc/html/g_i_l_0532.html libs/gil/doc/html/g_i_l_0533.html libs/gil/doc/html/g_i_l_0534.html libs/gil/doc/html/g_i_l_0535.html libs/gil/doc/html/g_i_l_0536.html libs/gil/doc/html/g_i_l_0537.html libs/gil/doc/html/g_i_l_0538.html libs/gil/doc/html/g_i_l_0540.html libs/gil/doc/html/g_i_l_0541.html libs/gil/doc/html/g_i_l_0542.html libs/gil/doc/html/g_i_l_0543.html libs/gil/doc/html/g_i_l_0544.html libs/gil/doc/html/g_i_l_0546.html libs/gil/doc/html/g_i_l_0547.html libs/gil/doc/html/g_i_l_0549.html libs/gil/doc/html/g_i_l_0550.html libs/gil/doc/html/g_i_l_0551.html libs/gil/doc/html/g_i_l_0552.html libs/gil/doc/html/g_i_l_0553.html libs/gil/doc/html/g_i_l_0555.html libs/gil/doc/html/g_i_l_0557.html libs/gil/doc/html/g_i_l_0559.html libs/gil/doc/html/g_i_l_0561.html libs/gil/doc/html/g_i_l_0563.html libs/gil/doc/html/g_i_l_0565.html libs/gil/doc/html/g_i_l_0567.html libs/gil/doc/html/g_i_l_0568.html libs/gil/doc/html/g_i_l_0569.html libs/gil/doc/html/g_i_l_0570.html libs/gil/doc/html/g_i_l_0571.html libs/gil/doc/html/g_i_l_0573.html libs/gil/doc/html/g_i_l_0574.html libs/gil/doc/html/g_i_l_0576.html libs/gil/doc/html/g_i_l_0578.html libs/gil/doc/html/g_i_l_0580.html libs/gil/doc/html/g_i_l_0581.html libs/gil/doc/html/g_i_l_0583.html libs/gil/doc/html/g_i_l_0585.html libs/gil/doc/html/g_i_l_0587.html libs/gil/doc/html/g_i_l_0589.html libs/gil/doc/html/g_i_l_0591.html libs/gil/doc/html/g_i_l_0593.html libs/gil/doc/html/g_i_l_0595.html libs/gil/doc/html/g_i_l_0597.html libs/gil/doc/html/g_i_l_0599.html libs/gil/doc/html/g_i_l_0600.html libs/gil/doc/html/g_i_l_0601.html libs/gil/doc/html/g_i_l_0602.html libs/gil/doc/html/g_i_l_0603.html libs/gil/doc/html/g_i_l_0604.html libs/gil/doc/html/g_i_l_0606.html libs/gil/doc/html/g_i_l_0607.html libs/gil/doc/html/g_i_l_0609.html libs/gil/doc/html/g_i_l_0611.html libs/gil/doc/html/g_i_l_0613.html libs/gil/doc/html/g_i_l_0615.html libs/gil/doc/html/g_i_l_0617.html libs/gil/doc/html/g_i_l_0618.html libs/gil/doc/html/g_i_l_0620.html libs/gil/doc/html/g_i_l_0621.html libs/gil/doc/html/g_i_l_0623.html libs/gil/doc/html/g_i_l_0625.html libs/gil/doc/html/g_i_l_0627.html libs/gil/doc/html/g_i_l_0628.html libs/gil/doc/html/g_i_l_0629.html libs/gil/doc/html/g_i_l_0630.html libs/gil/doc/html/g_i_l_0631.html libs/gil/doc/html/g_i_l_0633.html libs/gil/doc/html/g_i_l_0635.html libs/gil/doc/html/g_i_l_0636.html libs/gil/doc/html/g_i_l_0637.html libs/gil/doc/html/g_i_l_0638.html libs/gil/doc/html/g_i_l_0639.html libs/gil/doc/html/g_i_l_0640.html libs/gil/doc/html/g_i_l_0641.html libs/gil/doc/html/g_i_l_0642.html libs/gil/doc/html/g_i_l_0643.html libs/gil/doc/html/g_i_l_0644.html libs/gil/doc/html/g_i_l_0645.html libs/gil/doc/html/gil__all_8hpp.html libs/gil/doc/html/gildesignguide.html libs/gil/doc/html/giltutorial.html libs/gil/doc/html/gray_8hpp.html libs/gil/doc/html/group___channel.html libs/gil/doc/html/group___i_o.html libs/gil/doc/html/group___image.html libs/gil/doc/html/group___pixel.html libs/gil/doc/html/group___point.html libs/gil/doc/html/group___variant.html libs/gil/doc/html/group__bits16.html libs/gil/doc/html/group__bits16s.html libs/gil/doc/html/group__bits32.html libs/gil/doc/html/group__bits32f.html libs/gil/doc/html/group__bits32s.html libs/gil/doc/html/group__bits8.html libs/gil/doc/html/group__bits8s.html libs/gil/doc/html/image_8hpp.html libs/gil/doc/html/index.html libs/gil/doc/html/io__error_8hpp.html libs/gil/doc/html/jpeg__io_8hpp.html libs/gil/doc/html/locator_8hpp.html libs/gil/doc/html/namespaceboost.html libs/gil/doc/html/pixel_8hpp.html libs/gil/doc/html/png__io_8hpp.html libs/gil/doc/html/reduce_8hpp.html libs/gil/doc/html/rgb_8hpp-source.html libs/gil/doc/html/rgb_8hpp.html libs/gil/doc/html/rgba_8hpp.html libs/gil/doc/html/tiff__io_8hpp.html libs/gil/doc/html/typedefs_8hpp.html libs/gil/doc/html/utilities_8hpp.html libs/gil/doc/html/variant_8hpp.html libs/gil/doc/index.html libs/graph/doc/AStarHeuristic.html libs/graph/doc/AStarVisitor.html libs/graph/doc/AddEdgeVisitor.html libs/graph/doc/AdjacencyGraph.html libs/graph/doc/AdjacencyMatrix.html libs/graph/doc/BFSVisitor.html libs/graph/doc/BasicMatrix.html libs/graph/doc/BellmanFordVisitor.html libs/graph/doc/BidirectionalGraph.html libs/graph/doc/Buffer.html libs/graph/doc/ColorValue.html libs/graph/doc/DFSVisitor.html libs/graph/doc/DijkstraVisitor.html libs/graph/doc/EdgeListGraph.html libs/graph/doc/EdgeMutableGraph.html libs/graph/doc/EventVisitor.html libs/graph/doc/EventVisitorList.html libs/graph/doc/Graph.html libs/graph/doc/IncidenceGraph.html libs/graph/doc/IteratorConstructibleGraph.html libs/graph/doc/KeyedUpdatableQueue.html libs/graph/doc/Monoid.html libs/graph/doc/MutableGraph.html libs/graph/doc/MutablePropertyGraph.html libs/graph/doc/PlanarEmbedding.html libs/graph/doc/PlanarFaceVisitor.html libs/graph/doc/PropertyGraph.html libs/graph/doc/PropertyTag.html libs/graph/doc/TSPTourVisitor.html libs/graph/doc/UpdatableQueue.html libs/graph/doc/VertexAndEdgeListGraph.html libs/graph/doc/VertexListGraph.html libs/graph/doc/VertexMutableGraph.html libs/graph/doc/acknowledgements.html libs/graph/doc/adjacency_iterator.html libs/graph/doc/adjacency_list.html libs/graph/doc/adjacency_list_traits.html libs/graph/doc/adjacency_matrix.html libs/graph/doc/astar_heuristic.html libs/graph/doc/astar_search.html libs/graph/doc/astar_visitor.html libs/graph/doc/bandwidth.html libs/graph/doc/bc_clustering.html libs/graph/doc/bellman_ford_shortest.html libs/graph/doc/bellman_visitor.html libs/graph/doc/betweenness_centrality.html libs/graph/doc/bfs_visitor.html libs/graph/doc/bgl_named_params.html libs/graph/doc/bibliography.html libs/graph/doc/biconnected_components.html libs/graph/doc/boyer_myrvold.html libs/graph/doc/boykov_kolmogorov_max_flow.html libs/graph/doc/breadth_first_search.html libs/graph/doc/breadth_first_visit.html libs/graph/doc/bundles.html libs/graph/doc/challenge.html libs/graph/doc/circle_layout.html libs/graph/doc/compressed_sparse_row.html libs/graph/doc/connected_components.html libs/graph/doc/constructing_algorithms.html libs/graph/doc/copy_graph.html libs/graph/doc/cuthill_mckee_ordering.html libs/graph/doc/dag_shortest_paths.html libs/graph/doc/depth_first_search.html libs/graph/doc/depth_first_visit.html libs/graph/doc/dfs_visitor.html libs/graph/doc/dijkstra_shortest_paths.html libs/graph/doc/dijkstra_shortest_paths_no_color_map.html libs/graph/doc/dijkstra_visitor.html libs/graph/doc/directed_graph.html libs/graph/doc/distance_recorder.html libs/graph/doc/edge_list.html libs/graph/doc/edge_predecessor_recorder.html libs/graph/doc/edmonds_karp_max_flow.html libs/graph/doc/erdos_renyi_generator.html libs/graph/doc/exception.html libs/graph/doc/faq.html libs/graph/doc/file_dependency_example.html libs/graph/doc/filtered_graph.html libs/graph/doc/find_odd_cycle.html libs/graph/doc/floyd_warshall_shortest.html libs/graph/doc/fruchterman_reingold.html libs/graph/doc/graph_coloring.html libs/graph/doc/graph_concepts.html libs/graph/doc/graph_theory_review.html libs/graph/doc/graph_traits.html libs/graph/doc/grid_graph.html libs/graph/doc/gursoy_atun_layout.html libs/graph/doc/history.html libs/graph/doc/howard_cycle_ratio.html libs/graph/doc/incident.html libs/graph/doc/incremental_components.html libs/graph/doc/index.html libs/graph/doc/inv_adjacency_iterator.html libs/graph/doc/is_bipartite.html libs/graph/doc/is_kuratowski_subgraph.html libs/graph/doc/is_straight_line_drawing.html libs/graph/doc/isomorphism.html libs/graph/doc/johnson_all_pairs_shortest.html libs/graph/doc/kamada_kawai_spring_layout.html libs/graph/doc/kevin_bacon.html libs/graph/doc/king_ordering.html libs/graph/doc/known_problems.html libs/graph/doc/kruskal_min_spanning_tree.html libs/graph/doc/layout_tolerance.html libs/graph/doc/leda_conversion.html libs/graph/doc/lengauer_tarjan_dominator.htm libs/graph/doc/make_biconnected_planar.html libs/graph/doc/make_connected.html libs/graph/doc/make_maximal_planar.html libs/graph/doc/maximum_adjacency_search.html libs/graph/doc/maximum_matching.html libs/graph/doc/mcgregor_common_subgraphs.html libs/graph/doc/metric_tsp_approx.html libs/graph/doc/minimum_degree_ordering.html libs/graph/doc/null_visitor.html libs/graph/doc/opposite.html libs/graph/doc/planar_canonical_ordering.html libs/graph/doc/planar_face_traversal.html libs/graph/doc/planar_graphs.html libs/graph/doc/plod_generator.html libs/graph/doc/predecessor_recorder.html libs/graph/doc/prim_minimum_spanning_tree.html libs/graph/doc/profile.htm libs/graph/doc/property.html libs/graph/doc/property_map.html libs/graph/doc/property_put.html libs/graph/doc/property_writer.html libs/graph/doc/publications.html libs/graph/doc/push_relabel_max_flow.html libs/graph/doc/python.html libs/graph/doc/quick_tour.html libs/graph/doc/r_c_shortest_paths.html libs/graph/doc/random.html libs/graph/doc/random_layout.html libs/graph/doc/random_spanning_tree.html libs/graph/doc/read_dimacs.html libs/graph/doc/read_graphml.html libs/graph/doc/read_graphviz.html libs/graph/doc/reverse_graph.html libs/graph/doc/sequential_vertex_coloring.html libs/graph/doc/sloan_ordering.htm libs/graph/doc/sloan_start_end_vertices.htm libs/graph/doc/small_world_generator.html libs/graph/doc/sorted_erdos_renyi_gen.html libs/graph/doc/sparse_matrix_ordering.html libs/graph/doc/stanford_graph.html libs/graph/doc/stoer_wagner_min_cut.html libs/graph/doc/straight_line_drawing.html libs/graph/doc/strong_components.html libs/graph/doc/subgraph.html libs/graph/doc/table_of_contents.html libs/graph/doc/time_stamper.html libs/graph/doc/topological_sort.html libs/graph/doc/topology.html libs/graph/doc/transitive_closure.html libs/graph/doc/transpose_graph.html libs/graph/doc/trouble_shooting.html libs/graph/doc/tsp_tour_len_visitor.html libs/graph/doc/tsp_tour_visitor.html libs/graph/doc/two_graphs_common_spanning_trees.html libs/graph/doc/undirected_dfs.html libs/graph/doc/undirected_graph.html libs/graph/doc/users.html libs/graph/doc/using_adjacency_list.html libs/graph/doc/using_property_maps.html libs/graph/doc/vf2_sub_graph_iso.html libs/graph/doc/visitor_concepts.html libs/graph/doc/wavefront.htm libs/graph/doc/write-graphviz.html libs/graph/doc/write_dimacs.html libs/graph/doc/write_graphml.html libs/graph/index.html libs/graph_parallel/doc/html/DistributedEdgeListGraph.html libs/graph_parallel/doc/html/DistributedGraph.html libs/graph_parallel/doc/html/DistributedVertexListGraph.html libs/graph_parallel/doc/html/GlobalDescriptor.html libs/graph_parallel/doc/html/betweenness_centrality.html libs/graph_parallel/doc/html/boman_et_al_graph_coloring.html libs/graph_parallel/doc/html/breadth_first_search.html libs/graph_parallel/doc/html/connected_components.html libs/graph_parallel/doc/html/connected_components_parallel_search.html libs/graph_parallel/doc/html/dehne_gotz_min_spanning_tree.html libs/graph_parallel/doc/html/dijkstra_example.html libs/graph_parallel/doc/html/dijkstra_shortest_paths.html libs/graph_parallel/doc/html/distributedS.html libs/graph_parallel/doc/html/distributed_adjacency_list.html libs/graph_parallel/doc/html/distributed_property_map.html libs/graph_parallel/doc/html/distributed_queue.html libs/graph_parallel/doc/html/fruchterman_reingold.html libs/graph_parallel/doc/html/index.html libs/graph_parallel/doc/html/local_subgraph.html libs/graph_parallel/doc/html/mesh_generator.html libs/graph_parallel/doc/html/metis.html libs/graph_parallel/doc/html/mpi_bsp_process_group.html libs/graph_parallel/doc/html/non_distributed_betweenness_centrality.html libs/graph_parallel/doc/html/overview.html libs/graph_parallel/doc/html/page_rank.html libs/graph_parallel/doc/html/process_group.html libs/graph_parallel/doc/html/rmat_generator.html libs/graph_parallel/doc/html/scalable_rmat_generator.html libs/graph_parallel/doc/html/simple_trigger.html libs/graph_parallel/doc/html/sorted_rmat_generator.html libs/graph_parallel/doc/html/sorted_unique_rmat_generator.html libs/graph_parallel/doc/html/ssca_generator.html libs/graph_parallel/doc/html/st_connected.html libs/graph_parallel/doc/html/strong_components.html libs/graph_parallel/doc/html/tsin_depth_first_visit.html libs/graph_parallel/doc/html/unique_rmat_generator.html libs/graph_parallel/doc/html/vertex_list_adaptor.html libs/graph_parallel/index.html libs/heap/index.html libs/icl/doc/html/ICL_IMPL_SPACE.html libs/icl/doc/html/boost/icl/add_iterator.html libs/icl/doc/html/boost/icl/adder.html libs/icl/doc/html/boost/icl/bounded_value.html libs/icl/doc/html/boost/icl/closed_interval.html libs/icl/doc/html/boost/icl/continuous_interval.html libs/icl/doc/html/boost/icl/conversion.html libs/icl/doc/html/boost/icl/discrete_interval.html libs/icl/doc/html/boost/icl/dynamic_interval_traits.html libs/icl/doc/html/boost/icl/inplace_bit_add.html libs/icl/doc/html/boost/icl/inplace_bit_and.html libs/icl/doc/html/boost/icl/inplace_bit_subtract.html libs/icl/doc/html/boost/icl/inplace_bit_xor.html libs/icl/doc/html/boost/icl/inplace_caret.html libs/icl/doc/html/boost/icl/inplace_erase.html libs/icl/doc/html/boost/icl/inplace_erasure.html libs/icl/doc/html/boost/icl/inplace_et.html libs/icl/doc/html/boost/icl/inplace_identity.html libs/icl/doc/html/boost/icl/inplace_insert.html libs/icl/doc/html/boost/icl/inplace_max.html libs/icl/doc/html/boost/icl/inplace_min.html libs/icl/doc/html/boost/icl/inplace_minus.html libs/icl/doc/html/boost/icl/inplace_plus.html libs/icl/doc/html/boost/icl/inplace_slash.html libs/icl/doc/html/boost/icl/inplace_star.html libs/icl/doc/html/boost/icl/insert_iterator.html libs/icl/doc/html/boost/icl/inserter.html libs/icl/doc/html/boost/icl/inter_section.html libs/icl/doc/html/boost/icl/interval.html libs/icl/doc/html/boost/icl/interval_base_map.html libs/icl/doc/html/boost/icl/interval_base_map/on_codomain_model_id664034.html libs/icl/doc/html/boost/icl/interval_base_map/on_codomain_model_id664096.html libs/icl/doc/html/boost/icl/interval_base_map/on_definedness_Ty_id664162.html libs/icl/doc/html/boost/icl/interval_base_map/on_definedness_Ty_id664199.html libs/icl/doc/html/boost/icl/interval_base_map/on_invertible_Typ_id664236.html libs/icl/doc/html/boost/icl/interval_base_map/on_invertible_Typ_id664278.html libs/icl/doc/html/boost/icl/interval_base_map/on_total_absorbab_id664320.html libs/icl/doc/html/boost/icl/interval_base_map/on_total_absorbab_id664394.html libs/icl/doc/html/boost/icl/interval_base_map/on_total_absorbab_id664439.html libs/icl/doc/html/boost/icl/interval_base_set.html libs/icl/doc/html/boost/icl/interval_bounds.html libs/icl/doc/html/boost/icl/interval_map.html libs/icl/doc/html/boost/icl/interval_set.html libs/icl/doc/html/boost/icl/interval_traits.html libs/icl/doc/html/boost/icl/interval_traits_i_id660269.html libs/icl/doc/html/boost/icl/interval_traits_i_id660657.html libs/icl/doc/html/boost/icl/interval_traits_i_id661191.html libs/icl/doc/html/boost/icl/interval_traits_i_id672051.html libs/icl/doc/html/boost/icl/interval_traits_i_id674239.html libs/icl/doc/html/boost/icl/interval_traits_i_id677096.html libs/icl/doc/html/boost/icl/inverse.html libs/icl/doc/html/boost/icl/is_map_icl_interv_id670379.html libs/icl/doc/html/boost/icl/is_map_icl_split__id678442.html libs/icl/doc/html/boost/icl/is_negative.html libs/icl/doc/html/boost/icl/is_set_icl_interv_id668704.html libs/icl/doc/html/boost/icl/is_set_icl_interv_id671322.html libs/icl/doc/html/boost/icl/is_set_icl_separa_id677689.html libs/icl/doc/html/boost/icl/is_set_icl_split__id679477.html libs/icl/doc/html/boost/icl/left_open_interval.html libs/icl/doc/html/boost/icl/map.html libs/icl/doc/html/boost/icl/map/on_codomain_model_id672316.html libs/icl/doc/html/boost/icl/map/on_codomain_model_id672356.html libs/icl/doc/html/boost/icl/map/on_codomain_model_id672396.html libs/icl/doc/html/boost/icl/map/on_codomain_model_id672440.html libs/icl/doc/html/boost/icl/map/on_definedness_Ty_id672484.html libs/icl/doc/html/boost/icl/map/on_definedness_Ty_id672522.html libs/icl/doc/html/boost/icl/map/on_invertible_Typ_id672559.html libs/icl/doc/html/boost/icl/map/on_invertible_Typ_id672601.html libs/icl/doc/html/boost/icl/map/on_total_absorbab_id672643.html libs/icl/doc/html/boost/icl/map/on_total_absorbab_id672697.html libs/icl/doc/html/boost/icl/map/on_total_absorbab_id672751.html libs/icl/doc/html/boost/icl/map/on_total_absorbab_id672795.html libs/icl/doc/html/boost/icl/mapping_pair.html libs/icl/doc/html/boost/icl/open_interval.html libs/icl/doc/html/boost/icl/partial_absorber.html libs/icl/doc/html/boost/icl/partial_enricher.html libs/icl/doc/html/boost/icl/right_open_interval.html libs/icl/doc/html/boost/icl/separate_interval_set.html libs/icl/doc/html/boost/icl/split_interval_map.html libs/icl/doc/html/boost/icl/split_interval_set.html libs/icl/doc/html/boost/icl/static_interval_I_id663254.html libs/icl/doc/html/boost/icl/total_absorber.html libs/icl/doc/html/boost/icl/total_enricher.html libs/icl/doc/html/boost/icl/version.html libs/icl/doc/html/boost_icl/acknowledgments.html libs/icl/doc/html/boost_icl/concepts.html libs/icl/doc/html/boost_icl/concepts/aggrovering.html libs/icl/doc/html/boost_icl/concepts/aspects.html libs/icl/doc/html/boost_icl/concepts/map_traits.html libs/icl/doc/html/boost_icl/concepts/sets_and_maps.html libs/icl/doc/html/boost_icl/customization.html libs/icl/doc/html/boost_icl/examples.html libs/icl/doc/html/boost_icl/examples/custom_interval.html libs/icl/doc/html/boost_icl/examples/dynamic_interval.html libs/icl/doc/html/boost_icl/examples/interval.html libs/icl/doc/html/boost_icl/examples/interval_container.html libs/icl/doc/html/boost_icl/examples/man_power.html libs/icl/doc/html/boost_icl/examples/overlap_counter.html libs/icl/doc/html/boost_icl/examples/party.html libs/icl/doc/html/boost_icl/examples/partys_height_average.html libs/icl/doc/html/boost_icl/examples/partys_tallest_guests.html libs/icl/doc/html/boost_icl/examples/static_interval.html libs/icl/doc/html/boost_icl/examples/std_copy.html libs/icl/doc/html/boost_icl/examples/std_transform.html libs/icl/doc/html/boost_icl/examples/time_grids.html libs/icl/doc/html/boost_icl/examples/user_groups.html libs/icl/doc/html/boost_icl/function_reference.html libs/icl/doc/html/boost_icl/function_reference/addition.html libs/icl/doc/html/boost_icl/function_reference/additional_interval_orderings.html libs/icl/doc/html/boost_icl/function_reference/construct__copy__destruct.html libs/icl/doc/html/boost_icl/function_reference/containedness.html libs/icl/doc/html/boost_icl/function_reference/element_iteration.html libs/icl/doc/html/boost_icl/function_reference/equivalences_and_orderings.html libs/icl/doc/html/boost_icl/function_reference/erasure.html libs/icl/doc/html/boost_icl/function_reference/insertion.html libs/icl/doc/html/boost_icl/function_reference/intersection.html libs/icl/doc/html/boost_icl/function_reference/interval_construction.html libs/icl/doc/html/boost_icl/function_reference/iterator_related.html libs/icl/doc/html/boost_icl/function_reference/key_types.html libs/icl/doc/html/boost_icl/function_reference/miscellaneous_interval_functions.html libs/icl/doc/html/boost_icl/function_reference/range.html libs/icl/doc/html/boost_icl/function_reference/segmentational_fineness.html libs/icl/doc/html/boost_icl/function_reference/selection.html libs/icl/doc/html/boost_icl/function_reference/size.html libs/icl/doc/html/boost_icl/function_reference/streaming__conversion.html libs/icl/doc/html/boost_icl/function_reference/subtraction.html libs/icl/doc/html/boost_icl/function_reference/symmetric_difference.html libs/icl/doc/html/boost_icl/implementation.html libs/icl/doc/html/boost_icl/implementation/complexity.html libs/icl/doc/html/boost_icl/implementation/inplace_and_infix_operators.html libs/icl/doc/html/boost_icl/interface.html libs/icl/doc/html/boost_icl/interface/associated_types.html libs/icl/doc/html/boost_icl/interface/function_synopsis.html libs/icl/doc/html/boost_icl/interface/required_concepts.html libs/icl/doc/html/boost_icl/projects.html libs/icl/doc/html/boost_icl/semantics.html libs/icl/doc/html/boost_icl/semantics/collectors__maps_of_sets.html libs/icl/doc/html/boost_icl/semantics/concept_induction.html libs/icl/doc/html/boost_icl/semantics/maps.html libs/icl/doc/html/boost_icl/semantics/quantifiers__maps_of_numbers.html libs/icl/doc/html/boost_icl/semantics/sets.html libs/icl/doc/html/header/boost/icl/continuous_interval_hpp.html libs/icl/doc/html/header/boost/icl/discrete_interval_hpp.html libs/icl/doc/html/header/boost/icl/dynamic_interval_traits_hpp.html libs/icl/doc/html/header/boost/icl/functors_hpp.html libs/icl/doc/html/header/boost/icl/gregorian_hpp.html libs/icl/doc/html/header/boost/icl/impl_config_hpp.html libs/icl/doc/html/header/boost/icl/interval_base_map_hpp.html libs/icl/doc/html/header/boost/icl/interval_base_set_hpp.html libs/icl/doc/html/header/boost/icl/interval_bounds_hpp.html libs/icl/doc/html/header/boost/icl/interval_combining_style_hpp.html libs/icl/doc/html/header/boost/icl/interval_hpp.html libs/icl/doc/html/header/boost/icl/interval_map_hpp.html libs/icl/doc/html/header/boost/icl/interval_set_hpp.html libs/icl/doc/html/header/boost/icl/interval_traits_hpp.html libs/icl/doc/html/header/boost/icl/iterator_hpp.html libs/icl/doc/html/header/boost/icl/left_open_interval_hpp.html libs/icl/doc/html/header/boost/icl/map_hpp.html libs/icl/doc/html/header/boost/icl/open_interval_hpp.html libs/icl/doc/html/header/boost/icl/ptime_hpp.html libs/icl/doc/html/header/boost/icl/rational_hpp.html libs/icl/doc/html/header/boost/icl/right_open_interval_hpp.html libs/icl/doc/html/header/boost/icl/separate_interval_set_hpp.html libs/icl/doc/html/header/boost/icl/split_interval_map_hpp.html libs/icl/doc/html/header/boost/icl/split_interval_set_hpp.html libs/icl/doc/html/index.html libs/icl/doc/html/interval_container_library_reference.html libs/icl/index.html libs/index.html libs/integer/doc/html/boost_integer/cstdint.html libs/integer/doc/html/boost_integer/history.html libs/integer/doc/html/boost_integer/integer.html libs/integer/doc/html/boost_integer/log2.html libs/integer/doc/html/boost_integer/mask.html libs/integer/doc/html/boost_integer/minmax.html libs/integer/doc/html/boost_integer/traits.html libs/integer/doc/html/index.html libs/integer/index.html libs/interprocess/index.html libs/intrusive/index.html libs/io/doc/ios_state.html libs/io/doc/quoted_manip.html libs/iostreams/doc/acknowledgments.html libs/iostreams/doc/bibliography.html libs/iostreams/doc/classes/aggregate.html libs/iostreams/doc/classes/array.html libs/iostreams/doc/classes/back_inserter.html libs/iostreams/doc/classes/bzip2.html libs/iostreams/doc/classes/chain.html libs/iostreams/doc/classes/char_traits.html libs/iostreams/doc/classes/classes.html libs/iostreams/doc/classes/code_converter.html libs/iostreams/doc/classes/counter.html libs/iostreams/doc/classes/device.html libs/iostreams/doc/classes/file.html libs/iostreams/doc/classes/file_descriptor.html libs/iostreams/doc/classes/filter.html libs/iostreams/doc/classes/filtering_stream.html libs/iostreams/doc/classes/filtering_streambuf.html libs/iostreams/doc/classes/grep_filter.html libs/iostreams/doc/classes/gzip.html libs/iostreams/doc/classes/line_filter.html libs/iostreams/doc/classes/mapped_file.html libs/iostreams/doc/classes/mode.html libs/iostreams/doc/classes/newline_filter.html libs/iostreams/doc/classes/null.html libs/iostreams/doc/classes/regex_filter.html libs/iostreams/doc/classes/stdio_filter.html libs/iostreams/doc/classes/symmetric_filter.html libs/iostreams/doc/classes/zlib.html libs/iostreams/doc/concepts/bidirectional_device.html libs/iostreams/doc/concepts/bidirectional_filter.html libs/iostreams/doc/concepts/blocking.html libs/iostreams/doc/concepts/closable.html libs/iostreams/doc/concepts/concepts.html libs/iostreams/doc/concepts/device.html libs/iostreams/doc/concepts/direct.html libs/iostreams/doc/concepts/dual_use_filter.html libs/iostreams/doc/concepts/filter.html libs/iostreams/doc/concepts/flushable.html libs/iostreams/doc/concepts/input_filter.html libs/iostreams/doc/concepts/localizable.html libs/iostreams/doc/concepts/multi_character.html libs/iostreams/doc/concepts/optimally_buffered.html libs/iostreams/doc/concepts/output_filter.html libs/iostreams/doc/concepts/peekable.html libs/iostreams/doc/concepts/pipable.html libs/iostreams/doc/concepts/seekable_device.html libs/iostreams/doc/concepts/seekable_filter.html libs/iostreams/doc/concepts/sink.html libs/iostreams/doc/concepts/source.html libs/iostreams/doc/concepts/symmetric_filter.html libs/iostreams/doc/faq.html libs/iostreams/doc/functions/close.html libs/iostreams/doc/functions/combine.html libs/iostreams/doc/functions/compose.html libs/iostreams/doc/functions/copy.html libs/iostreams/doc/functions/filter_test.html libs/iostreams/doc/functions/flush.html libs/iostreams/doc/functions/functions.html libs/iostreams/doc/functions/get.html libs/iostreams/doc/functions/imbue.html libs/iostreams/doc/functions/invert.html libs/iostreams/doc/functions/optimal_buffer_size.html libs/iostreams/doc/functions/positioning.html libs/iostreams/doc/functions/put.html libs/iostreams/doc/functions/putback.html libs/iostreams/doc/functions/read.html libs/iostreams/doc/functions/restrict.html libs/iostreams/doc/functions/seek.html libs/iostreams/doc/functions/slice.html libs/iostreams/doc/functions/tee.html libs/iostreams/doc/functions/write.html libs/iostreams/doc/guide/asynchronous.html libs/iostreams/doc/guide/buffering.html libs/iostreams/doc/guide/code_conversion.html libs/iostreams/doc/guide/concepts.html libs/iostreams/doc/guide/exceptions.html libs/iostreams/doc/guide/filtering_streams.html libs/iostreams/doc/guide/generic_streams.html libs/iostreams/doc/guide/guide.html libs/iostreams/doc/guide/lifetimes.html libs/iostreams/doc/guide/modes.html libs/iostreams/doc/guide/pipelines.html libs/iostreams/doc/guide/text_processing.html libs/iostreams/doc/guide/traits.html libs/iostreams/doc/guide/views.html libs/iostreams/doc/home.html libs/iostreams/doc/index.html libs/iostreams/doc/installation.html libs/iostreams/doc/macros/buffer_sizes.html libs/iostreams/doc/macros/macros.html libs/iostreams/doc/macros/workarounds.html libs/iostreams/doc/menu.html libs/iostreams/doc/portability.html libs/iostreams/doc/quick_reference.html libs/iostreams/doc/rationale.html libs/iostreams/doc/reference.html libs/iostreams/doc/release_notes.html libs/iostreams/doc/tutorial/container_device.html libs/iostreams/doc/tutorial/container_sink.html libs/iostreams/doc/tutorial/container_source.html libs/iostreams/doc/tutorial/dictionary_filters.html libs/iostreams/doc/tutorial/dual_use_filters.html libs/iostreams/doc/tutorial/filter_usage.html libs/iostreams/doc/tutorial/finite_state_filters.html libs/iostreams/doc/tutorial/line_wrapping_filters.html libs/iostreams/doc/tutorial/multichar_filters.html libs/iostreams/doc/tutorial/shell_comments_filters.html libs/iostreams/doc/tutorial/tab_expanding_filters.html libs/iostreams/doc/tutorial/tutorial.html libs/iostreams/doc/tutorial/unix2dos_filters.html libs/iostreams/doc/tutorial/writing_devices.html libs/iostreams/doc/tutorial/writing_filters.html libs/iostreams/index.html libs/iterator/doc/BidirectionalTraversal.html libs/iterator/doc/ForwardTraversal.html libs/iterator/doc/IncrementableIterator.html libs/iterator/doc/LvalueIterator.html libs/iterator/doc/RandomAccessTraversal.html libs/iterator/doc/ReadableIterator.html libs/iterator/doc/SinglePassIterator.html libs/iterator/doc/SwappableIterator.html libs/iterator/doc/WritableIterator.html libs/iterator/doc/counting_iterator.html libs/iterator/doc/facade-and-adaptor.html libs/iterator/doc/filter_iterator.html libs/iterator/doc/function_input_iterator.html libs/iterator/doc/function_output_iterator.html libs/iterator/doc/index.html libs/iterator/doc/indirect_iterator.html libs/iterator/doc/iterator_adaptor.html libs/iterator/doc/iterator_archetypes.html libs/iterator/doc/iterator_concepts.html libs/iterator/doc/iterator_facade.html libs/iterator/doc/iterator_traits.html libs/iterator/doc/new-iter-concepts.html libs/iterator/doc/permutation_iterator.html libs/iterator/doc/pointee.html libs/iterator/doc/reverse_iterator.html libs/iterator/doc/transform_iterator.html libs/iterator/doc/zip_iterator.html libs/iterator/index.html libs/lambda/index.html libs/libraries.htm libs/local_function/doc/html/BOOST_LOCAL_FUNCTION.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_ID.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_ID_TPL.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_NAME.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_NAME_TPL.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_TPL.html libs/local_function/doc/html/BOOST_LOCAL_FUNCTION_TYPEOF.html libs/local_function/doc/html/boost_localfunction/acknowledgments.html libs/local_function/doc/html/boost_localfunction/advanced_topics.html libs/local_function/doc/html/boost_localfunction/alternatives.html libs/local_function/doc/html/boost_localfunction/bibliography.html libs/local_function/doc/html/boost_localfunction/examples.html libs/local_function/doc/html/boost_localfunction/getting_started.html libs/local_function/doc/html/boost_localfunction/implementation.html libs/local_function/doc/html/boost_localfunction/no_variadic_macros.html libs/local_function/doc/html/boost_localfunction/release_notes.html libs/local_function/doc/html/boost_localfunction/tutorial.html libs/local_function/doc/html/index.html libs/local_function/doc/html/reference.html libs/local_function/index.html libs/locale/doc/html/annotated.html libs/locale/doc/html/appendix.html libs/locale/doc/html/boundary_8cpp-example.html libs/locale/doc/html/boundary_8hpp_source.html libs/locale/doc/html/boundary__point_8hpp_source.html libs/locale/doc/html/boundary_analysys.html libs/locale/doc/html/building_boost_locale.html libs/locale/doc/html/calendar_8cpp-example.html libs/locale/doc/html/changelog.html libs/locale/doc/html/charset_handling.html libs/locale/doc/html/classboost_1_1locale_1_1abstract__calendar.html libs/locale/doc/html/classboost_1_1locale_1_1basic__format.html libs/locale/doc/html/classboost_1_1locale_1_1basic__message.html libs/locale/doc/html/classboost_1_1locale_1_1boundary_1_1boundary__indexing.html libs/locale/doc/html/classboost_1_1locale_1_1boundary_1_1boundary__point.html libs/locale/doc/html/classboost_1_1locale_1_1boundary_1_1boundary__point__index.html libs/locale/doc/html/classboost_1_1locale_1_1boundary_1_1segment.html libs/locale/doc/html/classboost_1_1locale_1_1boundary_1_1segment__index.html libs/locale/doc/html/classboost_1_1locale_1_1calendar.html libs/locale/doc/html/classboost_1_1locale_1_1calendar__facet.html libs/locale/doc/html/classboost_1_1locale_1_1collator.html libs/locale/doc/html/classboost_1_1locale_1_1collator__base.html libs/locale/doc/html/classboost_1_1locale_1_1conv_1_1conversion__error.html libs/locale/doc/html/classboost_1_1locale_1_1conv_1_1invalid__charset__error.html libs/locale/doc/html/classboost_1_1locale_1_1converter.html libs/locale/doc/html/classboost_1_1locale_1_1converter__base.html libs/locale/doc/html/classboost_1_1locale_1_1date__time.html libs/locale/doc/html/classboost_1_1locale_1_1date__time__duration.html libs/locale/doc/html/classboost_1_1locale_1_1date__time__error.html libs/locale/doc/html/classboost_1_1locale_1_1date__time__period__set.html libs/locale/doc/html/classboost_1_1locale_1_1generator.html libs/locale/doc/html/classboost_1_1locale_1_1hold__ptr.html libs/locale/doc/html/classboost_1_1locale_1_1info.html libs/locale/doc/html/classboost_1_1locale_1_1ios__info.html libs/locale/doc/html/classboost_1_1locale_1_1localization__backend.html libs/locale/doc/html/classboost_1_1locale_1_1localization__backend__manager.html libs/locale/doc/html/classboost_1_1locale_1_1message__format.html libs/locale/doc/html/classboost_1_1locale_1_1period_1_1period__type.html libs/locale/doc/html/classboost_1_1locale_1_1util_1_1base__converter.html libs/locale/doc/html/collate_8cpp-example.html libs/locale/doc/html/collation.html libs/locale/doc/html/collator_8hpp_source.html libs/locale/doc/html/config_8hpp_source.html libs/locale/doc/html/conversion_8hpp_source.html libs/locale/doc/html/conversions.html libs/locale/doc/html/conversions_8cpp-example.html libs/locale/doc/html/date__time_8hpp_source.html libs/locale/doc/html/date__time__facet_8hpp_source.html libs/locale/doc/html/dates_times_timezones.html libs/locale/doc/html/default_encoding_under_windows.html libs/locale/doc/html/definitions_8hpp_source.html libs/locale/doc/html/encoding_8hpp_source.html libs/locale/doc/html/encoding__errors_8hpp_source.html libs/locale/doc/html/encoding__utf_8hpp_source.html libs/locale/doc/html/examples.html libs/locale/doc/html/facets_8hpp_source.html libs/locale/doc/html/faq.html libs/locale/doc/html/files.html libs/locale/doc/html/format_8hpp_source.html libs/locale/doc/html/formatting_8hpp_source.html libs/locale/doc/html/formatting_and_parsing.html libs/locale/doc/html/functions.html libs/locale/doc/html/generator_8hpp_source.html libs/locale/doc/html/gettext_for_windows.html libs/locale/doc/html/glossary.html libs/locale/doc/html/gnu__gettext_8hpp_source.html libs/locale/doc/html/group__boundary.html libs/locale/doc/html/group__codepage.html libs/locale/doc/html/group__collation.html libs/locale/doc/html/group__convert.html libs/locale/doc/html/group__date__time.html libs/locale/doc/html/group__format.html libs/locale/doc/html/group__manipulators.html libs/locale/doc/html/group__message.html libs/locale/doc/html/hello_8cpp-example.html libs/locale/doc/html/hierarchy.html libs/locale/doc/html/hold__ptr_8hpp_source.html libs/locale/doc/html/index.html libs/locale/doc/html/index_8hpp_source.html libs/locale/doc/html/info_8hpp_source.html libs/locale/doc/html/locale_gen.html libs/locale/doc/html/locale_information.html libs/locale/doc/html/localization__backend_8hpp_source.html libs/locale/doc/html/localized_text_formatting.html libs/locale/doc/html/message_8hpp_source.html libs/locale/doc/html/messages_formatting.html libs/locale/doc/html/modules.html libs/locale/doc/html/namespaceboost_1_1locale.html libs/locale/doc/html/namespaceboost_1_1locale_1_1as.html libs/locale/doc/html/namespaceboost_1_1locale_1_1boundary.html libs/locale/doc/html/namespaceboost_1_1locale_1_1conv.html libs/locale/doc/html/namespaceboost_1_1locale_1_1flags.html libs/locale/doc/html/namespaceboost_1_1locale_1_1gnu__gettext.html libs/locale/doc/html/namespaceboost_1_1locale_1_1period.html libs/locale/doc/html/namespaceboost_1_1locale_1_1period_1_1marks.html libs/locale/doc/html/namespaceboost_1_1locale_1_1time__zone.html libs/locale/doc/html/namespaceboost_1_1locale_1_1utf.html libs/locale/doc/html/namespaceboost_1_1locale_1_1util.html libs/locale/doc/html/namespacemembers.html libs/locale/doc/html/namespaces.html libs/locale/doc/html/rationale.html libs/locale/doc/html/recommendations_and_myths.html libs/locale/doc/html/running_examples_under_windows.html libs/locale/doc/html/segment_8hpp_source.html libs/locale/doc/html/special_thanks.html libs/locale/doc/html/status_of_cpp0x_characters_support.html libs/locale/doc/html/std_locales.html libs/locale/doc/html/structboost_1_1locale_1_1boundary_1_1break__info.html libs/locale/doc/html/structboost_1_1locale_1_1comparator.html libs/locale/doc/html/structboost_1_1locale_1_1date__time__period.html libs/locale/doc/html/structboost_1_1locale_1_1gnu__gettext_1_1messages__info.html libs/locale/doc/html/structboost_1_1locale_1_1gnu__gettext_1_1messages__info_1_1domain.html libs/locale/doc/html/structboost_1_1locale_1_1posix__time.html libs/locale/doc/html/structboost_1_1locale_1_1utf_1_1utf__traits.html libs/locale/doc/html/tested_compilers_and_paltforms.html libs/locale/doc/html/time__zone_8hpp_source.html libs/locale/doc/html/types_8hpp_source.html libs/locale/doc/html/using_boost_locale.html libs/locale/doc/html/using_localization_backends.html libs/locale/doc/html/utf_8hpp_source.html libs/locale/doc/html/util_8hpp_source.html libs/locale/doc/html/wboundary_8cpp-example.html libs/locale/doc/html/wconversions_8cpp-example.html libs/locale/doc/html/whello_8cpp-example.html libs/locale/doc/html/working_with_multiple_locales.html libs/locale/index.html libs/lockfree/index.html libs/log/doc/html/BOOST_LOG.html libs/log/doc/html/BOOST_LOG_ATTRIBUTE_KEYWORD.html libs/log/doc/html/BOOST_LOG_ATTRIBUTE_KEYWORD_TYPE.html libs/log/doc/html/BOOST_LOG_CHANNEL.html libs/log/doc/html/BOOST_LOG_CHANNEL_SEV.html libs/log/doc/html/BOOST_LOG_COMBINE_REQUIREMENTS_LIMIT.html libs/log/doc/html/BOOST_LOG_DECLARE_LOGGER.html libs/log/doc/html/BOOST_LOG_DECLARE_LOGGER_MT.html libs/log/doc/html/BOOST_LOG_DECLARE_LOGGER_TYPE.html libs/log/doc/html/BOOST_LOG_DECLARE_WLOGGER.html libs/log/doc/html/BOOST_LOG_DECLARE_WLOGGER_MT.html libs/log/doc/html/BOOST_LOG_EXPLICIT_OPERATOR_BOOL.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_ASSIGNMENT.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_ASSIGNMENT_TEMPLATE.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_CONSTRUCTORS.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_CONSTRUCTORS_TEMPLATE.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_MEMBERS.html libs/log/doc/html/BOOST_LOG_FORWARD_LOGGER_MEMBERS_TEMPLATE.html libs/log/doc/html/BOOST_LOG_FUNCTION.html libs/log/doc/html/BOOST_LOG_GLOBAL_LOGGER.html libs/log/doc/html/BOOST_LOG_GLOBAL_LOGGER_CTOR_ARGS.html libs/log/doc/html/BOOST_LOG_GLOBAL_LOGGER_DEFAULT.html libs/log/doc/html/BOOST_LOG_GLOBAL_LOGGER_INIT.html libs/log/doc/html/BOOST_LOG_INLINE_GLOBAL_LOGGER_CTOR_ARGS.html libs/log/doc/html/BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT.html libs/log/doc/html/BOOST_LOG_INLINE_GLOBAL_LOGGER_INIT.html libs/log/doc/html/BOOST_LOG_MAX_EXCEPTION_TYPES.html libs/log/doc/html/BOOST_LOG_NAMED_SCOPE.html libs/log/doc/html/BOOST_LOG_ONCE_BLOCK.html libs/log/doc/html/BOOST_LOG_ONCE_BLOCK_FLAG.html libs/log/doc/html/BOOST_LOG_ONCE_BLOCK_INIT.html libs/log/doc/html/BOOST_LOG_SCOPED_LOGGER_ATTR.html libs/log/doc/html/BOOST_LOG_SCOPED_LOGGER_TAG.html libs/log/doc/html/BOOST_LOG_SCOPED_THREAD_ATTR.html libs/log/doc/html/BOOST_LOG_SCOPED_THREAD_TAG.html libs/log/doc/html/BOOST_LOG_SEV.html libs/log/doc/html/BOOST_LOG_STREAM.html libs/log/doc/html/BOOST_LOG_STREAM_CHANNEL.html libs/log/doc/html/BOOST_LOG_STREAM_CHANNEL_SEV.html libs/log/doc/html/BOOST_LOG_STREAM_SEV.html libs/log/doc/html/BOOST_LOG_STREAM_WITH_PARAMS.html libs/log/doc/html/BOOST_LOG_TRIVIAL.html libs/log/doc/html/BOOST_LOG_UNIQUE_IDENTIFIER_NAME.html libs/log/doc/html/BOOST_LOG_UNUSED_VARIABLE.html libs/log/doc/html/BOOST_LOG_WITH_PARAMS.html libs/log/doc/html/attributes.html libs/log/doc/html/boost/log/abstract_ordering.html libs/log/doc/html/boost/log/add_common_attributes.html libs/log/doc/html/boost/log/add_console_lo_idp21543664.html libs/log/doc/html/boost/log/add_console_lo_idp21549440.html libs/log/doc/html/boost/log/add_console_lo_idp21552224.html libs/log/doc/html/boost/log/add_file_log.html libs/log/doc/html/boost/log/add_scoped_log_idp19369680.html libs/log/doc/html/boost/log/add_scoped_thr_idp19373376.html libs/log/doc/html/boost/log/add_value.html libs/log/doc/html/boost/log/add_value_manip.html libs/log/doc/html/boost/log/as_action.html libs/log/doc/html/boost/log/as_action_adapter.html libs/log/doc/html/boost/log/assign_fun.html libs/log/doc/html/boost/log/attribute.html libs/log/doc/html/boost/log/attribute/impl.html libs/log/doc/html/boost/log/attribute_cast.html libs/log/doc/html/boost/log/attribute_name.html libs/log/doc/html/boost/log/attribute_name_info.html libs/log/doc/html/boost/log/attribute_set.html libs/log/doc/html/boost/log/attribute_value.html libs/log/doc/html/boost/log/attribute_value/impl.html libs/log/doc/html/boost/log/attribute_value_ordering.html libs/log/doc/html/boost/log/attribute_value_ordering/l1_visitor.html libs/log/doc/html/boost/log/attribute_value_ordering/l2_visitor.html libs/log/doc/html/boost/log/attribute_value_set.html libs/log/doc/html/boost/log/attributes/attribute_value_impl.html libs/log/doc/html/boost/log/attributes/basic_clock.html libs/log/doc/html/boost/log/attributes/basic_clock/impl.html libs/log/doc/html/boost/log/attributes/basic_time_traits.html libs/log/doc/html/boost/log/attributes/cast_source.html libs/log/doc/html/boost/log/attributes/constant.html libs/log/doc/html/boost/log/attributes/constant/impl.html libs/log/doc/html/boost/log/attributes/counter.html libs/log/doc/html/boost/log/attributes/counter/impl.html libs/log/doc/html/boost/log/attributes/counter/impl_dec.html libs/log/doc/html/boost/log/attributes/counter/impl_generic.html libs/log/doc/html/boost/log/attributes/counter/impl_inc.html libs/log/doc/html/boost/log/attributes/current_process_id.html libs/log/doc/html/boost/log/attributes/current_process_name.html libs/log/doc/html/boost/log/attributes/current_thread_id.html libs/log/doc/html/boost/log/attributes/current_thread_id/impl.html libs/log/doc/html/boost/log/attributes/function.html libs/log/doc/html/boost/log/attributes/function/impl.html libs/log/doc/html/boost/log/attributes/function/impl_template.html libs/log/doc/html/boost/log/attributes/local_time_traits.html libs/log/doc/html/boost/log/attributes/make_attribute_value.html libs/log/doc/html/boost/log/attributes/make_constant.html libs/log/doc/html/boost/log/attributes/make_function.html libs/log/doc/html/boost/log/attributes/mutable_consta_idp19309088.html libs/log/doc/html/boost/log/attributes/mutable_consta_idp19309088/impl.html libs/log/doc/html/boost/log/attributes/mutable_constant.html libs/log/doc/html/boost/log/attributes/mutable_constant/impl.html libs/log/doc/html/boost/log/attributes/named_scope.html libs/log/doc/html/boost/log/attributes/named_scope/sentry.html libs/log/doc/html/boost/log/attributes/named_scope_entry.html libs/log/doc/html/boost/log/attributes/named_scope_list.html libs/log/doc/html/boost/log/attributes/operator_idp19363824.html libs/log/doc/html/boost/log/attributes/timer.html libs/log/doc/html/boost/log/attributes/utc_time_traits.html libs/log/doc/html/boost/log/basic_filter_factory.html libs/log/doc/html/boost/log/basic_formatter.html libs/log/doc/html/boost/log/basic_formatter/default_formatter.html libs/log/doc/html/boost/log/basic_formatter_factory.html libs/log/doc/html/boost/log/basic_formatting_ostream.html libs/log/doc/html/boost/log/basic_formatting_ostream/sentry.html libs/log/doc/html/boost/log/basic_record_ostream.html libs/log/doc/html/boost/log/basic_settings.html libs/log/doc/html/boost/log/basic_settings_section.html libs/log/doc/html/boost/log/basic_string_literal.html libs/log/doc/html/boost/log/begins_with_fun.html libs/log/doc/html/boost/log/bind1st_idp21325808.html libs/log/doc/html/boost/log/bind1st_idp21327680.html libs/log/doc/html/boost/log/bind2nd_idp21329536.html libs/log/doc/html/boost/log/bind2nd_idp21331408.html libs/log/doc/html/boost/log/bind3rd_idp21333264.html libs/log/doc/html/boost/log/bind3rd_idp21335136.html libs/log/doc/html/boost/log/bind_assign.html libs/log/doc/html/boost/log/bind_output.html libs/log/doc/html/boost/log/bind_to_log_idp21356048.html libs/log/doc/html/boost/log/bind_to_log_idp21357520.html libs/log/doc/html/boost/log/binder1st.html libs/log/doc/html/boost/log/binder1st_FunT_idp21298928.html libs/log/doc/html/boost/log/binder2nd.html libs/log/doc/html/boost/log/binder2nd_FunT_idp21310912.html libs/log/doc/html/boost/log/binder3rd.html libs/log/doc/html/boost/log/binder3rd_FunT_idp21321216.html libs/log/doc/html/boost/log/boost_date_time_types.html libs/log/doc/html/boost/log/boost_date_types.html libs/log/doc/html/boost/log/boost_time_duration_types.html libs/log/doc/html/boost/log/boost_time_period_types.html libs/log/doc/html/boost/log/bounded_dump_manip.html libs/log/doc/html/boost/log/contains_fun.html libs/log/doc/html/boost/log/conversion_error.html libs/log/doc/html/boost/log/core.html libs/log/doc/html/boost/log/current_scope.html libs/log/doc/html/boost/log/current_scope_info.html libs/log/doc/html/boost/log/date_time_types.html libs/log/doc/html/boost/log/date_types.html libs/log/doc/html/boost/log/default_attribute_types.html libs/log/doc/html/boost/log/dump_elements_idp21483232.html libs/log/doc/html/boost/log/dump_elements_idp21489120.html libs/log/doc/html/boost/log/dump_idp21480592.html libs/log/doc/html/boost/log/dump_idp21486096.html libs/log/doc/html/boost/log/dump_manip.html libs/log/doc/html/boost/log/dynamic_type_dispatcher.html libs/log/doc/html/boost/log/empty_deleter.html libs/log/doc/html/boost/log/ends_with_fun.html libs/log/doc/html/boost/log/equal_to.html libs/log/doc/html/boost/log/exception_handler.html libs/log/doc/html/boost/log/expressions/attr_idp18334304.html libs/log/doc/html/boost/log/expressions/attr_idp18335920.html libs/log/doc/html/boost/log/expressions/attribute_actor.html libs/log/doc/html/boost/log/expressions/attribute_begins_with.html libs/log/doc/html/boost/log/expressions/attribute_contains.html libs/log/doc/html/boost/log/expressions/attribute_ends_with.html libs/log/doc/html/boost/log/expressions/attribute_is_in_range.html libs/log/doc/html/boost/log/expressions/attribute_keyword.html libs/log/doc/html/boost/log/expressions/attribute_matches.html libs/log/doc/html/boost/log/expressions/attribute_terminal.html libs/log/doc/html/boost/log/expressions/attribute_terminal/result.html libs/log/doc/html/boost/log/expressions/attribute_terminal/result_const_t_idp18276448.html libs/log/doc/html/boost/log/expressions/attribute_terminal/result_this_ty_idp18278528.html libs/log/doc/html/boost/log/expressions/begins_with_idp19806800.html libs/log/doc/html/boost/log/expressions/begins_with_idp19810112.html libs/log/doc/html/boost/log/expressions/begins_with_idp19812880.html libs/log/doc/html/boost/log/expressions/c_ascii_decor.html libs/log/doc/html/boost/log/expressions/c_ascii_pattern_replacer.html libs/log/doc/html/boost/log/expressions/c_decor.html libs/log/doc/html/boost/log/expressions/channel_severi_idp19816464.html libs/log/doc/html/boost/log/expressions/channel_severi_idp19816464/channel_visitor.html libs/log/doc/html/boost/log/expressions/channel_severi_idp19816464/severity_visitor.html libs/log/doc/html/boost/log/expressions/channel_severi_idp19839648.html libs/log/doc/html/boost/log/expressions/channel_severi_idp19839648/subscript_result.html libs/log/doc/html/boost/log/expressions/channel_severity_filter.html libs/log/doc/html/boost/log/expressions/char_decor_idp19609664.html libs/log/doc/html/boost/log/expressions/char_decor_idp19612304.html libs/log/doc/html/boost/log/expressions/char_decorator_actor.html libs/log/doc/html/boost/log/expressions/char_decorator_terminal.html libs/log/doc/html/boost/log/expressions/contains_idp19926512.html libs/log/doc/html/boost/log/expressions/contains_idp19929824.html libs/log/doc/html/boost/log/expressions/contains_idp19932592.html libs/log/doc/html/boost/log/expressions/csv_decor.html libs/log/doc/html/boost/log/expressions/ends_with_idp19937120.html libs/log/doc/html/boost/log/expressions/ends_with_idp19940432.html libs/log/doc/html/boost/log/expressions/ends_with_idp19943200.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19645328.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19648400.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19651504.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19655216.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19658960.html libs/log/doc/html/boost/log/expressions/format_date_ti_idp19663184.html libs/log/doc/html/boost/log/expressions/format_date_time_actor.html libs/log/doc/html/boost/log/expressions/format_date_time_terminal.html libs/log/doc/html/boost/log/expressions/format_idp19674720.html libs/log/doc/html/boost/log/expressions/format_idp19676400.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19683632.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19707536.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19710352.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19713200.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19716912.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19720656.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19724912.html libs/log/doc/html/boost/log/expressions/format_named_s_idp19729200.html libs/log/doc/html/boost/log/expressions/format_named_scope_actor.html libs/log/doc/html/boost/log/expressions/format_terminal.html libs/log/doc/html/boost/log/expressions/has_attr_idp19959632.html libs/log/doc/html/boost/log/expressions/has_attr_idp19961488.html libs/log/doc/html/boost/log/expressions/has_attribute.html libs/log/doc/html/boost/log/expressions/has_attribute__idp19952416.html libs/log/doc/html/boost/log/expressions/if_.html libs/log/doc/html/boost/log/expressions/is_in_range_idp19967104.html libs/log/doc/html/boost/log/expressions/is_in_range_idp19971040.html libs/log/doc/html/boost/log/expressions/is_in_range_idp19974432.html libs/log/doc/html/boost/log/expressions/is_keyword_descriptor.html libs/log/doc/html/boost/log/expressions/keyword_descriptor.html libs/log/doc/html/boost/log/expressions/make_c_ascii_decor.html libs/log/doc/html/boost/log/expressions/make_c_decor.html libs/log/doc/html/boost/log/expressions/make_csv_decor.html libs/log/doc/html/boost/log/expressions/make_xml_decor.html libs/log/doc/html/boost/log/expressions/matches_idp19979600.html libs/log/doc/html/boost/log/expressions/matches_idp19982896.html libs/log/doc/html/boost/log/expressions/matches_idp19985648.html libs/log/doc/html/boost/log/expressions/message.html libs/log/doc/html/boost/log/expressions/message_type.html libs/log/doc/html/boost/log/expressions/pattern_replacer.html libs/log/doc/html/boost/log/expressions/pattern_replacer/string_lengths.html libs/log/doc/html/boost/log/expressions/record.html libs/log/doc/html/boost/log/expressions/record_type.html libs/log/doc/html/boost/log/expressions/smessage.html libs/log/doc/html/boost/log/expressions/smessage_type.html libs/log/doc/html/boost/log/expressions/stream.html libs/log/doc/html/boost/log/expressions/stream_type.html libs/log/doc/html/boost/log/expressions/tag/message.html libs/log/doc/html/boost/log/expressions/tag/smessage.html libs/log/doc/html/boost/log/expressions/tag/wmessage.html libs/log/doc/html/boost/log/expressions/wc_ascii_decor.html libs/log/doc/html/boost/log/expressions/wc_decor.html libs/log/doc/html/boost/log/expressions/wcsv_decor.html libs/log/doc/html/boost/log/expressions/wmessage.html libs/log/doc/html/boost/log/expressions/wmessage_type.html libs/log/doc/html/boost/log/expressions/wrap_formatter_idp19758880.html libs/log/doc/html/boost/log/expressions/wrap_formatter_idp19761088.html libs/log/doc/html/boost/log/expressions/wrapped_formatter_actor.html libs/log/doc/html/boost/log/expressions/wrapped_formatter_terminal.html libs/log/doc/html/boost/log/expressions/wxml_decor.html libs/log/doc/html/boost/log/expressions/xml_decor.html libs/log/doc/html/boost/log/extract_idp19421680.html libs/log/doc/html/boost/log/extract_idp19425520.html libs/log/doc/html/boost/log/extract_idp19429216.html libs/log/doc/html/boost/log/extract_idp19432928.html libs/log/doc/html/boost/log/extract_idp19470288.html libs/log/doc/html/boost/log/extract_idp19474080.html libs/log/doc/html/boost/log/extract_idp19477728.html libs/log/doc/html/boost/log/extract_or_def_idp19451952.html libs/log/doc/html/boost/log/extract_or_def_idp19456800.html libs/log/doc/html/boost/log/extract_or_def_idp19461504.html libs/log/doc/html/boost/log/extract_or_def_idp19466224.html libs/log/doc/html/boost/log/extract_or_def_idp19493744.html libs/log/doc/html/boost/log/extract_or_def_idp19498560.html libs/log/doc/html/boost/log/extract_or_def_idp19503232.html libs/log/doc/html/boost/log/extract_or_thr_idp19435984.html libs/log/doc/html/boost/log/extract_or_thr_idp19440240.html libs/log/doc/html/boost/log/extract_or_thr_idp19444352.html libs/log/doc/html/boost/log/extract_or_thr_idp19448480.html libs/log/doc/html/boost/log/extract_or_thr_idp19481392.html libs/log/doc/html/boost/log/extract_or_thr_idp19485600.html libs/log/doc/html/boost/log/extract_or_thr_idp19489664.html libs/log/doc/html/boost/log/fallback_to_default.html libs/log/doc/html/boost/log/fallback_to_none.html libs/log/doc/html/boost/log/fallback_to_throw.html libs/log/doc/html/boost/log/filter.html libs/log/doc/html/boost/log/filter/default_filter.html libs/log/doc/html/boost/log/filter_factory.html libs/log/doc/html/boost/log/floating_point_types.html libs/log/doc/html/boost/log/formatter_factory.html libs/log/doc/html/boost/log/fun_ref.html libs/log/doc/html/boost/log/function_reference_wrapper.html libs/log/doc/html/boost/log/greater.html libs/log/doc/html/boost/log/greater_equal.html libs/log/doc/html/boost/log/in_range_fun.html libs/log/doc/html/boost/log/init_from_settings.html libs/log/doc/html/boost/log/init_from_stream.html libs/log/doc/html/boost/log/integral_types.html libs/log/doc/html/boost/log/intrusive_ref_counter.html libs/log/doc/html/boost/log/invalid_type.html libs/log/doc/html/boost/log/invalid_value.html libs/log/doc/html/boost/log/less.html libs/log/doc/html/boost/log/less_equal.html libs/log/doc/html/boost/log/limitation_error.html libs/log/doc/html/boost/log/logic_error.html libs/log/doc/html/boost/log/make_attr_orde_idp21533008.html libs/log/doc/html/boost/log/make_attr_orde_idp21535168.html libs/log/doc/html/boost/log/make_exception_idp21134720.html libs/log/doc/html/boost/log/make_exception_idp21137952.html libs/log/doc/html/boost/log/make_exception_idp21141824.html libs/log/doc/html/boost/log/make_exception_idp21145312.html libs/log/doc/html/boost/log/make_exception_suppressor.html libs/log/doc/html/boost/log/matches_fun.html libs/log/doc/html/boost/log/matches_fun/match_traits.html libs/log/doc/html/boost/log/missing_value.html libs/log/doc/html/boost/log/native_date_time_types.html libs/log/doc/html/boost/log/native_date_types.html libs/log/doc/html/boost/log/native_time_duration_types.html libs/log/doc/html/boost/log/native_time_types.html libs/log/doc/html/boost/log/nop.html libs/log/doc/html/boost/log/not_equal_to.html libs/log/doc/html/boost/log/nothrow_exception_handler.html libs/log/doc/html/boost/log/numeric_types.html libs/log/doc/html/boost/log/odr_violation.html libs/log/doc/html/boost/log/once_block_flag.html libs/log/doc/html/boost/log/operator___idp21891056.html libs/log/doc/html/boost/log/operator___idp21892544.html libs/log/doc/html/boost/log/operator___idp21895520.html libs/log/doc/html/boost/log/operator___idp21923440.html libs/log/doc/html/boost/log/operator___idp21925568.html libs/log/doc/html/boost/log/operator___idp21927696.html libs/log/doc/html/boost/log/operator___idp21930256.html libs/log/doc/html/boost/log/operator___idp21932384.html libs/log/doc/html/boost/log/operator___idp21934512.html libs/log/doc/html/boost/log/operator___idp21950704.html libs/log/doc/html/boost/log/operator___idp21952832.html libs/log/doc/html/boost/log/operator___idp21954960.html libs/log/doc/html/boost/log/operator___idp21957520.html libs/log/doc/html/boost/log/operator___idp21959648.html libs/log/doc/html/boost/log/operator___idp21961776.html libs/log/doc/html/boost/log/operator_idp19017824.html libs/log/doc/html/boost/log/operator_idp21258656.html libs/log/doc/html/boost/log/operator_idp21461312.html libs/log/doc/html/boost/log/operator_idp21476416.html libs/log/doc/html/boost/log/operator_idp21478496.html libs/log/doc/html/boost/log/operator_idp21497760.html libs/log/doc/html/boost/log/operator_idp21500208.html libs/log/doc/html/boost/log/operator_idp21825040.html libs/log/doc/html/boost/log/operator_idp21894032.html libs/log/doc/html/boost/log/operator_idp21917600.html libs/log/doc/html/boost/log/operator_idp21920224.html libs/log/doc/html/boost/log/operator_idp21937072.html libs/log/doc/html/boost/log/operator_idp21939200.html libs/log/doc/html/boost/log/operator_idp21941328.html libs/log/doc/html/boost/log/operator_idp21943888.html libs/log/doc/html/boost/log/operator_idp21946016.html libs/log/doc/html/boost/log/operator_idp21948144.html libs/log/doc/html/boost/log/output_fun.html libs/log/doc/html/boost/log/parse_error.html libs/log/doc/html/boost/log/parse_filter_idp21613680.html libs/log/doc/html/boost/log/parse_filter_idp21617472.html libs/log/doc/html/boost/log/parse_filter_idp21620656.html libs/log/doc/html/boost/log/parse_formatte_idp21647376.html libs/log/doc/html/boost/log/parse_formatte_idp21650976.html libs/log/doc/html/boost/log/parse_formatte_idp21654176.html libs/log/doc/html/boost/log/parse_settings.html libs/log/doc/html/boost/log/position_info.html libs/log/doc/html/boost/log/record.html libs/log/doc/html/boost/log/record_view.html libs/log/doc/html/boost/log/register_filte_idp21597776.html libs/log/doc/html/boost/log/register_filte_idp21601072.html libs/log/doc/html/boost/log/register_forma_idp21637568.html libs/log/doc/html/boost/log/register_forma_idp21640816.html libs/log/doc/html/boost/log/register_simpl_idp21604448.html libs/log/doc/html/boost/log/register_simpl_idp21607520.html libs/log/doc/html/boost/log/register_simpl_idp21610320.html libs/log/doc/html/boost/log/register_simpl_idp21644144.html libs/log/doc/html/boost/log/register_sink__idp21667376.html libs/log/doc/html/boost/log/register_sink__idp21670512.html libs/log/doc/html/boost/log/register_sink__idp21673584.html libs/log/doc/html/boost/log/register_sink__idp21676800.html libs/log/doc/html/boost/log/result_of/extract.html libs/log/doc/html/boost/log/result_of/extract_or_default.html libs/log/doc/html/boost/log/result_of/extract_or_throw.html libs/log/doc/html/boost/log/runtime_error.html libs/log/doc/html/boost/log/save_result.html libs/log/doc/html/boost/log/save_result_wrapper.html libs/log/doc/html/boost/log/setup_error.html libs/log/doc/html/boost/log/sink_factory.html libs/log/doc/html/boost/log/sinks/asynchronous_sink.html libs/log/doc/html/boost/log/sinks/asynchronous_sink/scoped_flag.html libs/log/doc/html/boost/log/sinks/asynchronous_sink/scoped_thread_id.html libs/log/doc/html/boost/log/sinks/basic_custom_mapping.html libs/log/doc/html/boost/log/sinks/basic_debug_output_backend.html libs/log/doc/html/boost/log/sinks/basic_direct_mapping.html libs/log/doc/html/boost/log/sinks/basic_event_log_backend.html libs/log/doc/html/boost/log/sinks/basic_formatte_idp20347648.html libs/log/doc/html/boost/log/sinks/basic_formatti_idp20376672.html libs/log/doc/html/boost/log/sinks/basic_formatti_idp20376672/formatting_context.html libs/log/doc/html/boost/log/sinks/basic_mapping.html libs/log/doc/html/boost/log/sinks/basic_simple_e_idp20447008.html libs/log/doc/html/boost/log/sinks/basic_sink_backend.html libs/log/doc/html/boost/log/sinks/basic_sink_frontend.html libs/log/doc/html/boost/log/sinks/basic_text_ostream_backend.html libs/log/doc/html/boost/log/sinks/block_on_overflow.html libs/log/doc/html/boost/log/sinks/bounded_fifo_queue.html libs/log/doc/html/boost/log/sinks/bounded_ordering_queue.html libs/log/doc/html/boost/log/sinks/bounded_ordering_queue/enqueued_record.html libs/log/doc/html/boost/log/sinks/bounded_ordering_queue/enqueued_record/order.html libs/log/doc/html/boost/log/sinks/combine_requirements.html libs/log/doc/html/boost/log/sinks/concurrent_feeding.html libs/log/doc/html/boost/log/sinks/drop_on_overflow.html libs/log/doc/html/boost/log/sinks/event_log/basic_event_composer.html libs/log/doc/html/boost/log/sinks/event_log/custom_event_c_idp20501808.html libs/log/doc/html/boost/log/sinks/event_log/custom_event_id_mapping.html libs/log/doc/html/boost/log/sinks/event_log/custom_event_type_mapping.html libs/log/doc/html/boost/log/sinks/event_log/direct_event_c_idp20498800.html libs/log/doc/html/boost/log/sinks/event_log/direct_event_id_mapping.html libs/log/doc/html/boost/log/sinks/event_log/direct_event_type_mapping.html libs/log/doc/html/boost/log/sinks/event_log/make_event_category.html libs/log/doc/html/boost/log/sinks/event_log/make_event_id.html libs/log/doc/html/boost/log/sinks/event_log/make_event_type.html libs/log/doc/html/boost/log/sinks/file/as_file_name_composer.html libs/log/doc/html/boost/log/sinks/file/collector.html libs/log/doc/html/boost/log/sinks/file/file_name_composer_adapter.html libs/log/doc/html/boost/log/sinks/file/make_collector.html libs/log/doc/html/boost/log/sinks/file/rotation_at_time_interval.html libs/log/doc/html/boost/log/sinks/file/rotation_at_time_point.html libs/log/doc/html/boost/log/sinks/flushing.html libs/log/doc/html/boost/log/sinks/formatted_records.html libs/log/doc/html/boost/log/sinks/has_requirement.html libs/log/doc/html/boost/log/sinks/sink.html libs/log/doc/html/boost/log/sinks/synchronized_feeding.html libs/log/doc/html/boost/log/sinks/synchronous_sink.html libs/log/doc/html/boost/log/sinks/syslog/custom_severity_mapping.html libs/log/doc/html/boost/log/sinks/syslog/direct_severity_mapping.html libs/log/doc/html/boost/log/sinks/syslog/make_facility.html libs/log/doc/html/boost/log/sinks/syslog/make_level.html libs/log/doc/html/boost/log/sinks/syslog_backend.html libs/log/doc/html/boost/log/sinks/text_file_backend.html libs/log/doc/html/boost/log/sinks/text_multifile_backend.html libs/log/doc/html/boost/log/sinks/unbounded_fifo_queue.html libs/log/doc/html/boost/log/sinks/unbounded_ordering_queue.html libs/log/doc/html/boost/log/sinks/unbounded_ordering_queue/enqueued_record.html libs/log/doc/html/boost/log/sinks/unbounded_ordering_queue/enqueued_record/order.html libs/log/doc/html/boost/log/sinks/unlocked_sink.html libs/log/doc/html/boost/log/sources/basic_channel_logger.html libs/log/doc/html/boost/log/sources/basic_channel_logger/make_default_channel_name.html libs/log/doc/html/boost/log/sources/basic_composit_idp18959408.html libs/log/doc/html/boost/log/sources/basic_composite_logger.html libs/log/doc/html/boost/log/sources/basic_exceptio_idp18902288.html libs/log/doc/html/boost/log/sources/basic_logger.html libs/log/doc/html/boost/log/sources/basic_severity_logger.html libs/log/doc/html/boost/log/sources/channel.html libs/log/doc/html/boost/log/sources/channel/apply.html libs/log/doc/html/boost/log/sources/channel_logger.html libs/log/doc/html/boost/log/sources/channel_logger_mt.html libs/log/doc/html/boost/log/sources/exception_handler.html libs/log/doc/html/boost/log/sources/exception_handler/apply.html libs/log/doc/html/boost/log/sources/features.html libs/log/doc/html/boost/log/sources/logger.html libs/log/doc/html/boost/log/sources/logger_mt.html libs/log/doc/html/boost/log/sources/multi_thread_model.html libs/log/doc/html/boost/log/sources/severity.html libs/log/doc/html/boost/log/sources/severity/apply.html libs/log/doc/html/boost/log/sources/severity_channel_logger.html libs/log/doc/html/boost/log/sources/severity_channel_logger_mt.html libs/log/doc/html/boost/log/sources/severity_logger.html libs/log/doc/html/boost/log/sources/severity_logger_mt.html libs/log/doc/html/boost/log/sources/single_thread_model.html libs/log/doc/html/boost/log/sources/swap_idp18826288.html libs/log/doc/html/boost/log/sources/wchannel_logger.html libs/log/doc/html/boost/log/sources/wchannel_logger_mt.html libs/log/doc/html/boost/log/sources/wlogger.html libs/log/doc/html/boost/log/sources/wlogger_mt.html libs/log/doc/html/boost/log/sources/wseverity_chan_idp20036032.html libs/log/doc/html/boost/log/sources/wseverity_channel_logger.html libs/log/doc/html/boost/log/sources/wseverity_logger.html libs/log/doc/html/boost/log/sources/wseverity_logger_mt.html libs/log/doc/html/boost/log/static_type_dispatcher.html libs/log/doc/html/boost/log/str_literal.html libs/log/doc/html/boost/log/strictest_lock.html libs/log/doc/html/boost/log/string_types.html libs/log/doc/html/boost/log/swap_idp18358064.html libs/log/doc/html/boost/log/swap_idp18369216.html libs/log/doc/html/boost/log/swap_idp18451824.html libs/log/doc/html/boost/log/swap_idp18475808.html libs/log/doc/html/boost/log/swap_idp18984688.html libs/log/doc/html/boost/log/swap_idp19069536.html libs/log/doc/html/boost/log/swap_idp19114288.html libs/log/doc/html/boost/log/swap_idp19198976.html libs/log/doc/html/boost/log/swap_idp21724800.html libs/log/doc/html/boost/log/swap_idp21827408.html libs/log/doc/html/boost/log/swap_idp21897008.html libs/log/doc/html/boost/log/swap_idp21915456.html libs/log/doc/html/boost/log/system_error.html libs/log/doc/html/boost/log/thread_access__idp21732560.html libs/log/doc/html/boost/log/thread_access__idp21733728.html libs/log/doc/html/boost/log/thread_access__idp21734896.html libs/log/doc/html/boost/log/thread_access__idp21736064.html libs/log/doc/html/boost/log/thread_access__idp21737232.html libs/log/doc/html/boost/log/thread_access__idp21738400.html libs/log/doc/html/boost/log/thread_access__idp21739584.html libs/log/doc/html/boost/log/thread_access_mode_of.html libs/log/doc/html/boost/log/time_duration_types.html libs/log/doc/html/boost/log/time_period_types.html libs/log/doc/html/boost/log/time_types.html libs/log/doc/html/boost/log/to_log_fun.html libs/log/doc/html/boost/log/to_log_fun_voi_idp21352928.html libs/log/doc/html/boost/log/to_log_idp21503248.html libs/log/doc/html/boost/log/to_log_idp21504480.html libs/log/doc/html/boost/log/to_log_manip.html libs/log/doc/html/boost/log/to_string_idp21898512.html libs/log/doc/html/boost/log/trivial/logger.html libs/log/doc/html/boost/log/trivial/operator_idp18325760.html libs/log/doc/html/boost/log/trivial/operator_idp18327488.html libs/log/doc/html/boost/log/trivial/to_string_idp18324784.html libs/log/doc/html/boost/log/type_dispatcher.html libs/log/doc/html/boost/log/type_dispatcher/callback.html libs/log/doc/html/boost/log/type_info_info.html libs/log/doc/html/boost/log/type_info_wrapper.html libs/log/doc/html/boost/log/unexpected_call.html libs/log/doc/html/boost/log/value_extractor.html libs/log/doc/html/boost/log/value_ref.html libs/log/doc/html/boost/log/value_visitor_invoker.html libs/log/doc/html/boost/log/visit_idp19539248.html libs/log/doc/html/boost/log/visit_idp19543168.html libs/log/doc/html/boost/log/visit_idp19546944.html libs/log/doc/html/boost/log/visit_idp19550736.html libs/log/doc/html/boost/log/visit_idp19553872.html libs/log/doc/html/boost/log/visit_idp19558128.html libs/log/doc/html/boost/log/visit_idp19562240.html libs/log/doc/html/boost/log/visitation_result.html libs/log/doc/html/boost/log/wadd_console_log.html libs/log/doc/html/core_components.html libs/log/doc/html/expressions.html libs/log/doc/html/index.html libs/log/doc/html/log/acknowledgments.html libs/log/doc/html/log/changelog.html libs/log/doc/html/log/defs.html libs/log/doc/html/log/design.html libs/log/doc/html/log/detailed.html libs/log/doc/html/log/detailed/attributes.html libs/log/doc/html/log/detailed/expressions.html libs/log/doc/html/log/detailed/sink_backends.html libs/log/doc/html/log/detailed/sink_frontends.html libs/log/doc/html/log/detailed/sources.html libs/log/doc/html/log/detailed/utilities.html libs/log/doc/html/log/extension.html libs/log/doc/html/log/extension/attributes.html libs/log/doc/html/log/extension/settings.html libs/log/doc/html/log/extension/sources.html libs/log/doc/html/log/how_to_read.html libs/log/doc/html/log/installation.html libs/log/doc/html/log/installation/config.html libs/log/doc/html/log/rationale.html libs/log/doc/html/log/rationale/fork_support.html libs/log/doc/html/log/rationale/init_term_support.html libs/log/doc/html/log/rationale/msvc_link_fails_lnk1123.html libs/log/doc/html/log/rationale/namespace_mangling.html libs/log/doc/html/log/rationale/why_attribute_manips_dont_affect_filters.html libs/log/doc/html/log/rationale/why_not_lazy_streaming.html libs/log/doc/html/log/rationale/why_not_log4j.html libs/log/doc/html/log/rationale/why_weak_record_ordering.html libs/log/doc/html/log/rationale/why_weak_scoped_attributes.html libs/log/doc/html/log/reference.html libs/log/doc/html/log/todo.html libs/log/doc/html/log/tutorial.html libs/log/doc/html/log/tutorial/advanced_filtering.html libs/log/doc/html/log/tutorial/attributes.html libs/log/doc/html/log/tutorial/formatters.html libs/log/doc/html/log/tutorial/sinks.html libs/log/doc/html/log/tutorial/sources.html libs/log/doc/html/log/tutorial/trivial_filtering.html libs/log/doc/html/log/tutorial/wide_char.html libs/log/doc/html/logging_sources.html libs/log/doc/html/other_libraries_support_layer.html libs/log/doc/html/sinks.html libs/log/doc/html/utilities.html libs/log/index.html libs/math/doc/distexplorer/html/index.html libs/math/doc/html/backgrounders.html libs/math/doc/html/constants.html libs/math/doc/html/dist.html libs/math/doc/html/extern_c.html libs/math/doc/html/gcd_lcm.html libs/math/doc/html/index.html libs/math/doc/html/indexes.html libs/math/doc/html/indexes/s01.html libs/math/doc/html/indexes/s02.html libs/math/doc/html/indexes/s03.html libs/math/doc/html/indexes/s04.html libs/math/doc/html/indexes/s05.html libs/math/doc/html/inverse_complex.html libs/math/doc/html/math_toolkit/acknowledgement.html libs/math/doc/html/math_toolkit/acknowledgements.html libs/math/doc/html/math_toolkit/acos.html libs/math/doc/html/math_toolkit/acosh.html libs/math/doc/html/math_toolkit/airy.html libs/math/doc/html/math_toolkit/airy/ai.html libs/math/doc/html/math_toolkit/airy/aip.html libs/math/doc/html/math_toolkit/airy/bi.html libs/math/doc/html/math_toolkit/airy/bip.html libs/math/doc/html/math_toolkit/archetypes.html libs/math/doc/html/math_toolkit/asin.html libs/math/doc/html/math_toolkit/asinh.html libs/math/doc/html/math_toolkit/atan.html libs/math/doc/html/math_toolkit/atanh.html libs/math/doc/html/math_toolkit/bessel.html libs/math/doc/html/math_toolkit/bessel/bessel_first.html libs/math/doc/html/math_toolkit/bessel/bessel_over.html libs/math/doc/html/math_toolkit/bessel/bessel_root.html libs/math/doc/html/math_toolkit/bessel/mbessel.html libs/math/doc/html/math_toolkit/bessel/sph_bessel.html libs/math/doc/html/math_toolkit/building.html libs/math/doc/html/math_toolkit/c99.html libs/math/doc/html/math_toolkit/comp_compilers.html libs/math/doc/html/math_toolkit/comparisons.html libs/math/doc/html/math_toolkit/compile_time.html libs/math/doc/html/math_toolkit/compilers_overview.html libs/math/doc/html/math_toolkit/complex_history.html libs/math/doc/html/math_toolkit/complex_implementation.html libs/math/doc/html/math_toolkit/concepts.html libs/math/doc/html/math_toolkit/config_macros.html libs/math/doc/html/math_toolkit/constants.html libs/math/doc/html/math_toolkit/constants_faq.html libs/math/doc/html/math_toolkit/constants_intro.html libs/math/doc/html/math_toolkit/contact.html libs/math/doc/html/math_toolkit/conventions.html libs/math/doc/html/math_toolkit/create.html libs/math/doc/html/math_toolkit/credits.html libs/math/doc/html/math_toolkit/demo.html libs/math/doc/html/math_toolkit/directories.html libs/math/doc/html/math_toolkit/dist_concept.html libs/math/doc/html/math_toolkit/dist_ref.html libs/math/doc/html/math_toolkit/dist_ref/dist_algorithms.html libs/math/doc/html/math_toolkit/dist_ref/dists.html libs/math/doc/html/math_toolkit/dist_ref/dists/bernoulli_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/beta_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/binomial_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/cauchy_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/chi_squared_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/exp_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/extreme_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/f_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/gamma_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/geometric_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/hypergeometric_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/inverse_chi_squared_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/inverse_gamma_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/inverse_gaussian_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/laplace_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/logistic_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/lognormal_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/nc_beta_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/nc_chi_squared_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/nc_f_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/nc_t_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/negative_binomial_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/normal_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/pareto.html libs/math/doc/html/math_toolkit/dist_ref/dists/poisson_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/rayleigh.html libs/math/doc/html/math_toolkit/dist_ref/dists/skew_normal_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/students_t_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/triangular_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/uniform_dist.html libs/math/doc/html/math_toolkit/dist_ref/dists/weibull_dist.html libs/math/doc/html/math_toolkit/dist_ref/nmp.html libs/math/doc/html/math_toolkit/ellint.html libs/math/doc/html/math_toolkit/ellint/ellint_1.html libs/math/doc/html/math_toolkit/ellint/ellint_2.html libs/math/doc/html/math_toolkit/ellint/ellint_3.html libs/math/doc/html/math_toolkit/ellint/ellint_carlson.html libs/math/doc/html/math_toolkit/ellint/ellint_intro.html libs/math/doc/html/math_toolkit/error_handling.html libs/math/doc/html/math_toolkit/exp.html libs/math/doc/html/math_toolkit/expint.html libs/math/doc/html/math_toolkit/expint/expint_i.html libs/math/doc/html/math_toolkit/expint/expint_n.html libs/math/doc/html/math_toolkit/factorials.html libs/math/doc/html/math_toolkit/factorials/sf_binomial.html libs/math/doc/html/math_toolkit/factorials/sf_double_factorial.html libs/math/doc/html/math_toolkit/factorials/sf_factorial.html libs/math/doc/html/math_toolkit/factorials/sf_falling_factorial.html libs/math/doc/html/math_toolkit/factorials/sf_rising_factorial.html libs/math/doc/html/math_toolkit/fp_facets.html libs/math/doc/html/math_toolkit/fp_facets/examples.html libs/math/doc/html/math_toolkit/fp_facets/facets_intro.html libs/math/doc/html/math_toolkit/fp_facets/portability.html libs/math/doc/html/math_toolkit/fp_facets/rationale.html libs/math/doc/html/math_toolkit/fp_facets/reference.html libs/math/doc/html/math_toolkit/fpclass.html libs/math/doc/html/math_toolkit/future.html libs/math/doc/html/math_toolkit/gcd_credits.html libs/math/doc/html/math_toolkit/gcd_function_object.html libs/math/doc/html/math_toolkit/gcd_header.html libs/math/doc/html/math_toolkit/gcd_history.html libs/math/doc/html/math_toolkit/getting_best.html libs/math/doc/html/math_toolkit/hankel.html libs/math/doc/html/math_toolkit/hankel/cyl_hankel.html libs/math/doc/html/math_toolkit/hankel/sph_hankel.html libs/math/doc/html/math_toolkit/high_precision.html libs/math/doc/html/math_toolkit/high_precision/e_float.html libs/math/doc/html/math_toolkit/high_precision/float128.html libs/math/doc/html/math_toolkit/high_precision/use_mpfr.html libs/math/doc/html/math_toolkit/high_precision/use_multiprecision.html libs/math/doc/html/math_toolkit/high_precision/use_ntl.html libs/math/doc/html/math_toolkit/high_precision/using_test.html libs/math/doc/html/math_toolkit/high_precision/why_high_precision.html libs/math/doc/html/math_toolkit/hints.html libs/math/doc/html/math_toolkit/history1.html libs/math/doc/html/math_toolkit/history2.html libs/math/doc/html/math_toolkit/internals1.html libs/math/doc/html/math_toolkit/internals1/cf.html libs/math/doc/html/math_toolkit/internals1/minima.html libs/math/doc/html/math_toolkit/internals1/rational.html libs/math/doc/html/math_toolkit/internals1/roots.html libs/math/doc/html/math_toolkit/internals1/roots2.html libs/math/doc/html/math_toolkit/internals1/series_evaluation.html libs/math/doc/html/math_toolkit/internals1/tuples.html libs/math/doc/html/math_toolkit/internals2.html libs/math/doc/html/math_toolkit/internals2/error_test.html libs/math/doc/html/math_toolkit/internals2/minimax.html libs/math/doc/html/math_toolkit/internals2/polynomials.html libs/math/doc/html/math_toolkit/internals2/test_data.html libs/math/doc/html/math_toolkit/internals_overview.html libs/math/doc/html/math_toolkit/interp.html libs/math/doc/html/math_toolkit/intro_pol_overview.html libs/math/doc/html/math_toolkit/introduction.html libs/math/doc/html/math_toolkit/inv_hyper.html libs/math/doc/html/math_toolkit/inv_hyper/acosh.html libs/math/doc/html/math_toolkit/inv_hyper/asinh.html libs/math/doc/html/math_toolkit/inv_hyper/atanh.html libs/math/doc/html/math_toolkit/inv_hyper/inv_hyper_over.html libs/math/doc/html/math_toolkit/issues.html libs/math/doc/html/math_toolkit/jacobi.html libs/math/doc/html/math_toolkit/jacobi/jac_over.html libs/math/doc/html/math_toolkit/jacobi/jacobi_cd.html libs/math/doc/html/math_toolkit/jacobi/jacobi_cn.html libs/math/doc/html/math_toolkit/jacobi/jacobi_cs.html libs/math/doc/html/math_toolkit/jacobi/jacobi_dc.html libs/math/doc/html/math_toolkit/jacobi/jacobi_dn.html libs/math/doc/html/math_toolkit/jacobi/jacobi_ds.html libs/math/doc/html/math_toolkit/jacobi/jacobi_elliptic.html libs/math/doc/html/math_toolkit/jacobi/jacobi_nc.html libs/math/doc/html/math_toolkit/jacobi/jacobi_nd.html libs/math/doc/html/math_toolkit/jacobi/jacobi_ns.html libs/math/doc/html/math_toolkit/jacobi/jacobi_sc.html libs/math/doc/html/math_toolkit/jacobi/jacobi_sd.html libs/math/doc/html/math_toolkit/jacobi/jacobi_sn.html libs/math/doc/html/math_toolkit/lanczos.html libs/math/doc/html/math_toolkit/lcm_function_object.html libs/math/doc/html/math_toolkit/main_faq.html libs/math/doc/html/math_toolkit/main_intro.html libs/math/doc/html/math_toolkit/main_tr1.html libs/math/doc/html/math_toolkit/mem_typedef.html libs/math/doc/html/math_toolkit/namespaces.html libs/math/doc/html/math_toolkit/navigation.html libs/math/doc/html/math_toolkit/new_const.html libs/math/doc/html/math_toolkit/next_float.html libs/math/doc/html/math_toolkit/next_float/float_advance.html libs/math/doc/html/math_toolkit/next_float/float_distance.html libs/math/doc/html/math_toolkit/next_float/float_next.html libs/math/doc/html/math_toolkit/next_float/float_prior.html libs/math/doc/html/math_toolkit/next_float/nextafter.html libs/math/doc/html/math_toolkit/oct_create.html libs/math/doc/html/math_toolkit/oct_header.html libs/math/doc/html/math_toolkit/oct_history.html libs/math/doc/html/math_toolkit/oct_mem_fun.html libs/math/doc/html/math_toolkit/oct_non_mem.html libs/math/doc/html/math_toolkit/oct_overview.html libs/math/doc/html/math_toolkit/oct_specialization.html libs/math/doc/html/math_toolkit/oct_synopsis.html libs/math/doc/html/math_toolkit/oct_tests.html libs/math/doc/html/math_toolkit/oct_todo.html libs/math/doc/html/math_toolkit/oct_trans.html libs/math/doc/html/math_toolkit/oct_typedefs.html libs/math/doc/html/math_toolkit/oct_value_ops.html libs/math/doc/html/math_toolkit/octonion.html libs/math/doc/html/math_toolkit/overview_tr1.html libs/math/doc/html/math_toolkit/owens_t.html libs/math/doc/html/math_toolkit/perf_over1.html libs/math/doc/html/math_toolkit/perf_over2.html libs/math/doc/html/math_toolkit/perf_test_app.html libs/math/doc/html/math_toolkit/pol_overview.html libs/math/doc/html/math_toolkit/pol_ref.html libs/math/doc/html/math_toolkit/pol_ref/assert_undefined.html libs/math/doc/html/math_toolkit/pol_ref/discrete_quant_ref.html libs/math/doc/html/math_toolkit/pol_ref/error_handling_policies.html libs/math/doc/html/math_toolkit/pol_ref/internal_promotion.html libs/math/doc/html/math_toolkit/pol_ref/iteration_pol.html libs/math/doc/html/math_toolkit/pol_ref/namespace_pol.html libs/math/doc/html/math_toolkit/pol_ref/pol_ref_ref.html libs/math/doc/html/math_toolkit/pol_ref/policy_defaults.html libs/math/doc/html/math_toolkit/pol_ref/precision_pol.html libs/math/doc/html/math_toolkit/pol_tutorial.html libs/math/doc/html/math_toolkit/pol_tutorial/ad_hoc_dist_policies.html libs/math/doc/html/math_toolkit/pol_tutorial/ad_hoc_sf_policies.html libs/math/doc/html/math_toolkit/pol_tutorial/changing_policy_defaults.html libs/math/doc/html/math_toolkit/pol_tutorial/namespace_policies.html libs/math/doc/html/math_toolkit/pol_tutorial/policy_tut_defaults.html libs/math/doc/html/math_toolkit/pol_tutorial/policy_usage.html libs/math/doc/html/math_toolkit/pol_tutorial/understand_dis_quant.html libs/math/doc/html/math_toolkit/pol_tutorial/user_def_err_pol.html libs/math/doc/html/math_toolkit/pol_tutorial/what_is_a_policy.html libs/math/doc/html/math_toolkit/powers.html libs/math/doc/html/math_toolkit/powers/cbrt.html libs/math/doc/html/math_toolkit/powers/cos_pi.html libs/math/doc/html/math_toolkit/powers/ct_pow.html libs/math/doc/html/math_toolkit/powers/expm1.html libs/math/doc/html/math_toolkit/powers/hypot.html libs/math/doc/html/math_toolkit/powers/log1p.html libs/math/doc/html/math_toolkit/powers/powm1.html libs/math/doc/html/math_toolkit/powers/sin_pi.html libs/math/doc/html/math_toolkit/powers/sqrt1pm1.html libs/math/doc/html/math_toolkit/quat.html libs/math/doc/html/math_toolkit/quat_header.html libs/math/doc/html/math_toolkit/quat_history.html libs/math/doc/html/math_toolkit/quat_mem_fun.html libs/math/doc/html/math_toolkit/quat_non_mem.html libs/math/doc/html/math_toolkit/quat_overview.html libs/math/doc/html/math_toolkit/quat_synopsis.html libs/math/doc/html/math_toolkit/quat_tests.html libs/math/doc/html/math_toolkit/quat_todo.html libs/math/doc/html/math_toolkit/rationale.html libs/math/doc/html/math_toolkit/refs.html libs/math/doc/html/math_toolkit/relative_error.html libs/math/doc/html/math_toolkit/remez.html libs/math/doc/html/math_toolkit/result_type.html libs/math/doc/html/math_toolkit/rounding.html libs/math/doc/html/math_toolkit/rounding/modf.html libs/math/doc/html/math_toolkit/rounding/round.html libs/math/doc/html/math_toolkit/rounding/trunc.html libs/math/doc/html/math_toolkit/run_time.html libs/math/doc/html/math_toolkit/sf_beta.html libs/math/doc/html/math_toolkit/sf_beta/beta_derivative.html libs/math/doc/html/math_toolkit/sf_beta/beta_function.html libs/math/doc/html/math_toolkit/sf_beta/ibeta_function.html libs/math/doc/html/math_toolkit/sf_beta/ibeta_inv_function.html libs/math/doc/html/math_toolkit/sf_erf.html libs/math/doc/html/math_toolkit/sf_erf/error_function.html libs/math/doc/html/math_toolkit/sf_erf/error_inv.html libs/math/doc/html/math_toolkit/sf_gamma.html libs/math/doc/html/math_toolkit/sf_gamma/digamma.html libs/math/doc/html/math_toolkit/sf_gamma/gamma_derivatives.html libs/math/doc/html/math_toolkit/sf_gamma/gamma_ratios.html libs/math/doc/html/math_toolkit/sf_gamma/igamma.html libs/math/doc/html/math_toolkit/sf_gamma/igamma_inv.html libs/math/doc/html/math_toolkit/sf_gamma/lgamma.html libs/math/doc/html/math_toolkit/sf_gamma/tgamma.html libs/math/doc/html/math_toolkit/sf_implementation.html libs/math/doc/html/math_toolkit/sf_poly.html libs/math/doc/html/math_toolkit/sf_poly/hermite.html libs/math/doc/html/math_toolkit/sf_poly/laguerre.html libs/math/doc/html/math_toolkit/sf_poly/legendre.html libs/math/doc/html/math_toolkit/sf_poly/sph_harm.html libs/math/doc/html/math_toolkit/sign_functions.html libs/math/doc/html/math_toolkit/sinc.html libs/math/doc/html/math_toolkit/sinc/sinc_overview.html libs/math/doc/html/math_toolkit/sinc/sinc_pi.html libs/math/doc/html/math_toolkit/sinc/sinhc_pi.html libs/math/doc/html/math_toolkit/spec.html libs/math/doc/html/math_toolkit/stat_tut.html libs/math/doc/html/math_toolkit/stat_tut/dist_params.html libs/math/doc/html/math_toolkit/stat_tut/overview.html libs/math/doc/html/math_toolkit/stat_tut/overview/complements.html libs/math/doc/html/math_toolkit/stat_tut/overview/generic.html libs/math/doc/html/math_toolkit/stat_tut/overview/headers.html libs/math/doc/html/math_toolkit/stat_tut/overview/objects.html libs/math/doc/html/math_toolkit/stat_tut/overview/parameters.html libs/math/doc/html/math_toolkit/stat_tut/overview/summary.html libs/math/doc/html/math_toolkit/stat_tut/variates.html libs/math/doc/html/math_toolkit/stat_tut/weg.html libs/math/doc/html/math_toolkit/stat_tut/weg/binom_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/binom_eg/binom_conf.html libs/math/doc/html/math_toolkit/stat_tut/weg/binom_eg/binom_size_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/binom_eg/binomial_coinflip_example.html libs/math/doc/html/math_toolkit/stat_tut/weg/binom_eg/binomial_quiz_example.html libs/math/doc/html/math_toolkit/stat_tut/weg/c_sharp.html libs/math/doc/html/math_toolkit/stat_tut/weg/cs_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/cs_eg/chi_sq_intervals.html libs/math/doc/html/math_toolkit/stat_tut/weg/cs_eg/chi_sq_size.html libs/math/doc/html/math_toolkit/stat_tut/weg/cs_eg/chi_sq_test.html libs/math/doc/html/math_toolkit/stat_tut/weg/dist_construct_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/error_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/f_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/find_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/find_eg/find_location_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/find_eg/find_mean_and_sd_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/find_eg/find_scale_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/geometric_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/inverse_chi_squared_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/nag_library.html libs/math/doc/html/math_toolkit/stat_tut/weg/nccs_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/nccs_eg/nccs_power_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/neg_binom_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/neg_binom_eg/neg_binom_conf.html libs/math/doc/html/math_toolkit/stat_tut/weg/neg_binom_eg/neg_binom_size_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/neg_binom_eg/negative_binomial_example1.html libs/math/doc/html/math_toolkit/stat_tut/weg/neg_binom_eg/negative_binomial_example2.html libs/math/doc/html/math_toolkit/stat_tut/weg/normal_example.html libs/math/doc/html/math_toolkit/stat_tut/weg/normal_example/normal_misc.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg/paired_st.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg/tut_mean_intervals.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg/tut_mean_size.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg/tut_mean_test.html libs/math/doc/html/math_toolkit/stat_tut/weg/st_eg/two_sample_students_t.html libs/math/doc/html/math_toolkit/synopsis.html libs/math/doc/html/math_toolkit/threads.html libs/math/doc/html/math_toolkit/tr1_ref.html libs/math/doc/html/math_toolkit/trans.html libs/math/doc/html/math_toolkit/tuning.html libs/math/doc/html/math_toolkit/tutorial.html libs/math/doc/html/math_toolkit/tutorial/non_templ.html libs/math/doc/html/math_toolkit/tutorial/templ.html libs/math/doc/html/math_toolkit/tutorial/user_def.html libs/math/doc/html/math_toolkit/value_op.html libs/math/doc/html/math_toolkit/zetas.html libs/math/doc/html/math_toolkit/zetas/zeta.html libs/math/doc/html/octonions.html libs/math/doc/html/overview.html libs/math/doc/html/perf.html libs/math/doc/html/policy.html libs/math/doc/html/quaternions.html libs/math/doc/html/special.html libs/math/doc/html/status.html libs/math/doc/html/toolkit.html libs/math/doc/html/using_udt.html libs/math/doc/html/utils.html libs/math/doc/index.html libs/math/index.html libs/move/index.html libs/mpi/index.html libs/mpl/doc/index.html libs/mpl/doc/refmanual.html libs/mpl/doc/refmanual/accumulate.html libs/mpl/doc/refmanual/acknowledgements.html libs/mpl/doc/refmanual/advance.html libs/mpl/doc/refmanual/algorithms-concepts.html libs/mpl/doc/refmanual/algorithms.html libs/mpl/doc/refmanual/always.html libs/mpl/doc/refmanual/and.html libs/mpl/doc/refmanual/apply-wrap.html libs/mpl/doc/refmanual/apply.html libs/mpl/doc/refmanual/arg.html libs/mpl/doc/refmanual/arithmetic-operations.html libs/mpl/doc/refmanual/assert-msg.html libs/mpl/doc/refmanual/assert-not.html libs/mpl/doc/refmanual/assert-relation.html libs/mpl/doc/refmanual/assert.html libs/mpl/doc/refmanual/asserts.html libs/mpl/doc/refmanual/associative-sequence.html libs/mpl/doc/refmanual/at-c.html libs/mpl/doc/refmanual/at.html libs/mpl/doc/refmanual/aux-lambda-support.html libs/mpl/doc/refmanual/back-extensible-sequence.html libs/mpl/doc/refmanual/back-inserter.html libs/mpl/doc/refmanual/back.html libs/mpl/doc/refmanual/begin.html libs/mpl/doc/refmanual/bidirectional-iterator.html libs/mpl/doc/refmanual/bidirectional-sequence.html libs/mpl/doc/refmanual/bind.html libs/mpl/doc/refmanual/bitand.html libs/mpl/doc/refmanual/bitor.html libs/mpl/doc/refmanual/bitwise-operations.html libs/mpl/doc/refmanual/bitxor.html libs/mpl/doc/refmanual/bool.html libs/mpl/doc/refmanual/broken-compiler-workarounds.html libs/mpl/doc/refmanual/c-str.html libs/mpl/doc/refmanual/categorized-index-concepts.html libs/mpl/doc/refmanual/categorized-index.html libs/mpl/doc/refmanual/cfg-no-has-xxx-template.html libs/mpl/doc/refmanual/cfg-no-has-xxx.html libs/mpl/doc/refmanual/cfg-no-preprocessed-headers.html libs/mpl/doc/refmanual/char.html libs/mpl/doc/refmanual/classes.html libs/mpl/doc/refmanual/clear.html libs/mpl/doc/refmanual/comparisons.html libs/mpl/doc/refmanual/components.html libs/mpl/doc/refmanual/composition-and-argument-binding.html libs/mpl/doc/refmanual/concepts.html libs/mpl/doc/refmanual/configuration.html libs/mpl/doc/refmanual/contains.html libs/mpl/doc/refmanual/copy-if.html libs/mpl/doc/refmanual/copy.html libs/mpl/doc/refmanual/count-if.html libs/mpl/doc/refmanual/count.html libs/mpl/doc/refmanual/data-types-concepts.html libs/mpl/doc/refmanual/data-types-miscellaneous.html libs/mpl/doc/refmanual/data-types.html libs/mpl/doc/refmanual/deque.html libs/mpl/doc/refmanual/deref.html libs/mpl/doc/refmanual/distance.html libs/mpl/doc/refmanual/divides.html libs/mpl/doc/refmanual/empty-base.html libs/mpl/doc/refmanual/empty-sequence.html libs/mpl/doc/refmanual/empty.html libs/mpl/doc/refmanual/end.html libs/mpl/doc/refmanual/equal-to.html libs/mpl/doc/refmanual/equal.html libs/mpl/doc/refmanual/erase-key.html libs/mpl/doc/refmanual/erase.html libs/mpl/doc/refmanual/eval-if-c.html libs/mpl/doc/refmanual/eval-if.html libs/mpl/doc/refmanual/extensible-associative-sequence.html libs/mpl/doc/refmanual/extensible-sequence.html libs/mpl/doc/refmanual/filter-view.html libs/mpl/doc/refmanual/find-if.html libs/mpl/doc/refmanual/find.html libs/mpl/doc/refmanual/fold.html libs/mpl/doc/refmanual/for-each.html libs/mpl/doc/refmanual/forward-iterator.html libs/mpl/doc/refmanual/forward-sequence.html libs/mpl/doc/refmanual/front-extensible-sequence.html libs/mpl/doc/refmanual/front-inserter.html libs/mpl/doc/refmanual/front.html libs/mpl/doc/refmanual/greater-equal.html libs/mpl/doc/refmanual/greater.html libs/mpl/doc/refmanual/has-key.html libs/mpl/doc/refmanual/has-xxx-template-def.html libs/mpl/doc/refmanual/has-xxx-template-named-def.html libs/mpl/doc/refmanual/has-xxx-trait-def.html libs/mpl/doc/refmanual/has-xxx-trait-named-def.html libs/mpl/doc/refmanual/identity.html libs/mpl/doc/refmanual/if-c.html libs/mpl/doc/refmanual/if.html libs/mpl/doc/refmanual/inherit-linearly.html libs/mpl/doc/refmanual/inherit.html libs/mpl/doc/refmanual/insert-range.html libs/mpl/doc/refmanual/insert.html libs/mpl/doc/refmanual/inserter-class.html libs/mpl/doc/refmanual/inserter.html libs/mpl/doc/refmanual/inserters.html libs/mpl/doc/refmanual/int.html libs/mpl/doc/refmanual/integral-c.html libs/mpl/doc/refmanual/integral-constant.html libs/mpl/doc/refmanual/integral-sequence-wrapper.html libs/mpl/doc/refmanual/intrinsic-metafunctions.html libs/mpl/doc/refmanual/introspection.html libs/mpl/doc/refmanual/invocation.html libs/mpl/doc/refmanual/is-sequence.html libs/mpl/doc/refmanual/iter-fold.html libs/mpl/doc/refmanual/iteration-algorithms.html libs/mpl/doc/refmanual/iterator-category.html libs/mpl/doc/refmanual/iterator-metafunctions.html libs/mpl/doc/refmanual/iterator-range.html libs/mpl/doc/refmanual/iterators-concepts.html libs/mpl/doc/refmanual/iterators.html libs/mpl/doc/refmanual/joint-view.html libs/mpl/doc/refmanual/key-type.html libs/mpl/doc/refmanual/lambda-expression.html libs/mpl/doc/refmanual/lambda.html libs/mpl/doc/refmanual/less-equal.html libs/mpl/doc/refmanual/less.html libs/mpl/doc/refmanual/limit-list-size.html libs/mpl/doc/refmanual/limit-map-size.html libs/mpl/doc/refmanual/limit-metafunction-arity.html libs/mpl/doc/refmanual/limit-set-size.html libs/mpl/doc/refmanual/limit-string-size.html libs/mpl/doc/refmanual/limit-unrolling.html libs/mpl/doc/refmanual/limit-vector-size.html libs/mpl/doc/refmanual/list-c.html libs/mpl/doc/refmanual/list.html libs/mpl/doc/refmanual/logical-operations.html libs/mpl/doc/refmanual/long.html libs/mpl/doc/refmanual/lower-bound.html libs/mpl/doc/refmanual/macros.html libs/mpl/doc/refmanual/map.html libs/mpl/doc/refmanual/max-element.html libs/mpl/doc/refmanual/max.html libs/mpl/doc/refmanual/metafunction-class.html libs/mpl/doc/refmanual/metafunction.html libs/mpl/doc/refmanual/metafunctions-concepts.html libs/mpl/doc/refmanual/metafunctions.html libs/mpl/doc/refmanual/min-element.html libs/mpl/doc/refmanual/min.html libs/mpl/doc/refmanual/minus.html libs/mpl/doc/refmanual/miscellaneous.html libs/mpl/doc/refmanual/modulus.html libs/mpl/doc/refmanual/negate.html libs/mpl/doc/refmanual/next.html libs/mpl/doc/refmanual/not-equal-to.html libs/mpl/doc/refmanual/not.html libs/mpl/doc/refmanual/numeric-cast.html libs/mpl/doc/refmanual/numeric-metafunction.html libs/mpl/doc/refmanual/numeric.html libs/mpl/doc/refmanual/or.html libs/mpl/doc/refmanual/order.html libs/mpl/doc/refmanual/pair.html libs/mpl/doc/refmanual/partition.html libs/mpl/doc/refmanual/placeholder-expression.html libs/mpl/doc/refmanual/placeholders.html libs/mpl/doc/refmanual/plus.html libs/mpl/doc/refmanual/pop-back.html libs/mpl/doc/refmanual/pop-front.html libs/mpl/doc/refmanual/prior.html libs/mpl/doc/refmanual/protect.html libs/mpl/doc/refmanual/push-back.html libs/mpl/doc/refmanual/push-front.html libs/mpl/doc/refmanual/querying-algorithms.html libs/mpl/doc/refmanual/quote.html libs/mpl/doc/refmanual/random-access-iterator.html libs/mpl/doc/refmanual/random-access-sequence.html libs/mpl/doc/refmanual/range-c.html libs/mpl/doc/refmanual/refmanual_toc.html libs/mpl/doc/refmanual/remove-if.html libs/mpl/doc/refmanual/remove.html libs/mpl/doc/refmanual/replace-if.html libs/mpl/doc/refmanual/replace.html libs/mpl/doc/refmanual/reverse-copy-if.html libs/mpl/doc/refmanual/reverse-copy.html libs/mpl/doc/refmanual/reverse-fold.html libs/mpl/doc/refmanual/reverse-iter-fold.html libs/mpl/doc/refmanual/reverse-partition.html libs/mpl/doc/refmanual/reverse-remove-if.html libs/mpl/doc/refmanual/reverse-remove.html libs/mpl/doc/refmanual/reverse-replace-if.html libs/mpl/doc/refmanual/reverse-replace.html libs/mpl/doc/refmanual/reverse-stable-partition.html libs/mpl/doc/refmanual/reverse-transform.html libs/mpl/doc/refmanual/reverse-unique.html libs/mpl/doc/refmanual/reverse.html libs/mpl/doc/refmanual/reversible-algorithm.html libs/mpl/doc/refmanual/runtime-algorithms.html libs/mpl/doc/refmanual/sequence-tag.html libs/mpl/doc/refmanual/sequences.html libs/mpl/doc/refmanual/set-c.html libs/mpl/doc/refmanual/set.html libs/mpl/doc/refmanual/shift-left.html libs/mpl/doc/refmanual/shift-right.html libs/mpl/doc/refmanual/single-view.html libs/mpl/doc/refmanual/size-t.html libs/mpl/doc/refmanual/size.html libs/mpl/doc/refmanual/sizeof.html libs/mpl/doc/refmanual/sort.html libs/mpl/doc/refmanual/stable-partition.html libs/mpl/doc/refmanual/string-operations.html libs/mpl/doc/refmanual/string.html libs/mpl/doc/refmanual/tag-dispatched-metafunction.html libs/mpl/doc/refmanual/terminology.html libs/mpl/doc/refmanual/times.html libs/mpl/doc/refmanual/transform-view.html libs/mpl/doc/refmanual/transform.html libs/mpl/doc/refmanual/transformation-algorithms.html libs/mpl/doc/refmanual/trivial-metafunction.html libs/mpl/doc/refmanual/trivial-metafunctions-summary.html libs/mpl/doc/refmanual/trivial.html libs/mpl/doc/refmanual/type-selection.html libs/mpl/doc/refmanual/unique.html libs/mpl/doc/refmanual/unpack-args.html libs/mpl/doc/refmanual/upper-bound.html libs/mpl/doc/refmanual/value-type.html libs/mpl/doc/refmanual/variadic-sequence.html libs/mpl/doc/refmanual/vector-c.html libs/mpl/doc/refmanual/vector.html libs/mpl/doc/refmanual/views.html libs/mpl/doc/refmanual/void.html libs/mpl/doc/refmanual/zip-view.html libs/mpl/doc/tutorial/acknowledgements.html libs/mpl/doc/tutorial/apply-lambda-semantics.html libs/mpl/doc/tutorial/broken-integral-constant.html libs/mpl/doc/tutorial/changelog-history.html libs/mpl/doc/tutorial/changes-in-boost-1-32-0.html libs/mpl/doc/tutorial/dependencies.html libs/mpl/doc/tutorial/details.html libs/mpl/doc/tutorial/dimensional-analysis.html libs/mpl/doc/tutorial/eti.html libs/mpl/doc/tutorial/exercises.html libs/mpl/doc/tutorial/handling-placeholders.html libs/mpl/doc/tutorial/higher-order.html libs/mpl/doc/tutorial/implementing-addition-and.html libs/mpl/doc/tutorial/implementing-division.html libs/mpl/doc/tutorial/implementing.html libs/mpl/doc/tutorial/incomplete-support-for.html libs/mpl/doc/tutorial/iterator-protocol.html libs/mpl/doc/tutorial/lambda-and-non.html libs/mpl/doc/tutorial/lambda-details.html libs/mpl/doc/tutorial/metafunction-composition.html libs/mpl/doc/tutorial/miscellaneous.html libs/mpl/doc/tutorial/more-lambda-capabilities.html libs/mpl/doc/tutorial/numeric-metafunction.html libs/mpl/doc/tutorial/partial-metafunction.html libs/mpl/doc/tutorial/physical-structure.html libs/mpl/doc/tutorial/placeholder-expression.html libs/mpl/doc/tutorial/placeholders.html libs/mpl/doc/tutorial/portability.html libs/mpl/doc/tutorial/reference-manual.html libs/mpl/doc/tutorial/renaming-cleanup.html libs/mpl/doc/tutorial/representing-dimensions.html libs/mpl/doc/tutorial/representing-quantities.html libs/mpl/doc/tutorial/resources.html libs/mpl/doc/tutorial/tag-dispatching-protocol.html libs/mpl/doc/tutorial/technical-details.html libs/mpl/doc/tutorial/the-apply-metafunction.html libs/mpl/doc/tutorial/the-importance-of-being.html libs/mpl/doc/tutorial/the-lambda-metafunction.html libs/mpl/doc/tutorial/tutorial-metafunctions.html libs/mpl/doc/tutorial/tutorial_toc.html libs/mpl/index.html libs/msm/doc/HTML/ch01.html libs/msm/doc/HTML/ch02.html libs/msm/doc/HTML/ch02s02.html libs/msm/doc/HTML/ch02s03.html libs/msm/doc/HTML/ch02s04.html libs/msm/doc/HTML/ch03.html libs/msm/doc/HTML/ch03s02.html libs/msm/doc/HTML/ch03s03.html libs/msm/doc/HTML/ch03s04.html libs/msm/doc/HTML/ch03s05.html libs/msm/doc/HTML/ch04.html libs/msm/doc/HTML/ch04s02.html libs/msm/doc/HTML/ch04s03.html libs/msm/doc/HTML/ch04s04.html libs/msm/doc/HTML/ch04s05.html libs/msm/doc/HTML/ch05.html libs/msm/doc/HTML/ch06.html libs/msm/doc/HTML/ch06s02.html libs/msm/doc/HTML/ch06s03.html libs/msm/doc/HTML/ch06s04.html libs/msm/doc/HTML/ch07.html libs/msm/doc/HTML/ch07s02.html libs/msm/doc/HTML/ch08.html libs/msm/doc/HTML/ch08s02.html libs/msm/doc/HTML/ch08s03.html libs/msm/doc/HTML/ch08s04.html libs/msm/doc/HTML/ch08s05.html libs/msm/doc/HTML/ch08s06.html libs/msm/doc/HTML/ch08s07.html libs/msm/doc/HTML/ch08s08.html libs/msm/doc/HTML/ch09.html libs/msm/doc/HTML/ch10.html libs/msm/doc/HTML/ch11.html libs/msm/doc/HTML/index.html libs/msm/doc/HTML/pr01.html libs/msm/doc/HTML/pt01.html libs/msm/doc/HTML/pt02.html libs/msm/doc/HTML/re01.html libs/msm/doc/HTML/re02.html libs/msm/doc/HTML/re03.html libs/msm/index.html libs/multi_array/doc/index.html libs/multi_array/doc/iterator_categories.html libs/multi_array/doc/notes.html libs/multi_array/doc/reference.html libs/multi_array/doc/test_cases.html libs/multi_array/doc/user.html libs/multi_index/doc/acknowledgements.html libs/multi_index/doc/compiler_specifics.html libs/multi_index/doc/examples.html libs/multi_index/doc/future_work.html libs/multi_index/doc/index.html libs/multi_index/doc/performance.html libs/multi_index/doc/reference/hash_indices.html libs/multi_index/doc/reference/index.html libs/multi_index/doc/reference/indices.html libs/multi_index/doc/reference/key_extraction.html libs/multi_index/doc/reference/multi_index_container.html libs/multi_index/doc/reference/ord_indices.html libs/multi_index/doc/reference/rnd_indices.html libs/multi_index/doc/reference/seq_indices.html libs/multi_index/doc/release_notes.html libs/multi_index/doc/tests.html libs/multi_index/doc/tutorial/basics.html libs/multi_index/doc/tutorial/creation.html libs/multi_index/doc/tutorial/debug.html libs/multi_index/doc/tutorial/index.html libs/multi_index/doc/tutorial/indices.html libs/multi_index/doc/tutorial/key_extraction.html libs/multi_index/doc/tutorial/techniques.html libs/multi_index/index.html libs/multiprecision/doc/html/boost_multiprecision/indexes.html libs/multiprecision/doc/html/boost_multiprecision/indexes/s01.html libs/multiprecision/doc/html/boost_multiprecision/indexes/s02.html libs/multiprecision/doc/html/boost_multiprecision/indexes/s03.html libs/multiprecision/doc/html/boost_multiprecision/indexes/s04.html libs/multiprecision/doc/html/boost_multiprecision/intro.html libs/multiprecision/doc/html/boost_multiprecision/map.html libs/multiprecision/doc/html/boost_multiprecision/map/ack.html libs/multiprecision/doc/html/boost_multiprecision/map/faq.html libs/multiprecision/doc/html/boost_multiprecision/map/hist.html libs/multiprecision/doc/html/boost_multiprecision/map/todo.html libs/multiprecision/doc/html/boost_multiprecision/perf.html libs/multiprecision/doc/html/boost_multiprecision/perf/float_performance.html libs/multiprecision/doc/html/boost_multiprecision/perf/int_real_world.html libs/multiprecision/doc/html/boost_multiprecision/perf/integer_performance.html libs/multiprecision/doc/html/boost_multiprecision/perf/overhead.html libs/multiprecision/doc/html/boost_multiprecision/perf/rational_performance.html libs/multiprecision/doc/html/boost_multiprecision/perf/realworld.html libs/multiprecision/doc/html/boost_multiprecision/ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/backendconc.html libs/multiprecision/doc/html/boost_multiprecision/ref/cpp_dec_ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/cpp_int_ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/gmp_int_ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/headers.html libs/multiprecision/doc/html/boost_multiprecision/ref/internals.html libs/multiprecision/doc/html/boost_multiprecision/ref/mpf_ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/mpfr_ref.html libs/multiprecision/doc/html/boost_multiprecision/ref/number.html libs/multiprecision/doc/html/boost_multiprecision/ref/tom_int_ref.html libs/multiprecision/doc/html/boost_multiprecision/tut.html libs/multiprecision/doc/html/boost_multiprecision/tut/conversions.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/cpp_dec_float.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/float128.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg/aos.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg/gi.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg/jel.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg/nd.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/fp_eg/poly_eg.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/gmp_float.html libs/multiprecision/doc/html/boost_multiprecision/tut/floats/mpfr_float.html libs/multiprecision/doc/html/boost_multiprecision/tut/interval.html libs/multiprecision/doc/html/boost_multiprecision/tut/interval/mpfi.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/cpp_int.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/egs.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/egs/bitops.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/egs/factorials.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/gmp_int.html libs/multiprecision/doc/html/boost_multiprecision/tut/ints/tom_int.html libs/multiprecision/doc/html/boost_multiprecision/tut/lits.html libs/multiprecision/doc/html/boost_multiprecision/tut/misc.html libs/multiprecision/doc/html/boost_multiprecision/tut/misc/debug_adaptor.html libs/multiprecision/doc/html/boost_multiprecision/tut/misc/logged_adaptor.html libs/multiprecision/doc/html/boost_multiprecision/tut/misc/visualizers.html libs/multiprecision/doc/html/boost_multiprecision/tut/mixed.html libs/multiprecision/doc/html/boost_multiprecision/tut/primetest.html libs/multiprecision/doc/html/boost_multiprecision/tut/random.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational/br.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational/cpp_rational.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational/gmp_rational.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational/rational_adaptor.html libs/multiprecision/doc/html/boost_multiprecision/tut/rational/tommath_rational.html libs/multiprecision/doc/html/boost_multiprecision/tut/rounding.html libs/multiprecision/doc/html/index.html libs/multiprecision/index.html libs/numeric/conversion/doc/html/boost_numericconversion/bounds___traits_class.html libs/numeric/conversion/doc/html/boost_numericconversion/conversion_traits___traits_class.html libs/numeric/conversion/doc/html/boost_numericconversion/converter___function_object.html libs/numeric/conversion/doc/html/boost_numericconversion/definitions.html libs/numeric/conversion/doc/html/boost_numericconversion/improved_numeric_cast__.html libs/numeric/conversion/doc/html/boost_numericconversion/numeric_converter_policy_classes.html libs/numeric/conversion/doc/html/boost_numericconversion/type_requirements_and_user_defined_types_support.html libs/numeric/conversion/doc/html/index.html libs/numeric/conversion/doc/html/numeric_conversion/bibliography.html libs/numeric/conversion/doc/html/numeric_conversion/history_and_acknowledgments.html libs/numeric/interval/doc/checking.htm libs/numeric/interval/doc/comparisons.htm libs/numeric/interval/doc/examples.htm libs/numeric/interval/doc/guide.htm libs/numeric/interval/doc/includes.htm libs/numeric/interval/doc/interval.htm libs/numeric/interval/doc/numbers.htm libs/numeric/interval/doc/policies.htm libs/numeric/interval/doc/rounding.htm libs/numeric/interval/doc/todo.htm libs/numeric/odeint/doc/html/boost/numeric/odeint/adams_bashforth.html libs/numeric/odeint/doc/html/boost/numeric/odeint/adams_bashforth_moulton.html libs/numeric/odeint/doc/html/boost/numeric/odeint/adams_moulton.html libs/numeric/odeint/doc/html/boost/numeric/odeint/algebra_stepper_base.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_contr_idp21299152.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_dense_idp21301904.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_error_idp21296464.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_expli_idp21297360.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_expli_idp21298256.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_expli_idp21300064.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_expli_idp21300976.html libs/numeric/odeint/doc/html/boost/numeric/odeint/base_tag_stepp_idp21295584.html libs/numeric/odeint/doc/html/boost/numeric/odeint/bulirsch_stoer.html libs/numeric/odeint/doc/html/boost/numeric/odeint/bulirsch_stoer_dense_out.html libs/numeric/odeint/doc/html/boost/numeric/odeint/controlled_run_idp20221056.html libs/numeric/odeint/doc/html/boost/numeric/odeint/controlled_run_idp20285920.html libs/numeric/odeint/doc/html/boost/numeric/odeint/controlled_runge_kutta.html libs/numeric/odeint/doc/html/boost/numeric/odeint/controlled_stepper_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/default_error_checker.html libs/numeric/odeint/doc/html/boost/numeric/odeint/default_rosenb_idp20694128.html libs/numeric/odeint/doc/html/boost/numeric/odeint/dense_output_r_idp20346736.html libs/numeric/odeint/doc/html/boost/numeric/odeint/dense_output_r_idp20378576.html libs/numeric/odeint/doc/html/boost/numeric/odeint/dense_output_runge_kutta.html libs/numeric/odeint/doc/html/boost/numeric/odeint/dense_output_stepper_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/error_stepper_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/euler.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_contr_idp21293728.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_contr_idp21294240.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_error_generic_rk.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_error_idp19750672.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_error_idp19850144.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_error_idp21293008.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_error_stepper_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_generic_rk.html libs/numeric/odeint/doc/html/boost/numeric/odeint/explicit_stepper_base.html libs/numeric/odeint/doc/html/boost/numeric/odeint/implicit_euler.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_adap_idp19520144.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_cons_idp19540240.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_idp10099280.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_idp19514032.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_n_st_idp19559904.html libs/numeric/odeint/doc/html/boost/numeric/odeint/integrate_time_idp19579536.html libs/numeric/odeint/doc/html/boost/numeric/odeint/modified_midpo_idp20675728.html libs/numeric/odeint/doc/html/boost/numeric/odeint/modified_midpoint.html libs/numeric/odeint/doc/html/boost/numeric/odeint/null_observer.html libs/numeric/odeint/doc/html/boost/numeric/odeint/observer_collection.html libs/numeric/odeint/doc/html/boost/numeric/odeint/rosenbrock4.html libs/numeric/odeint/doc/html/boost/numeric/odeint/rosenbrock4_controller.html libs/numeric/odeint/doc/html/boost/numeric/odeint/rosenbrock4_dense_output.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta4.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta4_classic.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta_ca_idp20976880.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta_cash_karp54.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta_dopri5.html libs/numeric/odeint/doc/html/boost/numeric/odeint/runge_kutta_fehlberg78.html libs/numeric/odeint/doc/html/boost/numeric/odeint/stepper_tag.html libs/numeric/odeint/doc/html/boost/numeric/odeint/symplectic_euler.html libs/numeric/odeint/doc/html/boost/numeric/odeint/symplectic_nys_idp20023936.html libs/numeric/odeint/doc/html/boost/numeric/odeint/symplectic_rkn_idp21344416.html libs/numeric/odeint/doc/html/boost/numeric/odeint/symplectic_rkn_idp21385536.html libs/numeric/odeint/doc/html/boost_numeric_odeint/acknowledgments.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/controlled_stepper.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/dense_output_stepper.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/error_stepper.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/implicit_system.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/simple_symplectic_system.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/state_algebra_operations.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/state_wrapper.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/stepper.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/symplectic_system.html libs/numeric/odeint/doc/html/boost_numeric_odeint/concepts/system.html libs/numeric/odeint/doc/html/boost_numeric_odeint/getting_started.html libs/numeric/odeint/doc/html/boost_numeric_odeint/getting_started/overview.html libs/numeric/odeint/doc/html/boost_numeric_odeint/getting_started/short_example.html libs/numeric/odeint/doc/html/boost_numeric_odeint/getting_started/usage__compilation__headers.html libs/numeric/odeint/doc/html/boost_numeric_odeint/literature.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/binding_member_functions.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/generation_functions.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/integrate_functions.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/state_types__algebras_and_operations.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/steppers.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/using_boost__range.html libs/numeric/odeint/doc/html/boost_numeric_odeint/odeint_in_detail/using_boost__ref.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/all_examples.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/chaotic_systems_and_lyapunov_exponents.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/complex_state_types.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/ensembles_of_oscillators.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/harmonic_oscillator.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/lattice_systems.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/self_expanding_lattices.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/solar_system.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/stiff_systems.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/using_arbitrary_precision_floating_point_types.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/using_boost__units.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/using_cuda__or_openmp__tbb_______via_thrust.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/using_matrices_as_state_types.html libs/numeric/odeint/doc/html/boost_numeric_odeint/tutorial/using_opencl_via_vexcl.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/integrate_adaptive_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/integrate_const_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/integrate_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/integrate_n_steps_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/integrate_times_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/null_observer_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/integrate/observer_collection_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/adams_bashforth_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/adams_bashforth_moulton_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/adams_moulton_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/base/algebra_stepper_base_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/base/explicit_error_stepper_base_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/base/explicit_error_stepper_fsal_base_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/base/explicit_stepper_base_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/base/symplectic_rkn_stepper_base_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/bulirsch_stoer_dense_out_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/bulirsch_stoer_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/controlled_runge_kutta_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/controlled_step_result_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/dense_output_runge_kutta_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/euler_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/explicit_error_generic_rk_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/explicit_generic_rk_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/implicit_euler_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/modified_midpoint_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/rosenbrock4_controller_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/rosenbrock4_dense_output_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/rosenbrock4_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta4_classic_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta4_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta_cash_karp54_classic_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta_cash_karp54_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta_dopri5_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/runge_kutta_fehlberg78_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/stepper_categories_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/symplectic_euler_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/symplectic_rkn_sb3a_m4_mclachlan_hpp.html libs/numeric/odeint/doc/html/header/boost/numeric/odeint/stepper/symplectic_rkn_sb3a_mclachlan_hpp.html libs/numeric/odeint/doc/html/index.html libs/numeric/odeint/doc/html/odeint/indexes.html libs/numeric/odeint/doc/html/odeint/indexes/s01.html libs/numeric/odeint/doc/html/odeint/indexes/s02.html libs/numeric/odeint/doc/html/odeint/indexes/s03.html libs/numeric/odeint/doc/html/odeint_reference.html libs/numeric/odeint/index.html libs/numeric/ublas/doc/banded.htm libs/numeric/ublas/doc/blas.htm libs/numeric/ublas/doc/bounded_array.htm libs/numeric/ublas/doc/container_concept.htm libs/numeric/ublas/doc/expression_concept.htm libs/numeric/ublas/doc/hermitian.htm libs/numeric/ublas/doc/html/annotated.html libs/numeric/ublas/doc/html/assignment_8hpp_source.html libs/numeric/ublas/doc/html/banded_8hpp_source.html libs/numeric/ublas/doc/html/blas_8hpp_source.html libs/numeric/ublas/doc/html/bug.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1array__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__adaptor_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1banded__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1basic__range.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1basic__range_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1basic__slice.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1basic__slice_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1begin1__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1begin2__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1bounded__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1bounded__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1bounded__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1bounded__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1bounded__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1c__vector_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1compressed__vector_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1coordinate__vector_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1diagonal__adaptor-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1diagonal__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1diagonal__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1diagonal__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy_1_1index__assign.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy_1_1index__minus__assign.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy_1_1index__plus__assign.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy_1_1sparse__insert.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy_1_1sparse__push__back.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1fill__policy__wrapper.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1generalized__vector__of__vector_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__adaptor_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1hermitian__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1identity__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1identity__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1identity__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1identity__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1index__manipulator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1index__pair.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1index__pair__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1index__triple.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1index__triple__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1indirect__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1indirect__array_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1map__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1map__std.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1mapped__vector__of__mapped__vector_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar1_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar1_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar2_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar2_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__column-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__column.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__column_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__column_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__container.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__expression.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__expression__assigner.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__indirect_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__matrix__binary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__matrix__binary_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__matrix__binary_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__move__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__move__to__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__reference.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__row-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__row.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__row_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__row_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__scalar__unary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__slice_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary1_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary1_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary2_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__unary2_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__binary1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__binary1_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__binary2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__binary2_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__indirect-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__indirect.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__indirect_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__indirect_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__range-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__range.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__range_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__range_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__slice-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__slice.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__slice_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__vector__slice_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1next__column__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1next__row__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1permutation__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__expression.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__reference.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__value.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1static__matrix__move__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1static__matrix__move__to__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1static__vector__move__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1static__vector__move__to__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1storage__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__adaptor_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1symmetric__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1traverse__policy_1_1by__column__policy.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1traverse__policy_1_1by__row__policy.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1traverse__policy__wrapper.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__adaptor_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1triangular__matrix_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1ublas__expression.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1unbounded__array.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1unit__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1unit__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1unit__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary__scalar1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary__scalar1_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary__scalar2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__binary__scalar2_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__container.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__expression.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__expression__assigner.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__indirect-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__indirect.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__indirect_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__indirect_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__matrix__binary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__matrix__binary_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__matrix__binary_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__move__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__move__to__manip.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector_1_1iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__of__vector_1_1iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__range-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__range.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__range_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__range_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__reference.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__scalar__binary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__scalar__unary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__slice-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__slice.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__slice_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__slice_1_1iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__unary.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1vector__unary_1_1const__iterator.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__matrix-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__matrix.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__matrix_1_1const__iterator1.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__matrix_1_1const__iterator2.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__vector-members.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__vector.html libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1zero__vector_1_1const__iterator.html libs/numeric/ublas/doc/html/classnonassignable.html libs/numeric/ublas/doc/html/doxydoc_8hpp_source.html libs/numeric/ublas/doc/html/exception_8hpp_source.html libs/numeric/ublas/doc/html/expression__types_8hpp_source.html libs/numeric/ublas/doc/html/files.html libs/numeric/ublas/doc/html/functional_8hpp_source.html libs/numeric/ublas/doc/html/functions.html libs/numeric/ublas/doc/html/fwd_8hpp_source.html libs/numeric/ublas/doc/html/hermitian_8hpp_source.html libs/numeric/ublas/doc/html/hierarchy.html libs/numeric/ublas/doc/html/index.html libs/numeric/ublas/doc/html/io_8hpp_source.html libs/numeric/ublas/doc/html/lu_8hpp_source.html libs/numeric/ublas/doc/html/matrix_8hpp_source.html libs/numeric/ublas/doc/html/matrix__expression_8hpp_source.html libs/numeric/ublas/doc/html/matrix__proxy_8hpp_source.html libs/numeric/ublas/doc/html/matrix__sparse_8hpp_source.html libs/numeric/ublas/doc/html/operation_8hpp_source.html libs/numeric/ublas/doc/html/operation__blocked_8hpp_source.html libs/numeric/ublas/doc/html/operation__sparse_8hpp_source.html libs/numeric/ublas/doc/html/operations_8hpp_source.html libs/numeric/ublas/doc/html/pages.html libs/numeric/ublas/doc/html/storage_8hpp_source.html libs/numeric/ublas/doc/html/storage__sparse_8hpp_source.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1assign__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1bad__argument.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1bad__index.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1bad__size.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__column__major.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__full.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__lower.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__row__major.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__strict__lower.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__strict__upper.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__unit__lower.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__unit__upper.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1basic__upper.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1column__major__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1complex__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1computed__assign__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1container__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1container__view__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1dense__proxy__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1dense__random__access__iterator__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1dense__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1has__trivial__constructor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1has__trivial__constructor_3_01std_1_1complex_3_01_f_l_t_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1has__trivial__destructor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1has__trivial__destructor_3_01std_1_1complex_3_01_f_l_t_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1less__pair.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1less__triple.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1map__capacity__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1map__capacity__traits_3_01map__array_3_01_i_00_01_t_00_01_a_l_l_o_c_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1map__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1map__traits_3_01map__array_3_01_i_00_01_t_00_01_a_l_l_o_c_01_4_00_01_t_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1detail_1_1transposed__structure.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1divide__by__zero.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1external__logic.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1internal__logic.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01dense__random__access__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01dense__random__access__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01packed__random__access__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01packed__random__access__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01sparse__bidirectional__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01sparse__bidirectional__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1bidirectional__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1bidirectional__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1forward__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1forward__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1random__access__iterator__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__base__traits_3_01std_1_1random__access__iterator__tag_01_4_1_1iterator__base.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01dense__random__access__iteratod4c6edf0df751ebff1b8ea6b9d08eae7.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01dense__random__access__iteratodc161542be457382732ec49a83757970.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01packed__random__access__iterat170beb8dc7452d2a089622087df3fb79.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01packed__random__access__iteratb562f8de34ea5fb27fcb98884ee3d67a.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01sparse__bidirectional__iterato1e94698c6544162be6a31166833585d0.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1iterator__restrict__traits_3_01sparse__bidirectional__iterato23c588affc152003be288f42e0dc2744.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1lower__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar1__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__binary__scalar2__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__binary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__matrix__binary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__matrix__binary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__matrix__prod.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__matrix__solve__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__norm__1.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__norm__frobenius.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__norm__inf.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__scalar__real__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__scalar__unary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01banded__adaptor_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01banded__adaptor_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01hermitian__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01matrix__indirect_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01matrix__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01matrix__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01symmetric__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01const_01triangular__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01hermitian__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01matrix__indirect_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01matrix__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01matrix__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01symmetric__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__temporary__traits_3_01triangular__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__unary1__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__unary2__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__binary1__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__binary2__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__binary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__prod1.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__prod2.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__vector__solve__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1matrix__view__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1mutable__container__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1mutable__matrix__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1mutable__vector__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1non__real.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1packed__proxy__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1packed__random__access__iterator__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1packed__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1promote__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1row__major__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__assign.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__assign_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__binary__assign__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__binary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__binary__swap__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__conj.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__divides.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__divides__assign.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__divides__assign_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__identity.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__imag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__minus.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__minus__assign.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__minus__assign_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__multiplies.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__multiplies__assign.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__multiplies__assign_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__negate.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__plus.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__plus__assign.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__plus__assign_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__real.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__real__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__swap.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__swap_1_1rebind.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1scalar__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1singular.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1sparse__bidirectional__iterator__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1sparse__proxy__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1sparse__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01dense__proxy__tag_00_01packed__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01dense__proxy__tag_00_01sparse__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01dense__tag_00_01dense__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01dense__tag_00_01packed__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01dense__tag_00_01sparse__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01packed__proxy__tag_00_01sparse__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01packed__tag_00_01dense__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01packed__tag_00_01packed__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01packed__tag_00_01sparse__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01sparse__tag_00_01dense__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01sparse__tag_00_01packed__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1storage__restrict__traits_3_01sparse__tag_00_01sparse__proxy__tag_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1strict__lower__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1strict__upper__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1tag_1_1leading.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1tag_1_1major.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1tag_1_1minor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1traverse__policy_1_1no__wrap.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1traverse__policy_1_1wrap.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01double_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01float_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01long_01double_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01std_1_1complex_3_01double_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01std_1_1complex_3_01float_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1type__traits_3_01std_1_1complex_3_01long_01double_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1unit__lower__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1unit__upper__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1unknown__orientation__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1unknown__storage__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1upper__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__binary__scalar1__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__binary__scalar2__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__binary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__index__norm__inf.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__inner__prod.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__matrix__binary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__norm__1.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__norm__2.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__norm__inf.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__binary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__binary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__index__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__real__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__unary__functor.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__scalar__unary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__sum.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__tag.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01banded__adaptor_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01banded__adaptor_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01hermitian__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__column_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__indirect_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__row_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__vector__indirect_3_01_m_00_01_i_a_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__vector__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01matrix__vector__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01symmetric__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01triangular__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01vector__indirect_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01vector__range_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01const_01vector__slice_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01hermitian__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__column_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__indirect_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__row_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__vector__indirect_3_01_m_00_01_i_a_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__vector__range_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01matrix__vector__slice_3_01_m_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01symmetric__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01triangular__adaptor_3_01_m_00_01_t_r_i_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01vector__indirect_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01vector__range_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__temporary__traits_3_01vector__slice_3_01_v_01_4_01_4.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__unary__traits.html libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1vector__view__traits.html libs/numeric/ublas/doc/html/symmetric_8hpp_source.html libs/numeric/ublas/doc/html/tags_8hpp_source.html libs/numeric/ublas/doc/html/todo.html libs/numeric/ublas/doc/html/traits_8hpp_source.html libs/numeric/ublas/doc/html/triangular_8hpp_source.html libs/numeric/ublas/doc/html/vector_8hpp_source.html libs/numeric/ublas/doc/html/vector__expression_8hpp_source.html libs/numeric/ublas/doc/html/vector__of__vector_8hpp_source.html libs/numeric/ublas/doc/html/vector__proxy_8hpp_source.html libs/numeric/ublas/doc/html/vector__sparse_8hpp_source.html libs/numeric/ublas/doc/index.htm libs/numeric/ublas/doc/iterator_concept.htm libs/numeric/ublas/doc/matrix.htm libs/numeric/ublas/doc/matrix_expression.htm libs/numeric/ublas/doc/matrix_proxy.htm libs/numeric/ublas/doc/matrix_sparse.htm libs/numeric/ublas/doc/operations_overview.htm libs/numeric/ublas/doc/options.htm libs/numeric/ublas/doc/overview.htm libs/numeric/ublas/doc/products.htm libs/numeric/ublas/doc/range.htm libs/numeric/ublas/doc/release_notes.htm libs/numeric/ublas/doc/storage_concept.htm libs/numeric/ublas/doc/storage_sparse.htm libs/numeric/ublas/doc/symmetric.htm libs/numeric/ublas/doc/triangular.htm libs/numeric/ublas/doc/types_overview.htm libs/numeric/ublas/doc/unbounded_array.htm libs/numeric/ublas/doc/vector.htm libs/numeric/ublas/doc/vector_expression.htm libs/numeric/ublas/doc/vector_proxy.htm libs/numeric/ublas/doc/vector_sparse.htm libs/optional/doc/html/boost_optional/a_note_about_optional_bool_.html libs/optional/doc/html/boost_optional/acknowledgments.html libs/optional/doc/html/boost_optional/dependencies_and_portability.html libs/optional/doc/html/boost_optional/detailed_semantics.html libs/optional/doc/html/boost_optional/development.html libs/optional/doc/html/boost_optional/examples.html libs/optional/doc/html/boost_optional/exception_safety_guarantees.html libs/optional/doc/html/boost_optional/implementation_notes.html libs/optional/doc/html/boost_optional/in_place_factories.html libs/optional/doc/html/boost_optional/optional_references.html libs/optional/doc/html/boost_optional/rebinding_semantics_for_assignment_of_optional_references.html libs/optional/doc/html/boost_optional/synopsis.html libs/optional/doc/html/boost_optional/type_requirements.html libs/optional/doc/html/index.html libs/parameter/doc/html/index.html libs/parameter/doc/html/python.html libs/parameter/doc/html/reference.html libs/parameter/doc/html/rst.css libs/parameter/index.html libs/phoenix/doc/html/index.html libs/phoenix/doc/html/phoenix/acknowledgments.html libs/phoenix/doc/html/phoenix/actor.html libs/phoenix/doc/html/phoenix/basics.html libs/phoenix/doc/html/phoenix/examples.html libs/phoenix/doc/html/phoenix/examples/adding_an_expression.html libs/phoenix/doc/html/phoenix/examples/extending_actors.html libs/phoenix/doc/html/phoenix/examples/transforming_the_expression_tree.html libs/phoenix/doc/html/phoenix/inside.html libs/phoenix/doc/html/phoenix/inside/actions.html libs/phoenix/doc/html/phoenix/inside/actor.html libs/phoenix/doc/html/phoenix/inside/custom_terminals.html libs/phoenix/doc/html/phoenix/inside/expression.html libs/phoenix/doc/html/phoenix/inside/expression/boilerplate_macros.html libs/phoenix/doc/html/phoenix/inside/placeholder_unification.html libs/phoenix/doc/html/phoenix/inside/rules.html libs/phoenix/doc/html/phoenix/introduction.html libs/phoenix/doc/html/phoenix/modules.html libs/phoenix/doc/html/phoenix/modules/bind.html libs/phoenix/doc/html/phoenix/modules/bind/binding_function_objects.html libs/phoenix/doc/html/phoenix/modules/bind/binding_functions.html libs/phoenix/doc/html/phoenix/modules/bind/binding_member_functions.html libs/phoenix/doc/html/phoenix/modules/bind/binding_member_variables.html libs/phoenix/doc/html/phoenix/modules/bind/compatibility_with_boost_bind.html libs/phoenix/doc/html/phoenix/modules/core.html libs/phoenix/doc/html/phoenix/modules/core/arguments.html libs/phoenix/doc/html/phoenix/modules/core/nothing.html libs/phoenix/doc/html/phoenix/modules/core/references.html libs/phoenix/doc/html/phoenix/modules/core/values.html libs/phoenix/doc/html/phoenix/modules/function.html libs/phoenix/doc/html/phoenix/modules/function/adapting_functions.html libs/phoenix/doc/html/phoenix/modules/object.html libs/phoenix/doc/html/phoenix/modules/object/casts.html libs/phoenix/doc/html/phoenix/modules/object/construction.html libs/phoenix/doc/html/phoenix/modules/object/delete.html libs/phoenix/doc/html/phoenix/modules/object/new.html libs/phoenix/doc/html/phoenix/modules/operator.html libs/phoenix/doc/html/phoenix/modules/scope.html libs/phoenix/doc/html/phoenix/modules/scope/lambda.html libs/phoenix/doc/html/phoenix/modules/scope/let.html libs/phoenix/doc/html/phoenix/modules/scope/local_variables.html libs/phoenix/doc/html/phoenix/modules/statement.html libs/phoenix/doc/html/phoenix/modules/statement/___do_while_____statement.html libs/phoenix/doc/html/phoenix/modules/statement/___if_else_____statement.html libs/phoenix/doc/html/phoenix/modules/statement/block_statement.html libs/phoenix/doc/html/phoenix/modules/statement/for_statement.html libs/phoenix/doc/html/phoenix/modules/statement/if__statement.html libs/phoenix/doc/html/phoenix/modules/statement/switch__statement.html libs/phoenix/doc/html/phoenix/modules/statement/throw_.html libs/phoenix/doc/html/phoenix/modules/statement/try__catch__statement.html libs/phoenix/doc/html/phoenix/modules/statement/while__statement.html libs/phoenix/doc/html/phoenix/modules/stl.html libs/phoenix/doc/html/phoenix/modules/stl/algorithm.html libs/phoenix/doc/html/phoenix/modules/stl/container.html libs/phoenix/doc/html/phoenix/organization.html libs/phoenix/doc/html/phoenix/references.html libs/phoenix/doc/html/phoenix/starter_kit.html libs/phoenix/doc/html/phoenix/starter_kit/arguments.html libs/phoenix/doc/html/phoenix/starter_kit/construct__new__delete__casts.html libs/phoenix/doc/html/phoenix/starter_kit/lazy_functions.html libs/phoenix/doc/html/phoenix/starter_kit/lazy_operators.html libs/phoenix/doc/html/phoenix/starter_kit/lazy_statements.html libs/phoenix/doc/html/phoenix/starter_kit/more.html libs/phoenix/doc/html/phoenix/starter_kit/references.html libs/phoenix/doc/html/phoenix/starter_kit/values.html libs/phoenix/doc/html/phoenix/what_s_new.html libs/phoenix/doc/html/phoenix/what_s_new/phoenix_3_0.html libs/phoenix/doc/html/phoenix/wrap_up.html libs/phoenix/index.html libs/polygon/doc/analysis.htm libs/polygon/doc/gtl_connectivity_extraction.htm libs/polygon/doc/gtl_connectivity_extraction_45.htm libs/polygon/doc/gtl_connectivity_extraction_90.htm libs/polygon/doc/gtl_connectivity_extraction_usage.htm libs/polygon/doc/gtl_coordinate_concept.htm libs/polygon/doc/gtl_custom_point.htm libs/polygon/doc/gtl_custom_polygon.htm libs/polygon/doc/gtl_custom_polygon_set.htm libs/polygon/doc/gtl_design_overview.htm libs/polygon/doc/gtl_interval_concept.htm libs/polygon/doc/gtl_isotropy.htm libs/polygon/doc/gtl_minkowski_tutorial.htm libs/polygon/doc/gtl_point_concept.htm libs/polygon/doc/gtl_point_usage.htm libs/polygon/doc/gtl_polygon_45_concept.htm libs/polygon/doc/gtl_polygon_45_set_concept.htm libs/polygon/doc/gtl_polygon_45_with_holes_concept.htm libs/polygon/doc/gtl_polygon_90_concept.htm libs/polygon/doc/gtl_polygon_90_set_concept.htm libs/polygon/doc/gtl_polygon_90_with_holes_concept.htm libs/polygon/doc/gtl_polygon_concept.htm libs/polygon/doc/gtl_polygon_set_concept.htm libs/polygon/doc/gtl_polygon_set_usage.htm libs/polygon/doc/gtl_polygon_usage.htm libs/polygon/doc/gtl_polygon_with_holes_concept.htm libs/polygon/doc/gtl_property_merge.htm libs/polygon/doc/gtl_property_merge_45.htm libs/polygon/doc/gtl_property_merge_90.htm libs/polygon/doc/gtl_property_merge_usage.htm libs/polygon/doc/gtl_rectangle_concept.htm libs/polygon/doc/gtl_segment_concept.htm libs/polygon/doc/gtl_tutorial.htm libs/polygon/doc/images/boost.png libs/polygon/doc/index.htm libs/polygon/doc/voronoi_advanced_tutorial.htm libs/polygon/doc/voronoi_basic_tutorial.htm libs/polygon/doc/voronoi_benchmark.htm libs/polygon/doc/voronoi_builder.htm libs/polygon/doc/voronoi_diagram.htm libs/polygon/doc/voronoi_main.htm libs/polygon/index.html libs/pool/doc/html/BOOST_POOL_VALIDATE_INTERNALS.html libs/pool/doc/html/boost/default_user_allocator_malloc_free.html libs/pool/doc/html/boost/default_user_allocator_new_delete.html libs/pool/doc/html/boost/fast_pool_allocator.html libs/pool/doc/html/boost/fast_pool_allocator/rebind.html libs/pool/doc/html/boost/fast_pool_allocator_tag.html libs/pool/doc/html/boost/fast_pool_allocator_void__UserAllocat_id491880.html libs/pool/doc/html/boost/fast_pool_allocator_void__UserAllocat_id491880/rebind.html libs/pool/doc/html/boost/object_pool.html libs/pool/doc/html/boost/pool.html libs/pool/doc/html/boost/pool_allocator.html libs/pool/doc/html/boost/pool_allocator/rebind.html libs/pool/doc/html/boost/pool_allocator_tag.html libs/pool/doc/html/boost/pool_allocator_void__UserAllocator__M_id491365.html libs/pool/doc/html/boost/pool_allocator_void__UserAllocator__M_id491365/rebind.html libs/pool/doc/html/boost/simple_segregated_storage.html libs/pool/doc/html/boost/singleton_pool.html libs/pool/doc/html/boost/singleton_pool/object_creator.html libs/pool/doc/html/boost_pool/appendices.html libs/pool/doc/html/boost_pool/appendices/acknowledgements.html libs/pool/doc/html/boost_pool/appendices/faq.html libs/pool/doc/html/boost_pool/appendices/history.html libs/pool/doc/html/boost_pool/appendices/implementations.html libs/pool/doc/html/boost_pool/appendices/references.html libs/pool/doc/html/boost_pool/appendices/tests.html libs/pool/doc/html/boost_pool/appendices/tickets.html libs/pool/doc/html/boost_pool/appendices/todo.html libs/pool/doc/html/boost_pool/indexes.html libs/pool/doc/html/boost_pool/indexes/s01.html libs/pool/doc/html/boost_pool/indexes/s02.html libs/pool/doc/html/boost_pool/indexes/s03.html libs/pool/doc/html/boost_pool/indexes/s04.html libs/pool/doc/html/boost_pool/pool.html libs/pool/doc/html/boost_pool/pool/conventions.html libs/pool/doc/html/boost_pool/pool/installation.html libs/pool/doc/html/boost_pool/pool/interfaces.html libs/pool/doc/html/boost_pool/pool/introduction.html libs/pool/doc/html/boost_pool/pool/pooling.html libs/pool/doc/html/boost_pool/pool/testing.html libs/pool/doc/html/boost_pool/pool/usage.html libs/pool/doc/html/boost_pool_c___reference.html libs/pool/doc/html/header/boost/pool/object_pool_hpp.html libs/pool/doc/html/header/boost/pool/pool_alloc_hpp.html libs/pool/doc/html/header/boost/pool/pool_hpp.html libs/pool/doc/html/header/boost/pool/poolfwd_hpp.html libs/pool/doc/html/header/boost/pool/simple_segregated_storage_hpp.html libs/pool/doc/html/header/boost/pool/singleton_pool_hpp.html libs/pool/doc/html/index.html libs/preprocessor/doc/acknowledgements.html libs/preprocessor/doc/bibliography.html libs/preprocessor/doc/contents.html libs/preprocessor/doc/data.html libs/preprocessor/doc/data/arrays.html libs/preprocessor/doc/data/lists.html libs/preprocessor/doc/data/sequences.html libs/preprocessor/doc/data/tuples.html libs/preprocessor/doc/examples.html libs/preprocessor/doc/headers.html libs/preprocessor/doc/headers/arithmetic.html libs/preprocessor/doc/headers/arithmetic/add.html libs/preprocessor/doc/headers/arithmetic/dec.html libs/preprocessor/doc/headers/arithmetic/div.html libs/preprocessor/doc/headers/arithmetic/inc.html libs/preprocessor/doc/headers/arithmetic/mod.html libs/preprocessor/doc/headers/arithmetic/mul.html libs/preprocessor/doc/headers/arithmetic/sub.html libs/preprocessor/doc/headers/array.html libs/preprocessor/doc/headers/array/data.html libs/preprocessor/doc/headers/array/elem.html libs/preprocessor/doc/headers/array/enum.html libs/preprocessor/doc/headers/array/insert.html libs/preprocessor/doc/headers/array/pop_back.html libs/preprocessor/doc/headers/array/pop_front.html libs/preprocessor/doc/headers/array/push_back.html libs/preprocessor/doc/headers/array/push_front.html libs/preprocessor/doc/headers/array/remove.html libs/preprocessor/doc/headers/array/replace.html libs/preprocessor/doc/headers/array/reverse.html libs/preprocessor/doc/headers/array/size.html libs/preprocessor/doc/headers/array/to_list.html libs/preprocessor/doc/headers/array/to_seq.html libs/preprocessor/doc/headers/array/to_tuple.html libs/preprocessor/doc/headers/assert_msg.html libs/preprocessor/doc/headers/cat.html libs/preprocessor/doc/headers/comma.html libs/preprocessor/doc/headers/comma_if.html libs/preprocessor/doc/headers/comparison.html libs/preprocessor/doc/headers/comparison/equal.html libs/preprocessor/doc/headers/comparison/greater.html libs/preprocessor/doc/headers/comparison/greater_equal.html libs/preprocessor/doc/headers/comparison/less.html libs/preprocessor/doc/headers/comparison/less_equal.html libs/preprocessor/doc/headers/comparison/not_equal.html libs/preprocessor/doc/headers/config/limits.html libs/preprocessor/doc/headers/config/variadics.html libs/preprocessor/doc/headers/control.html libs/preprocessor/doc/headers/control/deduce_d.html libs/preprocessor/doc/headers/control/expr_if.html libs/preprocessor/doc/headers/control/expr_iif.html libs/preprocessor/doc/headers/control/if.html libs/preprocessor/doc/headers/control/iif.html libs/preprocessor/doc/headers/control/while.html libs/preprocessor/doc/headers/debug.html libs/preprocessor/doc/headers/debug/assert.html libs/preprocessor/doc/headers/debug/line.html libs/preprocessor/doc/headers/dec.html libs/preprocessor/doc/headers/empty.html libs/preprocessor/doc/headers/enum.html libs/preprocessor/doc/headers/enum_params.html libs/preprocessor/doc/headers/enum_shifted.html libs/preprocessor/doc/headers/enum_shifted_params.html libs/preprocessor/doc/headers/epwad.html libs/preprocessor/doc/headers/epwd.html libs/preprocessor/doc/headers/expand.html libs/preprocessor/doc/headers/expr_if.html libs/preprocessor/doc/headers/facilities.html libs/preprocessor/doc/headers/facilities/apply.html libs/preprocessor/doc/headers/facilities/empty.html libs/preprocessor/doc/headers/facilities/expand.html libs/preprocessor/doc/headers/facilities/identity.html libs/preprocessor/doc/headers/facilities/intercept.html libs/preprocessor/doc/headers/facilities/overload.html libs/preprocessor/doc/headers/for.html libs/preprocessor/doc/headers/identity.html libs/preprocessor/doc/headers/if.html libs/preprocessor/doc/headers/inc.html libs/preprocessor/doc/headers/iterate.html libs/preprocessor/doc/headers/iteration.html libs/preprocessor/doc/headers/iteration/iterate.html libs/preprocessor/doc/headers/iteration/local.html libs/preprocessor/doc/headers/iteration/self.html libs/preprocessor/doc/headers/library.html libs/preprocessor/doc/headers/limits.html libs/preprocessor/doc/headers/list.html libs/preprocessor/doc/headers/list/adt.html libs/preprocessor/doc/headers/list/append.html libs/preprocessor/doc/headers/list/at.html libs/preprocessor/doc/headers/list/cat.html libs/preprocessor/doc/headers/list/enum.html libs/preprocessor/doc/headers/list/filter.html libs/preprocessor/doc/headers/list/first_n.html libs/preprocessor/doc/headers/list/fold_left.html libs/preprocessor/doc/headers/list/fold_right.html libs/preprocessor/doc/headers/list/for_each.html libs/preprocessor/doc/headers/list/for_each_i.html libs/preprocessor/doc/headers/list/for_each_product.html libs/preprocessor/doc/headers/list/rest_n.html libs/preprocessor/doc/headers/list/reverse.html libs/preprocessor/doc/headers/list/size.html libs/preprocessor/doc/headers/list/to_array.html libs/preprocessor/doc/headers/list/to_seq.html libs/preprocessor/doc/headers/list/to_tuple.html libs/preprocessor/doc/headers/list/transform.html libs/preprocessor/doc/headers/logical.html libs/preprocessor/doc/headers/logical/and.html libs/preprocessor/doc/headers/logical/bitand.html libs/preprocessor/doc/headers/logical/bitnor.html libs/preprocessor/doc/headers/logical/bitor.html libs/preprocessor/doc/headers/logical/bitxor.html libs/preprocessor/doc/headers/logical/bool.html libs/preprocessor/doc/headers/logical/compl.html libs/preprocessor/doc/headers/logical/nor.html libs/preprocessor/doc/headers/logical/not.html libs/preprocessor/doc/headers/logical/or.html libs/preprocessor/doc/headers/logical/xor.html libs/preprocessor/doc/headers/max.html libs/preprocessor/doc/headers/min.html libs/preprocessor/doc/headers/preprocessor.html libs/preprocessor/doc/headers/punctuation.html libs/preprocessor/doc/headers/punctuation/comma.html libs/preprocessor/doc/headers/punctuation/comma_if.html libs/preprocessor/doc/headers/punctuation/paren.html libs/preprocessor/doc/headers/punctuation/paren_if.html libs/preprocessor/doc/headers/repeat.html libs/preprocessor/doc/headers/repeat_2nd.html libs/preprocessor/doc/headers/repeat_3rd.html libs/preprocessor/doc/headers/repeat_from_to.html libs/preprocessor/doc/headers/repeat_from_to_2nd.html libs/preprocessor/doc/headers/repeat_from_to_3rd.html libs/preprocessor/doc/headers/repetition.html libs/preprocessor/doc/headers/repetition/deduce_r.html libs/preprocessor/doc/headers/repetition/deduce_z.html libs/preprocessor/doc/headers/repetition/enum.html libs/preprocessor/doc/headers/repetition/enum_binary_params.html libs/preprocessor/doc/headers/repetition/enum_params.html libs/preprocessor/doc/headers/repetition/enum_shifted.html libs/preprocessor/doc/headers/repetition/enum_shifted_params.html libs/preprocessor/doc/headers/repetition/enum_trailing.html libs/preprocessor/doc/headers/repetition/enum_trailing_params.html libs/preprocessor/doc/headers/repetition/epwad.html libs/preprocessor/doc/headers/repetition/epwd.html libs/preprocessor/doc/headers/repetition/esbp.html libs/preprocessor/doc/headers/repetition/etbp.html libs/preprocessor/doc/headers/repetition/for.html libs/preprocessor/doc/headers/repetition/repeat.html libs/preprocessor/doc/headers/repetition/repeat_from_to.html libs/preprocessor/doc/headers/selection.html libs/preprocessor/doc/headers/selection/max.html libs/preprocessor/doc/headers/selection/min.html libs/preprocessor/doc/headers/seq.html libs/preprocessor/doc/headers/seq/cat.html libs/preprocessor/doc/headers/seq/elem.html libs/preprocessor/doc/headers/seq/enum.html libs/preprocessor/doc/headers/seq/filter.html libs/preprocessor/doc/headers/seq/first_n.html libs/preprocessor/doc/headers/seq/fold_left.html libs/preprocessor/doc/headers/seq/fold_right.html libs/preprocessor/doc/headers/seq/for_each.html libs/preprocessor/doc/headers/seq/for_each_i.html libs/preprocessor/doc/headers/seq/for_each_product.html libs/preprocessor/doc/headers/seq/insert.html libs/preprocessor/doc/headers/seq/pop_back.html libs/preprocessor/doc/headers/seq/pop_front.html libs/preprocessor/doc/headers/seq/push_back.html libs/preprocessor/doc/headers/seq/push_front.html libs/preprocessor/doc/headers/seq/remove.html libs/preprocessor/doc/headers/seq/replace.html libs/preprocessor/doc/headers/seq/rest_n.html libs/preprocessor/doc/headers/seq/reverse.html libs/preprocessor/doc/headers/seq/seq.html libs/preprocessor/doc/headers/seq/size.html libs/preprocessor/doc/headers/seq/subseq.html libs/preprocessor/doc/headers/seq/to_array.html libs/preprocessor/doc/headers/seq/to_list.html libs/preprocessor/doc/headers/seq/to_tuple.html libs/preprocessor/doc/headers/seq/transform.html libs/preprocessor/doc/headers/slot.html libs/preprocessor/doc/headers/slot/counter.html libs/preprocessor/doc/headers/slot/slot.html libs/preprocessor/doc/headers/stringize.html libs/preprocessor/doc/headers/tuple.html libs/preprocessor/doc/headers/tuple/eat.html libs/preprocessor/doc/headers/tuple/elem.html libs/preprocessor/doc/headers/tuple/enum.html libs/preprocessor/doc/headers/tuple/rem.html libs/preprocessor/doc/headers/tuple/reverse.html libs/preprocessor/doc/headers/tuple/size.html libs/preprocessor/doc/headers/tuple/to_array.html libs/preprocessor/doc/headers/tuple/to_list.html libs/preprocessor/doc/headers/tuple/to_seq.html libs/preprocessor/doc/headers/variadic.html libs/preprocessor/doc/headers/variadic/elem.html libs/preprocessor/doc/headers/variadic/size.html libs/preprocessor/doc/headers/variadic/to_array.html libs/preprocessor/doc/headers/variadic/to_list.html libs/preprocessor/doc/headers/variadic/to_seq.html libs/preprocessor/doc/headers/variadic/to_tuple.html libs/preprocessor/doc/headers/while.html libs/preprocessor/doc/headers/wstringize.html libs/preprocessor/doc/index.html libs/preprocessor/doc/miscellanea.html libs/preprocessor/doc/ref.html libs/preprocessor/doc/ref/add.html libs/preprocessor/doc/ref/add_d.html libs/preprocessor/doc/ref/and.html libs/preprocessor/doc/ref/apply.html libs/preprocessor/doc/ref/array_data.html libs/preprocessor/doc/ref/array_elem.html libs/preprocessor/doc/ref/array_enum.html libs/preprocessor/doc/ref/array_insert.html libs/preprocessor/doc/ref/array_insert_d.html libs/preprocessor/doc/ref/array_pop_back.html libs/preprocessor/doc/ref/array_pop_back_z.html libs/preprocessor/doc/ref/array_pop_front.html libs/preprocessor/doc/ref/array_pop_front_z.html libs/preprocessor/doc/ref/array_push_back.html libs/preprocessor/doc/ref/array_push_front.html libs/preprocessor/doc/ref/array_remove.html libs/preprocessor/doc/ref/array_remove_d.html libs/preprocessor/doc/ref/array_replace.html libs/preprocessor/doc/ref/array_replace_d.html libs/preprocessor/doc/ref/array_reverse.html libs/preprocessor/doc/ref/array_size.html libs/preprocessor/doc/ref/array_to_list.html libs/preprocessor/doc/ref/array_to_seq.html libs/preprocessor/doc/ref/array_to_tuple.html libs/preprocessor/doc/ref/assert.html libs/preprocessor/doc/ref/assert_msg.html libs/preprocessor/doc/ref/assign_slot.html libs/preprocessor/doc/ref/bitand.html libs/preprocessor/doc/ref/bitnor.html libs/preprocessor/doc/ref/bitor.html libs/preprocessor/doc/ref/bitxor.html libs/preprocessor/doc/ref/bool.html libs/preprocessor/doc/ref/cat.html libs/preprocessor/doc/ref/comma.html libs/preprocessor/doc/ref/comma_if.html libs/preprocessor/doc/ref/compl.html libs/preprocessor/doc/ref/config_extended_line_info.html libs/preprocessor/doc/ref/counter.html libs/preprocessor/doc/ref/dec.html libs/preprocessor/doc/ref/deduce_d.html libs/preprocessor/doc/ref/deduce_r.html libs/preprocessor/doc/ref/deduce_z.html libs/preprocessor/doc/ref/div.html libs/preprocessor/doc/ref/div_d.html libs/preprocessor/doc/ref/empty.html libs/preprocessor/doc/ref/enum.html libs/preprocessor/doc/ref/enum_binary_params.html libs/preprocessor/doc/ref/enum_binary_params_z.html libs/preprocessor/doc/ref/enum_params.html libs/preprocessor/doc/ref/enum_params_with_a_default.html libs/preprocessor/doc/ref/enum_params_with_defaults.html libs/preprocessor/doc/ref/enum_params_z.html libs/preprocessor/doc/ref/enum_shifted.html libs/preprocessor/doc/ref/enum_shifted_params.html libs/preprocessor/doc/ref/enum_shifted_params_z.html libs/preprocessor/doc/ref/enum_shifted_z.html libs/preprocessor/doc/ref/enum_trailing.html libs/preprocessor/doc/ref/enum_trailing_params.html libs/preprocessor/doc/ref/enum_trailing_params_z.html libs/preprocessor/doc/ref/enum_trailing_z.html libs/preprocessor/doc/ref/enum_z.html libs/preprocessor/doc/ref/equal.html libs/preprocessor/doc/ref/equal_d.html libs/preprocessor/doc/ref/esbp.html libs/preprocessor/doc/ref/esbpz.html libs/preprocessor/doc/ref/etbp.html libs/preprocessor/doc/ref/etbpz.html libs/preprocessor/doc/ref/expand.html libs/preprocessor/doc/ref/expr_if.html libs/preprocessor/doc/ref/expr_iif.html libs/preprocessor/doc/ref/filename_x.html libs/preprocessor/doc/ref/for.html libs/preprocessor/doc/ref/for_r.html libs/preprocessor/doc/ref/frame_finish.html libs/preprocessor/doc/ref/frame_flags.html libs/preprocessor/doc/ref/frame_iteration.html libs/preprocessor/doc/ref/frame_start.html libs/preprocessor/doc/ref/greater.html libs/preprocessor/doc/ref/greater_d.html libs/preprocessor/doc/ref/greater_equal.html libs/preprocessor/doc/ref/greater_equal_d.html libs/preprocessor/doc/ref/identity.html libs/preprocessor/doc/ref/if.html libs/preprocessor/doc/ref/iif.html libs/preprocessor/doc/ref/inc.html libs/preprocessor/doc/ref/include_self.html libs/preprocessor/doc/ref/indirect_self.html libs/preprocessor/doc/ref/intercept.html libs/preprocessor/doc/ref/is_iterating.html libs/preprocessor/doc/ref/is_selfish.html libs/preprocessor/doc/ref/iterate.html libs/preprocessor/doc/ref/iteration.html libs/preprocessor/doc/ref/iteration_depth.html libs/preprocessor/doc/ref/iteration_finish.html libs/preprocessor/doc/ref/iteration_flags.html libs/preprocessor/doc/ref/iteration_limits.html libs/preprocessor/doc/ref/iteration_params_x.html libs/preprocessor/doc/ref/iteration_start.html libs/preprocessor/doc/ref/less.html libs/preprocessor/doc/ref/less_d.html libs/preprocessor/doc/ref/less_equal.html libs/preprocessor/doc/ref/less_equal_d.html libs/preprocessor/doc/ref/limit_dim.html libs/preprocessor/doc/ref/limit_for.html libs/preprocessor/doc/ref/limit_iteration.html libs/preprocessor/doc/ref/limit_iteration_dim.html libs/preprocessor/doc/ref/limit_mag.html libs/preprocessor/doc/ref/limit_repeat.html libs/preprocessor/doc/ref/limit_seq.html libs/preprocessor/doc/ref/limit_slot_count.html libs/preprocessor/doc/ref/limit_slot_sig.html libs/preprocessor/doc/ref/limit_tuple.html libs/preprocessor/doc/ref/limit_variadic.html libs/preprocessor/doc/ref/limit_while.html libs/preprocessor/doc/ref/line.html libs/preprocessor/doc/ref/list_append.html libs/preprocessor/doc/ref/list_append_d.html libs/preprocessor/doc/ref/list_at.html libs/preprocessor/doc/ref/list_at_d.html libs/preprocessor/doc/ref/list_cat.html libs/preprocessor/doc/ref/list_cat_d.html libs/preprocessor/doc/ref/list_cons.html libs/preprocessor/doc/ref/list_enum.html libs/preprocessor/doc/ref/list_enum_r.html libs/preprocessor/doc/ref/list_filter.html libs/preprocessor/doc/ref/list_filter_d.html libs/preprocessor/doc/ref/list_first.html libs/preprocessor/doc/ref/list_first_n.html libs/preprocessor/doc/ref/list_first_n_d.html libs/preprocessor/doc/ref/list_fold_left.html libs/preprocessor/doc/ref/list_fold_left_2nd.html libs/preprocessor/doc/ref/list_fold_left_2nd_d.html libs/preprocessor/doc/ref/list_fold_left_d.html libs/preprocessor/doc/ref/list_fold_left_d_old.html libs/preprocessor/doc/ref/list_fold_right.html libs/preprocessor/doc/ref/list_fold_right_2nd.html libs/preprocessor/doc/ref/list_fold_right_2nd_d.html libs/preprocessor/doc/ref/list_fold_right_d.html libs/preprocessor/doc/ref/list_fold_right_d_old.html libs/preprocessor/doc/ref/list_for_each.html libs/preprocessor/doc/ref/list_for_each_i.html libs/preprocessor/doc/ref/list_for_each_i_r.html libs/preprocessor/doc/ref/list_for_each_product.html libs/preprocessor/doc/ref/list_for_each_product_r.html libs/preprocessor/doc/ref/list_for_each_r.html libs/preprocessor/doc/ref/list_is_cons.html libs/preprocessor/doc/ref/list_is_nil.html libs/preprocessor/doc/ref/list_nil.html libs/preprocessor/doc/ref/list_rest.html libs/preprocessor/doc/ref/list_rest_n.html libs/preprocessor/doc/ref/list_rest_n_d.html libs/preprocessor/doc/ref/list_reverse.html libs/preprocessor/doc/ref/list_reverse_d.html libs/preprocessor/doc/ref/list_size.html libs/preprocessor/doc/ref/list_size_d.html libs/preprocessor/doc/ref/list_to_array.html libs/preprocessor/doc/ref/list_to_array_d.html libs/preprocessor/doc/ref/list_to_seq.html libs/preprocessor/doc/ref/list_to_seq_r.html libs/preprocessor/doc/ref/list_to_tuple.html libs/preprocessor/doc/ref/list_to_tuple_r.html libs/preprocessor/doc/ref/list_transform.html libs/preprocessor/doc/ref/list_transform_d.html libs/preprocessor/doc/ref/local_iterate.html libs/preprocessor/doc/ref/local_limits.html libs/preprocessor/doc/ref/local_macro.html libs/preprocessor/doc/ref/lparen.html libs/preprocessor/doc/ref/lparen_if.html libs/preprocessor/doc/ref/max.html libs/preprocessor/doc/ref/max_d.html libs/preprocessor/doc/ref/min.html libs/preprocessor/doc/ref/min_d.html libs/preprocessor/doc/ref/mod.html libs/preprocessor/doc/ref/mod_d.html libs/preprocessor/doc/ref/mul.html libs/preprocessor/doc/ref/mul_d.html libs/preprocessor/doc/ref/nil.html libs/preprocessor/doc/ref/nor.html libs/preprocessor/doc/ref/not.html libs/preprocessor/doc/ref/not_equal.html libs/preprocessor/doc/ref/not_equal_d.html libs/preprocessor/doc/ref/or.html libs/preprocessor/doc/ref/overload.html libs/preprocessor/doc/ref/relative_finish.html libs/preprocessor/doc/ref/relative_flags.html libs/preprocessor/doc/ref/relative_iteration.html libs/preprocessor/doc/ref/relative_start.html libs/preprocessor/doc/ref/repeat.html libs/preprocessor/doc/ref/repeat_1st.html libs/preprocessor/doc/ref/repeat_2nd.html libs/preprocessor/doc/ref/repeat_3rd.html libs/preprocessor/doc/ref/repeat_from_to.html libs/preprocessor/doc/ref/repeat_from_to_1st.html libs/preprocessor/doc/ref/repeat_from_to_2nd.html libs/preprocessor/doc/ref/repeat_from_to_3rd.html libs/preprocessor/doc/ref/repeat_from_to_d.html libs/preprocessor/doc/ref/repeat_from_to_d_z.html libs/preprocessor/doc/ref/repeat_from_to_z.html libs/preprocessor/doc/ref/repeat_z.html libs/preprocessor/doc/ref/rparen.html libs/preprocessor/doc/ref/rparen_if.html libs/preprocessor/doc/ref/seq_cat.html libs/preprocessor/doc/ref/seq_cat_s.html libs/preprocessor/doc/ref/seq_elem.html libs/preprocessor/doc/ref/seq_enum.html libs/preprocessor/doc/ref/seq_filter.html libs/preprocessor/doc/ref/seq_filter_s.html libs/preprocessor/doc/ref/seq_first_n.html libs/preprocessor/doc/ref/seq_fold_left.html libs/preprocessor/doc/ref/seq_fold_left_s.html libs/preprocessor/doc/ref/seq_fold_right.html libs/preprocessor/doc/ref/seq_fold_right_s.html libs/preprocessor/doc/ref/seq_for_each.html libs/preprocessor/doc/ref/seq_for_each_i.html libs/preprocessor/doc/ref/seq_for_each_i_r.html libs/preprocessor/doc/ref/seq_for_each_product.html libs/preprocessor/doc/ref/seq_for_each_product_r.html libs/preprocessor/doc/ref/seq_for_each_r.html libs/preprocessor/doc/ref/seq_head.html libs/preprocessor/doc/ref/seq_insert.html libs/preprocessor/doc/ref/seq_nil.html libs/preprocessor/doc/ref/seq_pop_back.html libs/preprocessor/doc/ref/seq_pop_front.html libs/preprocessor/doc/ref/seq_push_back.html libs/preprocessor/doc/ref/seq_push_front.html libs/preprocessor/doc/ref/seq_remove.html libs/preprocessor/doc/ref/seq_replace.html libs/preprocessor/doc/ref/seq_rest_n.html libs/preprocessor/doc/ref/seq_reverse.html libs/preprocessor/doc/ref/seq_reverse_s.html libs/preprocessor/doc/ref/seq_size.html libs/preprocessor/doc/ref/seq_subseq.html libs/preprocessor/doc/ref/seq_tail.html libs/preprocessor/doc/ref/seq_to_array.html libs/preprocessor/doc/ref/seq_to_list.html libs/preprocessor/doc/ref/seq_to_tuple.html libs/preprocessor/doc/ref/seq_transform.html libs/preprocessor/doc/ref/seq_transform_s.html libs/preprocessor/doc/ref/slot.html libs/preprocessor/doc/ref/stringize.html libs/preprocessor/doc/ref/sub.html libs/preprocessor/doc/ref/sub_d.html libs/preprocessor/doc/ref/tuple_eat.html libs/preprocessor/doc/ref/tuple_elem.html libs/preprocessor/doc/ref/tuple_enum.html libs/preprocessor/doc/ref/tuple_rem.html libs/preprocessor/doc/ref/tuple_rem_ctor.html libs/preprocessor/doc/ref/tuple_reverse.html libs/preprocessor/doc/ref/tuple_size.html libs/preprocessor/doc/ref/tuple_to_array.html libs/preprocessor/doc/ref/tuple_to_list.html libs/preprocessor/doc/ref/tuple_to_seq.html libs/preprocessor/doc/ref/update_counter.html libs/preprocessor/doc/ref/value.html libs/preprocessor/doc/ref/variadic_elem.html libs/preprocessor/doc/ref/variadic_size.html libs/preprocessor/doc/ref/variadic_to_array.html libs/preprocessor/doc/ref/variadic_to_list.html libs/preprocessor/doc/ref/variadic_to_seq.html libs/preprocessor/doc/ref/variadic_to_tuple.html libs/preprocessor/doc/ref/variadics.html libs/preprocessor/doc/ref/while.html libs/preprocessor/doc/ref/while_d.html libs/preprocessor/doc/ref/wstringize.html libs/preprocessor/doc/ref/xor.html libs/preprocessor/doc/syntax.html libs/preprocessor/doc/terms.html libs/preprocessor/doc/terms/evaluated.html libs/preprocessor/doc/terms/named_external.html libs/preprocessor/doc/title.html libs/preprocessor/doc/top.html libs/preprocessor/doc/topics.html libs/preprocessor/doc/topics/evaluated_slots.html libs/preprocessor/doc/topics/file_iteration.html libs/preprocessor/doc/topics/incompatible.html libs/preprocessor/doc/topics/local_iteration.html libs/preprocessor/doc/topics/motivation.html libs/preprocessor/doc/topics/problems.html libs/preprocessor/doc/topics/reentrancy.html libs/preprocessor/doc/topics/techniques.html libs/preprocessor/doc/topics/variadic_macros.html libs/preprocessor/index.html libs/program_options/index.html libs/property_map/doc/LvaluePropertyMap.html libs/property_map/doc/ReadWritePropertyMap.html libs/property_map/doc/ReadablePropertyMap.html libs/property_map/doc/WritablePropertyMap.html libs/property_map/doc/associative_property_map.html libs/property_map/doc/compose_property_map.html libs/property_map/doc/const_assoc_property_map.html libs/property_map/doc/dynamic_property_map.html libs/property_map/doc/function_property_map.html libs/property_map/doc/identity_property_map.html libs/property_map/doc/iterator_property_map.html libs/property_map/doc/property_map.html libs/property_map/doc/ref_property_map.html libs/property_map/doc/shared_array_property_map.html libs/property_map/doc/transform_value_property_map.html libs/property_map/doc/vector_property_map.html libs/property_tree/index.html libs/proto/index.html libs/ptr_container/doc/associative_ptr_container.html libs/ptr_container/doc/boost.png libs/ptr_container/doc/conventions.html libs/ptr_container/doc/examples.html libs/ptr_container/doc/faq.html libs/ptr_container/doc/guidelines.html libs/ptr_container/doc/headers.html libs/ptr_container/doc/indirect_fun.html libs/ptr_container/doc/ptr_array.html libs/ptr_container/doc/ptr_container.html libs/ptr_container/doc/ptr_deque.html libs/ptr_container/doc/ptr_inserter.html libs/ptr_container/doc/ptr_list.html libs/ptr_container/doc/ptr_map.html libs/ptr_container/doc/ptr_map_adapter.html libs/ptr_container/doc/ptr_multimap.html libs/ptr_container/doc/ptr_multimap_adapter.html libs/ptr_container/doc/ptr_multiset.html libs/ptr_container/doc/ptr_multiset_adapter.html libs/ptr_container/doc/ptr_sequence_adapter.html libs/ptr_container/doc/ptr_set.html libs/ptr_container/doc/ptr_set_adapter.html libs/ptr_container/doc/ptr_vector.html libs/ptr_container/doc/reference.html libs/ptr_container/doc/reversible_ptr_container.html libs/ptr_container/doc/tutorial.html libs/ptr_container/index.html libs/python/doc/PyConDC_2003/bpl.html libs/python/doc/boost.css libs/python/doc/building.html libs/python/doc/index.html libs/python/doc/internals.html libs/python/doc/news.html libs/python/doc/projects.html libs/python/doc/support.html libs/python/doc/tutorial/doc/html/index.html libs/python/doc/tutorial/doc/html/python/embedding.html libs/python/doc/tutorial/doc/html/python/exception.html libs/python/doc/tutorial/doc/html/python/exposing.html libs/python/doc/tutorial/doc/html/python/functions.html libs/python/doc/tutorial/doc/html/python/hello.html libs/python/doc/tutorial/doc/html/python/iterators.html libs/python/doc/tutorial/doc/html/python/object.html libs/python/doc/tutorial/doc/html/python/techniques.html libs/python/doc/tutorial/index.html libs/python/doc/v2/Apr2002.html libs/python/doc/v2/CallPolicies.html libs/python/doc/v2/Dereferenceable.html libs/python/doc/v2/Extractor.html libs/python/doc/v2/HolderGenerator.html libs/python/doc/v2/Jun2002.html libs/python/doc/v2/Mar2002.html libs/python/doc/v2/May2002.html libs/python/doc/v2/ObjectWrapper.html libs/python/doc/v2/ResultConverter.html libs/python/doc/v2/acknowledgments.html libs/python/doc/v2/args.html libs/python/doc/v2/call.html libs/python/doc/v2/call_method.html libs/python/doc/v2/callbacks.html libs/python/doc/v2/class.html libs/python/doc/v2/configuration.html libs/python/doc/v2/copy_const_reference.html libs/python/doc/v2/copy_non_const_reference.html libs/python/doc/v2/data_members.html libs/python/doc/v2/def.html libs/python/doc/v2/def_visitor.html libs/python/doc/v2/default_call_policies.html libs/python/doc/v2/definitions.html libs/python/doc/v2/dict.html libs/python/doc/v2/docstring_options.html libs/python/doc/v2/enum.html libs/python/doc/v2/errors.html libs/python/doc/v2/exception_translator.html libs/python/doc/v2/exec.html libs/python/doc/v2/extract.html libs/python/doc/v2/faq.html libs/python/doc/v2/feb2002.html libs/python/doc/v2/function_doc_signature.html libs/python/doc/v2/handle.html libs/python/doc/v2/has_back_reference.html libs/python/doc/v2/implicit.html libs/python/doc/v2/import.html libs/python/doc/v2/indexing.html libs/python/doc/v2/init.html libs/python/doc/v2/instance_holder.html libs/python/doc/v2/iterator.html libs/python/doc/v2/list.html libs/python/doc/v2/long.html libs/python/doc/v2/lvalue_from_pytype.html libs/python/doc/v2/make_function.html libs/python/doc/v2/manage_new_object.html libs/python/doc/v2/module.html libs/python/doc/v2/numeric.html libs/python/doc/v2/object.html libs/python/doc/v2/opaque.html libs/python/doc/v2/operators.html libs/python/doc/v2/overloads.html libs/python/doc/v2/pickle.html libs/python/doc/v2/platforms.html libs/python/doc/v2/pointee.html libs/python/doc/v2/progress_reports.html libs/python/doc/v2/ptr.html libs/python/doc/v2/python.html libs/python/doc/v2/pytype_function.html libs/python/doc/v2/raw_function.html libs/python/doc/v2/reference.html libs/python/doc/v2/reference_existing_object.html libs/python/doc/v2/register_ptr_to_python.html libs/python/doc/v2/return_arg.html libs/python/doc/v2/return_by_value.html libs/python/doc/v2/return_internal_reference.html libs/python/doc/v2/return_opaque_pointer.html libs/python/doc/v2/return_value_policy.html libs/python/doc/v2/scope.html libs/python/doc/v2/slice.html libs/python/doc/v2/ssize_t.html libs/python/doc/v2/stl_iterator.html libs/python/doc/v2/str.html libs/python/doc/v2/to_python_converter.html libs/python/doc/v2/to_python_indirect.html libs/python/doc/v2/to_python_value.html libs/python/doc/v2/tuple.html libs/python/doc/v2/type_id.html libs/python/doc/v2/with_custodian_and_ward.html libs/python/doc/v2/wrapper.html libs/python/example/quickstart/Jamroot libs/python/example/quickstart/boost-build.jam libs/python/index.html libs/python/pyste/doc/adding_new_methods.html libs/python/pyste/doc/exporting_an_entire_header.html libs/python/pyste/doc/global_variables.html libs/python/pyste/doc/inserting_code.html libs/python/pyste/doc/introduction.html libs/python/pyste/doc/policies.html libs/python/pyste/doc/renaming_and_excluding.html libs/python/pyste/doc/running_pyste.html libs/python/pyste/doc/smart_pointers.html libs/python/pyste/doc/templates.html libs/python/pyste/doc/the_interface_files.html libs/python/pyste/doc/wrappers.html libs/python/pyste/index.html libs/python/todo.html libs/random/index.html libs/random/random-distributions.html libs/random/random-generators.html libs/random/random-variate.html libs/range/doc/html/index.html libs/range/doc/html/range/concepts.html libs/range/doc/html/range/concepts/bidirectional_range.html libs/range/doc/html/range/concepts/concept_checking.html libs/range/doc/html/range/concepts/forward_range.html libs/range/doc/html/range/concepts/overview.html libs/range/doc/html/range/concepts/random_access_range.html libs/range/doc/html/range/concepts/single_pass_range.html libs/range/doc/html/range/examples.html libs/range/doc/html/range/faq.html libs/range/doc/html/range/headers.html libs/range/doc/html/range/headers/adaptors.html libs/range/doc/html/range/headers/algorithm.html libs/range/doc/html/range/headers/algorithm_ext.html libs/range/doc/html/range/headers/general.html libs/range/doc/html/range/history_ack.html libs/range/doc/html/range/introduction.html libs/range/doc/html/range/mfc_atl.html libs/range/doc/html/range/mfc_atl/atl_ranges.html libs/range/doc/html/range/mfc_atl/const_ranges.html libs/range/doc/html/range/mfc_atl/mfc_ranges.html libs/range/doc/html/range/mfc_atl/references.html libs/range/doc/html/range/mfc_atl/requirements.html libs/range/doc/html/range/portability.html libs/range/doc/html/range/reference.html libs/range/doc/html/range/reference/adaptors.html libs/range/doc/html/range/reference/adaptors/general_requirements.html libs/range/doc/html/range/reference/adaptors/introduction.html libs/range/doc/html/range/reference/adaptors/reference.html libs/range/doc/html/range/reference/adaptors/reference/adjacent_filtered.html libs/range/doc/html/range/reference/adaptors/reference/copied.html libs/range/doc/html/range/reference/adaptors/reference/filtered.html libs/range/doc/html/range/reference/adaptors/reference/indexed.html libs/range/doc/html/range/reference/adaptors/reference/indirected.html libs/range/doc/html/range/reference/adaptors/reference/map_keys.html libs/range/doc/html/range/reference/adaptors/reference/map_values.html libs/range/doc/html/range/reference/adaptors/reference/replaced.html libs/range/doc/html/range/reference/adaptors/reference/replaced_if.html libs/range/doc/html/range/reference/adaptors/reference/reversed.html libs/range/doc/html/range/reference/adaptors/reference/sliced.html libs/range/doc/html/range/reference/adaptors/reference/strided.html libs/range/doc/html/range/reference/adaptors/reference/tokenized.html libs/range/doc/html/range/reference/adaptors/reference/transformed.html libs/range/doc/html/range/reference/adaptors/reference/type_erased.html libs/range/doc/html/range/reference/adaptors/reference/uniqued.html libs/range/doc/html/range/reference/algorithms.html libs/range/doc/html/range/reference/algorithms/heap.html libs/range/doc/html/range/reference/algorithms/heap/make_heap.html libs/range/doc/html/range/reference/algorithms/heap/pop_heap.html libs/range/doc/html/range/reference/algorithms/heap/push_heap.html libs/range/doc/html/range/reference/algorithms/heap/sort_heap.html libs/range/doc/html/range/reference/algorithms/introduction.html libs/range/doc/html/range/reference/algorithms/mutating.html libs/range/doc/html/range/reference/algorithms/mutating/copy.html libs/range/doc/html/range/reference/algorithms/mutating/copy_backward.html libs/range/doc/html/range/reference/algorithms/mutating/fill.html libs/range/doc/html/range/reference/algorithms/mutating/fill_n.html libs/range/doc/html/range/reference/algorithms/mutating/generate.html libs/range/doc/html/range/reference/algorithms/mutating/inplace_merge.html libs/range/doc/html/range/reference/algorithms/mutating/merge.html libs/range/doc/html/range/reference/algorithms/mutating/nth_element.html libs/range/doc/html/range/reference/algorithms/mutating/partial_sort.html libs/range/doc/html/range/reference/algorithms/mutating/partition.html libs/range/doc/html/range/reference/algorithms/mutating/random_shuffle.html libs/range/doc/html/range/reference/algorithms/mutating/remove.html libs/range/doc/html/range/reference/algorithms/mutating/remove_copy.html libs/range/doc/html/range/reference/algorithms/mutating/remove_copy_if.html libs/range/doc/html/range/reference/algorithms/mutating/remove_if.html libs/range/doc/html/range/reference/algorithms/mutating/replace.html libs/range/doc/html/range/reference/algorithms/mutating/replace_copy.html libs/range/doc/html/range/reference/algorithms/mutating/replace_copy_if.html libs/range/doc/html/range/reference/algorithms/mutating/replace_if.html libs/range/doc/html/range/reference/algorithms/mutating/reverse.html libs/range/doc/html/range/reference/algorithms/mutating/reverse_copy.html libs/range/doc/html/range/reference/algorithms/mutating/rotate.html libs/range/doc/html/range/reference/algorithms/mutating/rotate_copy.html libs/range/doc/html/range/reference/algorithms/mutating/sort.html libs/range/doc/html/range/reference/algorithms/mutating/stable_partition.html libs/range/doc/html/range/reference/algorithms/mutating/stable_sort.html libs/range/doc/html/range/reference/algorithms/mutating/swap_ranges.html libs/range/doc/html/range/reference/algorithms/mutating/transform.html libs/range/doc/html/range/reference/algorithms/mutating/unique.html libs/range/doc/html/range/reference/algorithms/mutating/unique_copy.html libs/range/doc/html/range/reference/algorithms/new.html libs/range/doc/html/range/reference/algorithms/new/copy_n.html libs/range/doc/html/range/reference/algorithms/new/erase.html libs/range/doc/html/range/reference/algorithms/new/for_each.html libs/range/doc/html/range/reference/algorithms/new/insert.html libs/range/doc/html/range/reference/algorithms/new/iota.html libs/range/doc/html/range/reference/algorithms/new/is_sorted.html libs/range/doc/html/range/reference/algorithms/new/overwrite.html libs/range/doc/html/range/reference/algorithms/new/push_back.html libs/range/doc/html/range/reference/algorithms/new/push_front.html libs/range/doc/html/range/reference/algorithms/new/remove_erase.html libs/range/doc/html/range/reference/algorithms/new/remove_erase_if.html libs/range/doc/html/range/reference/algorithms/non_mutating.html libs/range/doc/html/range/reference/algorithms/non_mutating/adjacent_find.html libs/range/doc/html/range/reference/algorithms/non_mutating/binary_search.html libs/range/doc/html/range/reference/algorithms/non_mutating/count.html libs/range/doc/html/range/reference/algorithms/non_mutating/count_if.html libs/range/doc/html/range/reference/algorithms/non_mutating/equal.html libs/range/doc/html/range/reference/algorithms/non_mutating/equal_range.html libs/range/doc/html/range/reference/algorithms/non_mutating/find.html libs/range/doc/html/range/reference/algorithms/non_mutating/find_end.html libs/range/doc/html/range/reference/algorithms/non_mutating/find_first_of.html libs/range/doc/html/range/reference/algorithms/non_mutating/find_if.html libs/range/doc/html/range/reference/algorithms/non_mutating/for_each.html libs/range/doc/html/range/reference/algorithms/non_mutating/lexicographical_compare.html libs/range/doc/html/range/reference/algorithms/non_mutating/lower_bound.html libs/range/doc/html/range/reference/algorithms/non_mutating/max_element.html libs/range/doc/html/range/reference/algorithms/non_mutating/min_element.html libs/range/doc/html/range/reference/algorithms/non_mutating/mismatch.html libs/range/doc/html/range/reference/algorithms/non_mutating/search.html libs/range/doc/html/range/reference/algorithms/non_mutating/search_n.html libs/range/doc/html/range/reference/algorithms/non_mutating/upper_bound.html libs/range/doc/html/range/reference/algorithms/numeric.html libs/range/doc/html/range/reference/algorithms/numeric/accumulate.html libs/range/doc/html/range/reference/algorithms/numeric/adjacent_difference.html libs/range/doc/html/range/reference/algorithms/numeric/inner_product.html libs/range/doc/html/range/reference/algorithms/numeric/partial_sum.html libs/range/doc/html/range/reference/algorithms/permutation.html libs/range/doc/html/range/reference/algorithms/permutation/next_permutation.html libs/range/doc/html/range/reference/algorithms/permutation/prev_permutation.html libs/range/doc/html/range/reference/algorithms/set.html libs/range/doc/html/range/reference/algorithms/set/includes.html libs/range/doc/html/range/reference/algorithms/set/set_difference.html libs/range/doc/html/range/reference/algorithms/set/set_intersection.html libs/range/doc/html/range/reference/algorithms/set/set_symmetric_difference.html libs/range/doc/html/range/reference/algorithms/set/set_union.html libs/range/doc/html/range/reference/concept_implementation.html libs/range/doc/html/range/reference/concept_implementation/semantics.html libs/range/doc/html/range/reference/concept_implementation/semantics/functions.html libs/range/doc/html/range/reference/concept_implementation/semantics/metafunctions.html libs/range/doc/html/range/reference/concept_implementation/synopsis.html libs/range/doc/html/range/reference/extending.html libs/range/doc/html/range/reference/extending/method_1.html libs/range/doc/html/range/reference/extending/method_2.html libs/range/doc/html/range/reference/extending/method_3.html libs/range/doc/html/range/reference/extending/method_3/method_3_1.html libs/range/doc/html/range/reference/extending/method_3/method_3_2.html libs/range/doc/html/range/reference/overview.html libs/range/doc/html/range/reference/ranges.html libs/range/doc/html/range/reference/ranges/any_range.html libs/range/doc/html/range/reference/ranges/counting_range.html libs/range/doc/html/range/reference/ranges/irange.html libs/range/doc/html/range/reference/ranges/istream_range.html libs/range/doc/html/range/reference/utilities.html libs/range/doc/html/range/reference/utilities/iterator_range.html libs/range/doc/html/range/reference/utilities/join.html libs/range/doc/html/range/reference/utilities/sub_range.html libs/range/doc/html/range/style_guide.html libs/range/doc/html/range/upgrade.html libs/range/doc/html/range/upgrade/upgrade_from_1_34.html libs/range/doc/html/range/upgrade/upgrade_from_1_42.html libs/range/doc/html/range/upgrade/upgrade_from_1_45.html libs/range/doc/html/range/upgrade/upgrade_from_1_49.html libs/range/index.html libs/ratio/index.html libs/rational/index.html libs/rational/rational.html libs/regex/doc/gcc-performance.html libs/regex/doc/html/boost_regex/background_information.html libs/regex/doc/html/boost_regex/background_information/acknowledgements.html libs/regex/doc/html/boost_regex/background_information/examples.html libs/regex/doc/html/boost_regex/background_information/faq.html libs/regex/doc/html/boost_regex/background_information/futher.html libs/regex/doc/html/boost_regex/background_information/headers.html libs/regex/doc/html/boost_regex/background_information/history.html libs/regex/doc/html/boost_regex/background_information/locale.html libs/regex/doc/html/boost_regex/background_information/performance.html libs/regex/doc/html/boost_regex/background_information/redist.html libs/regex/doc/html/boost_regex/background_information/standards.html libs/regex/doc/html/boost_regex/background_information/thread_safety.html libs/regex/doc/html/boost_regex/captures.html libs/regex/doc/html/boost_regex/configuration.html libs/regex/doc/html/boost_regex/configuration/algorithm.html libs/regex/doc/html/boost_regex/configuration/compiler.html libs/regex/doc/html/boost_regex/configuration/linkage.html libs/regex/doc/html/boost_regex/configuration/locale.html libs/regex/doc/html/boost_regex/configuration/tuning.html libs/regex/doc/html/boost_regex/format.html libs/regex/doc/html/boost_regex/format/boost_format_syntax.html libs/regex/doc/html/boost_regex/format/perl_format.html libs/regex/doc/html/boost_regex/format/sed_format.html libs/regex/doc/html/boost_regex/install.html libs/regex/doc/html/boost_regex/introduction_and_overview.html libs/regex/doc/html/boost_regex/partial_matches.html libs/regex/doc/html/boost_regex/ref.html libs/regex/doc/html/boost_regex/ref/bad_expression.html libs/regex/doc/html/boost_regex/ref/basic_regex.html libs/regex/doc/html/boost_regex/ref/concepts.html libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html libs/regex/doc/html/boost_regex/ref/error_type.html libs/regex/doc/html/boost_regex/ref/internal_details.html libs/regex/doc/html/boost_regex/ref/internal_details/uni_iter.html libs/regex/doc/html/boost_regex/ref/match_flag_type.html libs/regex/doc/html/boost_regex/ref/match_results.html libs/regex/doc/html/boost_regex/ref/non_std_strings.html libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html libs/regex/doc/html/boost_regex/ref/posix.html libs/regex/doc/html/boost_regex/ref/regex_iterator.html libs/regex/doc/html/boost_regex/ref/regex_match.html libs/regex/doc/html/boost_regex/ref/regex_replace.html libs/regex/doc/html/boost_regex/ref/regex_search.html libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html libs/regex/doc/html/boost_regex/ref/regex_traits.html libs/regex/doc/html/boost_regex/ref/sub_match.html libs/regex/doc/html/boost_regex/ref/syntax_option_type.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html libs/regex/doc/html/boost_regex/syntax.html libs/regex/doc/html/boost_regex/syntax/basic_extended.html libs/regex/doc/html/boost_regex/syntax/basic_syntax.html libs/regex/doc/html/boost_regex/syntax/character_classes.html libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_clases.html libs/regex/doc/html/boost_regex/syntax/collating_names.html libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html libs/regex/doc/html/boost_regex/syntax/perl_syntax.html libs/regex/doc/html/boost_regex/unicode.html libs/regex/doc/html/index.html libs/regex/doc/vc71-performance.html libs/regex/index.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_ALL.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_ALL_ID.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_END.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_END_ID.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_ID.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_ID_TPL.html libs/scope_exit/doc/html/BOOST_SCOPE_EXIT_TPL.html libs/scope_exit/doc/html/index.html libs/scope_exit/doc/html/reference.html libs/scope_exit/doc/html/scope_exit/acknowledgements.html libs/scope_exit/doc/html/scope_exit/alternatives.html libs/scope_exit/doc/html/scope_exit/getting_started.html libs/scope_exit/doc/html/scope_exit/no_variadic_macros.html libs/scope_exit/doc/html/scope_exit/tutorial.html libs/scope_exit/index.html libs/serialization/doc/acknowledgments.html libs/serialization/doc/archive_reference.html libs/serialization/doc/archives.html libs/serialization/doc/bibliography.html libs/serialization/doc/class_diagram.html libs/serialization/doc/codecvt.html libs/serialization/doc/contents.html libs/serialization/doc/dataflow.html libs/serialization/doc/derivation.html libs/serialization/doc/exception_safety.html libs/serialization/doc/exceptions.html libs/serialization/doc/extended_type_info.html libs/serialization/doc/faq.html libs/serialization/doc/headers.html libs/serialization/doc/history.html libs/serialization/doc/implementation.html libs/serialization/doc/index.html libs/serialization/doc/new_case_studies.html libs/serialization/doc/overview.html libs/serialization/doc/performance_status.html libs/serialization/doc/pimpl.html libs/serialization/doc/rationale.html libs/serialization/doc/reference.html libs/serialization/doc/release.html libs/serialization/doc/serialization.html libs/serialization/doc/shared_ptr.html libs/serialization/doc/shared_ptr2.html libs/serialization/doc/simple_log.html libs/serialization/doc/singleton.html libs/serialization/doc/smart_cast.html libs/serialization/doc/special.html libs/serialization/doc/state_saver.html libs/serialization/doc/static_warning.html libs/serialization/doc/strong_typedef.html libs/serialization/doc/todo.html libs/serialization/doc/traits.html libs/serialization/doc/tutorial.html libs/serialization/doc/void_cast.html libs/serialization/doc/wrappers.html libs/serialization/index.html libs/signals/index.html libs/signals2/index.html libs/smart_ptr/compatibility.htm libs/smart_ptr/enable_shared_from_this.html libs/smart_ptr/index.html libs/smart_ptr/intrusive_ptr.html libs/smart_ptr/make_shared.html libs/smart_ptr/make_shared_array.html libs/smart_ptr/scoped_array.htm libs/smart_ptr/scoped_ptr.htm libs/smart_ptr/shared_array.htm libs/smart_ptr/shared_ptr.htm libs/smart_ptr/smart_ptr.htm libs/smart_ptr/smarttests.htm libs/smart_ptr/sp_techniques.html libs/smart_ptr/weak_ptr.htm libs/spirit/classic/change_log.html libs/spirit/classic/doc/acknowledgments.html libs/spirit/classic/doc/basic_concepts.html libs/spirit/classic/doc/character_sets.html libs/spirit/classic/doc/closures.html libs/spirit/classic/doc/confix.html libs/spirit/classic/doc/debugging.html libs/spirit/classic/doc/directives.html libs/spirit/classic/doc/distinct.html libs/spirit/classic/doc/dynamic_parsers.html libs/spirit/classic/doc/epsilon.html libs/spirit/classic/doc/error_handling.html libs/spirit/classic/doc/escape_char_parser.html libs/spirit/classic/doc/faq.html libs/spirit/classic/doc/file_iterator.html libs/spirit/classic/doc/functional.html libs/spirit/classic/doc/functor_parser.html libs/spirit/classic/doc/grammar.html libs/spirit/classic/doc/includes.html libs/spirit/classic/doc/indepth_the_parser.html libs/spirit/classic/doc/indepth_the_parser_context.html libs/spirit/classic/doc/indepth_the_scanner.html libs/spirit/classic/doc/introduction.html libs/spirit/classic/doc/list_parsers.html libs/spirit/classic/doc/loops.html libs/spirit/classic/doc/multi_pass.html libs/spirit/classic/doc/numerics.html libs/spirit/classic/doc/operators.html libs/spirit/classic/doc/organization.html libs/spirit/classic/doc/parametric_parsers.html libs/spirit/classic/doc/phoenix.html libs/spirit/classic/doc/portability.html libs/spirit/classic/doc/position_iterator.html libs/spirit/classic/doc/predefined_actors.html libs/spirit/classic/doc/preface.html libs/spirit/classic/doc/primitives.html libs/spirit/classic/doc/quick_start.html libs/spirit/classic/doc/quickref.html libs/spirit/classic/doc/rationale.html libs/spirit/classic/doc/refactoring.html libs/spirit/classic/doc/references.html libs/spirit/classic/doc/regular_expression_parser.html libs/spirit/classic/doc/rule.html libs/spirit/classic/doc/scanner.html libs/spirit/classic/doc/scoped_lock.html libs/spirit/classic/doc/select_parser.html libs/spirit/classic/doc/semantic_actions.html libs/spirit/classic/doc/stored_rule.html libs/spirit/classic/doc/style_guide.html libs/spirit/classic/doc/subrules.html libs/spirit/classic/doc/switch_parser.html libs/spirit/classic/doc/symbols.html libs/spirit/classic/doc/techniques.html libs/spirit/classic/doc/the_lazy_parser.html libs/spirit/classic/doc/trees.html libs/spirit/classic/index.html libs/spirit/doc/html/index.html libs/spirit/doc/html/spirit/abstracts.html libs/spirit/doc/html/spirit/abstracts/attributes.html libs/spirit/doc/html/spirit/abstracts/attributes/compound_attributes.html libs/spirit/doc/html/spirit/abstracts/attributes/more_compound_attributes.html libs/spirit/doc/html/spirit/abstracts/attributes/nonterminal_attributes.html libs/spirit/doc/html/spirit/abstracts/attributes/primitive_attributes.html libs/spirit/doc/html/spirit/abstracts/parsing_expression_grammar.html libs/spirit/doc/html/spirit/abstracts/syntax_diagram.html libs/spirit/doc/html/spirit/acknowledgments.html libs/spirit/doc/html/spirit/advanced.html libs/spirit/doc/html/spirit/advanced/customize.html libs/spirit/doc/html/spirit/advanced/customize/assign_to.html libs/spirit/doc/html/spirit/advanced/customize/assign_to/assign_to_attribute_from_iterators.html libs/spirit/doc/html/spirit/advanced/customize/assign_to/assign_to_attribute_from_value.html libs/spirit/doc/html/spirit/advanced/customize/assign_to/assign_to_container_from_value.html libs/spirit/doc/html/spirit/advanced/customize/attribute_as.html libs/spirit/doc/html/spirit/advanced/customize/auto.html libs/spirit/doc/html/spirit/advanced/customize/auto/create_generator.html libs/spirit/doc/html/spirit/advanced/customize/auto/create_parser.html libs/spirit/doc/html/spirit/advanced/customize/clear_value.html libs/spirit/doc/html/spirit/advanced/customize/extract_from.html libs/spirit/doc/html/spirit/advanced/customize/extract_from_container.html libs/spirit/doc/html/spirit/advanced/customize/handles_container.html libs/spirit/doc/html/spirit/advanced/customize/is_container.html libs/spirit/doc/html/spirit/advanced/customize/is_string.html libs/spirit/doc/html/spirit/advanced/customize/iterate.html libs/spirit/doc/html/spirit/advanced/customize/iterate/begin_container.html libs/spirit/doc/html/spirit/advanced/customize/iterate/compare_iterators.html libs/spirit/doc/html/spirit/advanced/customize/iterate/container_iterator.html libs/spirit/doc/html/spirit/advanced/customize/iterate/deref_iterator.html libs/spirit/doc/html/spirit/advanced/customize/iterate/end_container.html libs/spirit/doc/html/spirit/advanced/customize/iterate/next_iterator.html libs/spirit/doc/html/spirit/advanced/customize/store_value.html libs/spirit/doc/html/spirit/advanced/customize/store_value/container_value.html libs/spirit/doc/html/spirit/advanced/customize/store_value/push_back.html libs/spirit/doc/html/spirit/advanced/customize/string_traits.html libs/spirit/doc/html/spirit/advanced/customize/string_traits/char_type_of.html libs/spirit/doc/html/spirit/advanced/customize/string_traits/extract_c_string.html libs/spirit/doc/html/spirit/advanced/customize/string_traits/is_char.html libs/spirit/doc/html/spirit/advanced/customize/transform.html libs/spirit/doc/html/spirit/advanced/indepth.html libs/spirit/doc/html/spirit/advanced/indepth/parsers_indepth.html libs/spirit/doc/html/spirit/faq.html libs/spirit/doc/html/spirit/introduction.html libs/spirit/doc/html/spirit/karma.html libs/spirit/doc/html/spirit/karma/performance_measurements.html libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance.html libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/double_performance.html libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/format_performance.html libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/int_performance.html libs/spirit/doc/html/spirit/karma/quick_reference.html libs/spirit/doc/html/spirit/karma/quick_reference/common_notation.html libs/spirit/doc/html/spirit/karma/quick_reference/compound_attribute_rules.html libs/spirit/doc/html/spirit/karma/quick_reference/non_terminals.html libs/spirit/doc/html/spirit/karma/quick_reference/phoenix.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/action.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/auto.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/auxiliary.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/binary.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/boolean.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/char.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/directives.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/operators.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/real_number.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/signed_int.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/stream.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/string.html libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/unsigned_int.html libs/spirit/doc/html/spirit/karma/quick_reference/semantic_actions.html libs/spirit/doc/html/spirit/karma/reference.html libs/spirit/doc/html/spirit/karma/reference/action.html libs/spirit/doc/html/spirit/karma/reference/auto.html libs/spirit/doc/html/spirit/karma/reference/auxiliary.html libs/spirit/doc/html/spirit/karma/reference/auxiliary/attr_cast.html libs/spirit/doc/html/spirit/karma/reference/auxiliary/eol.html libs/spirit/doc/html/spirit/karma/reference/auxiliary/eps.html libs/spirit/doc/html/spirit/karma/reference/auxiliary/lazy.html libs/spirit/doc/html/spirit/karma/reference/basics.html libs/spirit/doc/html/spirit/karma/reference/binary.html libs/spirit/doc/html/spirit/karma/reference/binary/binary_big.html libs/spirit/doc/html/spirit/karma/reference/binary/binary_little.html libs/spirit/doc/html/spirit/karma/reference/binary/binary_native.html libs/spirit/doc/html/spirit/karma/reference/char.html libs/spirit/doc/html/spirit/karma/reference/char/char_class.html libs/spirit/doc/html/spirit/karma/reference/char/char_generator.html libs/spirit/doc/html/spirit/karma/reference/directive.html libs/spirit/doc/html/spirit/karma/reference/directive/alignment.html libs/spirit/doc/html/spirit/karma/reference/directive/as.html libs/spirit/doc/html/spirit/karma/reference/directive/buffer.html libs/spirit/doc/html/spirit/karma/reference/directive/columns.html libs/spirit/doc/html/spirit/karma/reference/directive/delimit.html libs/spirit/doc/html/spirit/karma/reference/directive/duplicate.html libs/spirit/doc/html/spirit/karma/reference/directive/maxwidth.html libs/spirit/doc/html/spirit/karma/reference/directive/omit.html libs/spirit/doc/html/spirit/karma/reference/directive/repeat.html libs/spirit/doc/html/spirit/karma/reference/directive/upperlower.html libs/spirit/doc/html/spirit/karma/reference/generate_api.html libs/spirit/doc/html/spirit/karma/reference/generate_api/create_generator.html libs/spirit/doc/html/spirit/karma/reference/generate_api/iterator_api.html libs/spirit/doc/html/spirit/karma/reference/generate_api/stream_api.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/binarygenerator.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/generator.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/narygenerator.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/nonterminal.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/primitivegenerator.html libs/spirit/doc/html/spirit/karma/reference/generator_concepts/unarygenerator.html libs/spirit/doc/html/spirit/karma/reference/nonterminal.html libs/spirit/doc/html/spirit/karma/reference/nonterminal/grammar.html libs/spirit/doc/html/spirit/karma/reference/nonterminal/rule.html libs/spirit/doc/html/spirit/karma/reference/numeric.html libs/spirit/doc/html/spirit/karma/reference/numeric/boolean.html libs/spirit/doc/html/spirit/karma/reference/numeric/real_number.html libs/spirit/doc/html/spirit/karma/reference/numeric/signed_int.html libs/spirit/doc/html/spirit/karma/reference/numeric/unsigned_int.html libs/spirit/doc/html/spirit/karma/reference/operator.html libs/spirit/doc/html/spirit/karma/reference/operator/alternative.html libs/spirit/doc/html/spirit/karma/reference/operator/and_predicate.html libs/spirit/doc/html/spirit/karma/reference/operator/kleene.html libs/spirit/doc/html/spirit/karma/reference/operator/list.html libs/spirit/doc/html/spirit/karma/reference/operator/not_predicate.html libs/spirit/doc/html/spirit/karma/reference/operator/optional.html libs/spirit/doc/html/spirit/karma/reference/operator/plus.html libs/spirit/doc/html/spirit/karma/reference/operator/sequence.html libs/spirit/doc/html/spirit/karma/reference/stream.html libs/spirit/doc/html/spirit/karma/reference/stream/stream.html libs/spirit/doc/html/spirit/karma/reference/string.html libs/spirit/doc/html/spirit/karma/reference/string/string.html libs/spirit/doc/html/spirit/karma/reference/string/symbols.html libs/spirit/doc/html/spirit/karma/s05.html libs/spirit/doc/html/spirit/karma/tutorials.html libs/spirit/doc/html/spirit/karma/tutorials/karma_adapted_complex.html libs/spirit/doc/html/spirit/karma/tutorials/karma_complex.html libs/spirit/doc/html/spirit/karma/tutorials/karma_easier_complex.html libs/spirit/doc/html/spirit/karma/tutorials/num_list.html libs/spirit/doc/html/spirit/karma/tutorials/num_matrix.html libs/spirit/doc/html/spirit/karma/tutorials/quick_start.html libs/spirit/doc/html/spirit/karma/tutorials/semantic_actions.html libs/spirit/doc/html/spirit/karma/tutorials/warming_up.html libs/spirit/doc/html/spirit/lex.html libs/spirit/doc/html/spirit/lex/abstracts.html libs/spirit/doc/html/spirit/lex/abstracts/lexer_primitives.html libs/spirit/doc/html/spirit/lex/abstracts/lexer_primitives/lexer_token_values.html libs/spirit/doc/html/spirit/lex/abstracts/lexer_semantic_actions.html libs/spirit/doc/html/spirit/lex/abstracts/lexer_static_model.html libs/spirit/doc/html/spirit/lex/abstracts/lexer_tokenizing.html libs/spirit/doc/html/spirit/lex/lexer_introduction.html libs/spirit/doc/html/spirit/lex/quick_reference.html libs/spirit/doc/html/spirit/lex/quick_reference/common_notation.html libs/spirit/doc/html/spirit/lex/quick_reference/lexer.html libs/spirit/doc/html/spirit/lex/quick_reference/lexers.html libs/spirit/doc/html/spirit/lex/quick_reference/phoenix.html libs/spirit/doc/html/spirit/lex/quick_reference/semantic_actions.html libs/spirit/doc/html/spirit/lex/reference.html libs/spirit/doc/html/spirit/lex/reference/lex_basics.html libs/spirit/doc/html/spirit/lex/reference/lexer_api.html libs/spirit/doc/html/spirit/lex/reference/lexer_concepts.html libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/lexer.html libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/narylexer.html libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/primitivelexer.html libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/unarylexer.html libs/spirit/doc/html/spirit/lex/reference/primitives.html libs/spirit/doc/html/spirit/lex/reference/primitives/char_tokendef.html libs/spirit/doc/html/spirit/lex/tutorials.html libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart1.html libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart2.html libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart3.html libs/spirit/doc/html/spirit/lex/tutorials/lexer_tutorials.html libs/spirit/doc/html/spirit/notes.html libs/spirit/doc/html/spirit/notes/porting_from_spirit_1_8_x.html libs/spirit/doc/html/spirit/notes/style_guide.html libs/spirit/doc/html/spirit/preface.html libs/spirit/doc/html/spirit/qi.html libs/spirit/doc/html/spirit/qi/quick_reference.html libs/spirit/doc/html/spirit/qi/quick_reference/common_notation.html libs/spirit/doc/html/spirit/qi/quick_reference/compound_attribute_rules.html libs/spirit/doc/html/spirit/qi/quick_reference/non_terminals.html libs/spirit/doc/html/spirit/qi/quick_reference/phoenix.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/action.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/auto.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/auxiliary.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/binary.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/char.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/directive.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/numeric.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/operator.html libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/string.html libs/spirit/doc/html/spirit/qi/quick_reference/semantic_actions.html libs/spirit/doc/html/spirit/qi/reference.html libs/spirit/doc/html/spirit/qi/reference/action.html libs/spirit/doc/html/spirit/qi/reference/auto.html libs/spirit/doc/html/spirit/qi/reference/auxiliary.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/attr.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/attr_cast.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/eoi.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/eol.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/eps.html libs/spirit/doc/html/spirit/qi/reference/auxiliary/lazy.html libs/spirit/doc/html/spirit/qi/reference/basics.html libs/spirit/doc/html/spirit/qi/reference/binary.html libs/spirit/doc/html/spirit/qi/reference/binary/binary_big.html libs/spirit/doc/html/spirit/qi/reference/binary/binary_little.html libs/spirit/doc/html/spirit/qi/reference/binary/binary_native.html libs/spirit/doc/html/spirit/qi/reference/char.html libs/spirit/doc/html/spirit/qi/reference/char/char.html libs/spirit/doc/html/spirit/qi/reference/char/char_class.html libs/spirit/doc/html/spirit/qi/reference/directive.html libs/spirit/doc/html/spirit/qi/reference/directive/as.html libs/spirit/doc/html/spirit/qi/reference/directive/hold.html libs/spirit/doc/html/spirit/qi/reference/directive/lexeme.html libs/spirit/doc/html/spirit/qi/reference/directive/matches.html libs/spirit/doc/html/spirit/qi/reference/directive/no_case.html libs/spirit/doc/html/spirit/qi/reference/directive/no_skip.html libs/spirit/doc/html/spirit/qi/reference/directive/omit.html libs/spirit/doc/html/spirit/qi/reference/directive/raw.html libs/spirit/doc/html/spirit/qi/reference/directive/repeat.html libs/spirit/doc/html/spirit/qi/reference/directive/skip.html libs/spirit/doc/html/spirit/qi/reference/nonterminal.html libs/spirit/doc/html/spirit/qi/reference/nonterminal/grammar.html libs/spirit/doc/html/spirit/qi/reference/nonterminal/rule.html libs/spirit/doc/html/spirit/qi/reference/numeric.html libs/spirit/doc/html/spirit/qi/reference/numeric/boolean.html libs/spirit/doc/html/spirit/qi/reference/numeric/int.html libs/spirit/doc/html/spirit/qi/reference/numeric/real.html libs/spirit/doc/html/spirit/qi/reference/numeric/uint.html libs/spirit/doc/html/spirit/qi/reference/operator.html libs/spirit/doc/html/spirit/qi/reference/operator/alternative.html libs/spirit/doc/html/spirit/qi/reference/operator/and_predicate.html libs/spirit/doc/html/spirit/qi/reference/operator/difference.html libs/spirit/doc/html/spirit/qi/reference/operator/expect.html libs/spirit/doc/html/spirit/qi/reference/operator/kleene.html libs/spirit/doc/html/spirit/qi/reference/operator/list.html libs/spirit/doc/html/spirit/qi/reference/operator/not_predicate.html libs/spirit/doc/html/spirit/qi/reference/operator/optional.html libs/spirit/doc/html/spirit/qi/reference/operator/permutation.html libs/spirit/doc/html/spirit/qi/reference/operator/plus.html libs/spirit/doc/html/spirit/qi/reference/operator/sequence.html libs/spirit/doc/html/spirit/qi/reference/operator/sequential_or.html libs/spirit/doc/html/spirit/qi/reference/parse_api.html libs/spirit/doc/html/spirit/qi/reference/parse_api/create_parser.html libs/spirit/doc/html/spirit/qi/reference/parse_api/iterator_api.html libs/spirit/doc/html/spirit/qi/reference/parse_api/stream_api.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/binaryparser.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/naryparser.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/nonterminal.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/parser.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/primitiveparser.html libs/spirit/doc/html/spirit/qi/reference/parser_concepts/unaryparser.html libs/spirit/doc/html/spirit/qi/reference/stream.html libs/spirit/doc/html/spirit/qi/reference/stream/stream.html libs/spirit/doc/html/spirit/qi/reference/string.html libs/spirit/doc/html/spirit/qi/reference/string/string.html libs/spirit/doc/html/spirit/qi/reference/string/symbols.html libs/spirit/doc/html/spirit/qi/s04.html libs/spirit/doc/html/spirit/qi/tutorials.html libs/spirit/doc/html/spirit/qi/tutorials/complex___our_first_complex_parser.html libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html libs/spirit/doc/html/spirit/qi/tutorials/mini_xml___asts_.html libs/spirit/doc/html/spirit/qi/tutorials/mini_xml___error_handling.html libs/spirit/doc/html/spirit/qi/tutorials/number_list___stuffing_numbers_into_a_std__vector.html libs/spirit/doc/html/spirit/qi/tutorials/number_list_attribute___one_more__with_style.html libs/spirit/doc/html/spirit/qi/tutorials/number_list_redux___list_syntax.html libs/spirit/doc/html/spirit/qi/tutorials/quick_start.html libs/spirit/doc/html/spirit/qi/tutorials/roman_numerals.html libs/spirit/doc/html/spirit/qi/tutorials/semantic_actions.html libs/spirit/doc/html/spirit/qi/tutorials/sum___adding_numbers.html libs/spirit/doc/html/spirit/qi/tutorials/warming_up.html libs/spirit/doc/html/spirit/rationale.html libs/spirit/doc/html/spirit/references.html libs/spirit/doc/html/spirit/repository.html libs/spirit/doc/html/spirit/structure.html libs/spirit/doc/html/spirit/structure/include.html libs/spirit/doc/html/spirit/support.html libs/spirit/doc/html/spirit/support/line_pos_iterator.html libs/spirit/doc/html/spirit/support/multi_pass.html libs/spirit/doc/html/spirit/support/utree.html libs/spirit/doc/html/spirit/what_s_new.html libs/spirit/doc/html/spirit/what_s_new/spirit_1_x.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_1.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_2.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_3.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_4.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_4_1.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_4_2.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_5.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_5_1.html libs/spirit/doc/html/spirit/what_s_new/spirit_2_5_2.html libs/spirit/index.html libs/spirit/phoenix/doc/html/index.html libs/spirit/repository/doc/html/index.html libs/statechart/doc/acknowledgments.html libs/statechart/doc/configuration.html libs/statechart/doc/contact.html libs/statechart/doc/definitions.html libs/statechart/doc/faq.html libs/statechart/doc/future_and_history.html libs/statechart/doc/index.html libs/statechart/doc/performance.html libs/statechart/doc/rationale.html libs/statechart/doc/reference.html libs/statechart/doc/tutorial.html libs/statechart/doc/uml_mapping.html libs/static_assert/index.html libs/static_assert/static_assert.htm libs/system/doc/index.html libs/system/doc/reference.html libs/system/index.html libs/test/doc/html/aknowledgements.html libs/test/doc/html/execution-monitor.html libs/test/doc/html/execution-monitor/compilation.html libs/test/doc/html/execution-monitor/reference.html libs/test/doc/html/execution-monitor/user-guide.html libs/test/doc/html/faq.html libs/test/doc/html/index.html libs/test/doc/html/intro.html libs/test/doc/html/minimal.html libs/test/doc/html/open-issues.html libs/test/doc/html/prg-exec-monitor.html libs/test/doc/html/prg-exec-monitor/compilation.html libs/test/doc/html/prg-exec-monitor/impl.html libs/test/doc/html/tutorials/hello-the-testing-world.html libs/test/doc/html/tutorials/intro-in-testing.html libs/test/doc/html/tutorials/new-year-resolution.html libs/test/doc/html/utf.html libs/test/doc/html/utf/compilation.html libs/test/doc/html/utf/compilation/auto-linking.html libs/test/doc/html/utf/compilation/direct-include.html libs/test/doc/html/utf/compilation/standalone.html libs/test/doc/html/utf/intro.html libs/test/doc/html/utf/testing-tools.html libs/test/doc/html/utf/testing-tools/custom-predicate.html libs/test/doc/html/utf/testing-tools/floating_point_comparison.html libs/test/doc/html/utf/testing-tools/output-test.html libs/test/doc/html/utf/testing-tools/reference.html libs/test/doc/html/utf/tutorials.html libs/test/doc/html/utf/usage-recommendations.html libs/test/doc/html/utf/usage-recommendations/command-line-specific.html libs/test/doc/html/utf/usage-recommendations/dot-net-specific.html libs/test/doc/html/utf/usage-recommendations/generic.html libs/test/doc/html/utf/user-guide.html libs/test/doc/html/utf/user-guide/fixture.html libs/test/doc/html/utf/user-guide/fixture/global.html libs/test/doc/html/utf/user-guide/fixture/model.html libs/test/doc/html/utf/user-guide/fixture/per-test-case.html libs/test/doc/html/utf/user-guide/fixture/test-suite-shared.html libs/test/doc/html/utf/user-guide/initialization.html libs/test/doc/html/utf/user-guide/runtime-config.html libs/test/doc/html/utf/user-guide/runtime-config/reference.html libs/test/doc/html/utf/user-guide/runtime-config/run-by-name.html libs/test/doc/html/utf/user-guide/test-organization.html libs/test/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html libs/test/doc/html/utf/user-guide/test-organization/auto-test-case-template.html libs/test/doc/html/utf/user-guide/test-organization/auto-test-suite.html libs/test/doc/html/utf/user-guide/test-organization/expected-failures.html libs/test/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html libs/test/doc/html/utf/user-guide/test-organization/manual-test-case-template.html libs/test/doc/html/utf/user-guide/test-organization/manual-test-suite.html libs/test/doc/html/utf/user-guide/test-organization/master-test-suite.html libs/test/doc/html/utf/user-guide/test-organization/nullary-test-case.html libs/test/doc/html/utf/user-guide/test-organization/test-case-template.html libs/test/doc/html/utf/user-guide/test-organization/test-suite.html libs/test/doc/html/utf/user-guide/test-organization/unary-test-case.html libs/test/doc/html/utf/user-guide/test-output.html libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html libs/test/doc/html/utf/user-guide/test-output/log-ct-config.html libs/test/doc/html/utf/user-guide/test-output/log-hr-format.html libs/test/doc/html/utf/user-guide/test-output/log-xml-format.html libs/test/doc/html/utf/user-guide/test-output/results-report.html libs/test/doc/html/utf/user-guide/test-output/test-log.html libs/test/doc/html/utf/user-guide/test-output/test-progress.html libs/test/doc/html/utf/user-guide/test-runners.html libs/test/doc/html/utf/user-guide/usage-variants.html libs/test/doc/html/utf/user-guide/usage-variants/dynamic-lib-variant.html libs/test/doc/html/utf/user-guide/usage-variants/extern-test-runner-variant.html libs/test/doc/html/utf/user-guide/usage-variants/extern-test-runner.html libs/test/doc/html/utf/user-guide/usage-variants/single-header-variant.html libs/test/doc/html/utf/user-guide/usage-variants/static-lib-variant.html libs/test/index.html libs/thread/doc/index.html libs/thread/index.html libs/timer/doc/cpu_timers.html libs/timer/doc/index.html libs/timer/doc/original_timer.html libs/timer/index.html libs/tokenizer/char_delimiters_separator.htm libs/tokenizer/char_separator.htm libs/tokenizer/escaped_list_separator.htm libs/tokenizer/index.html libs/tokenizer/introduc.htm libs/tokenizer/offset_separator.htm libs/tokenizer/token_iterator.htm libs/tokenizer/tokenizer.htm libs/tokenizer/tokenizerfunction.htm libs/tr1/index.html libs/tti/doc/html/BOOST_TTI_HAS_DATA.html libs/tti/doc/html/BOOST_TTI_HAS_DATA_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_FUNCTION.html libs/tti/doc/html/BOOST_TTI_HAS_FUNCTION_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_MEMBER_DATA.html libs/tti/doc/html/BOOST_TTI_HAS_MEMBER_DATA_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_MEMBER_FUNCTION.html libs/tti/doc/html/BOOST_TTI_HAS_MEMBER_FUNCTION_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_STATIC_MEMBER_DATA.html libs/tti/doc/html/BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION.html libs/tti/doc/html/BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_TEMPLATE.html libs/tti/doc/html/BOOST_TTI_HAS_TEMPLATE_GEN.html libs/tti/doc/html/BOOST_TTI_HAS_TYPE.html libs/tti/doc/html/BOOST_TTI_HAS_TYPE_GEN.html libs/tti/doc/html/BOOST_TTI_MEMBER_TYPE.html libs/tti/doc/html/BOOST_TTI_MEMBER_TYPE_GEN.html libs/tti/doc/html/BOOST_TTI_NAMESPACE.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_DATA.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_FUNCTION.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_MEMBER_DATA.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_STATIC_MEMBER_DATA.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_TEMPLATE.html libs/tti/doc/html/BOOST_TTI_TRAIT_HAS_TYPE.html libs/tti/doc/html/BOOST_TTI_TRAIT_MEMBER_TYPE.html libs/tti/doc/html/boost/tti/valid_member_metafunction.html libs/tti/doc/html/boost/tti/valid_member_type.html libs/tti/doc/html/header/boost/tti/gen/has_function_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_member_data_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_member_function_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_static_member_data_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_static_member_function_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_template_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/has_type_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/member_type_gen_hpp.html libs/tti/doc/html/header/boost/tti/gen/namespace_gen_hpp.html libs/tti/doc/html/header/boost/tti/has_data_hpp.html libs/tti/doc/html/header/boost/tti/has_function_hpp.html libs/tti/doc/html/header/boost/tti/has_member_data_hpp.html libs/tti/doc/html/header/boost/tti/has_member_function_hpp.html libs/tti/doc/html/header/boost/tti/has_static_member_data_hpp.html libs/tti/doc/html/header/boost/tti/has_static_member_function_hpp.html libs/tti/doc/html/header/boost/tti/has_template_hpp.html libs/tti/doc/html/header/boost/tti/has_type_hpp.html libs/tti/doc/html/header/boost/tti/member_type_hpp.html libs/tti/doc/html/index.html libs/tti/doc/html/index/s23.html libs/tti/doc/html/reference.html libs/tti/doc/html/the_type_traits_introspection_library/tti_acknowledgments.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_data.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_function.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_member_data.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_member_function.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_static_member_data.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_static_member_function.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_template.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_template/tti_detail_has_template_metafunction.html libs/tti/doc/html/the_type_traits_introspection_library/tti_detail_has_type.html libs/tti/doc/html/the_type_traits_introspection_library/tti_func_sig.html libs/tti/doc/html/the_type_traits_introspection_library/tti_func_templates.html libs/tti/doc/html/the_type_traits_introspection_library/tti_functionality.html libs/tti/doc/html/the_type_traits_introspection_library/tti_history.html libs/tti/doc/html/the_type_traits_introspection_library/tti_nested_type.html libs/tti/doc/html/the_type_traits_introspection_library/tti_reason.html libs/tti/doc/html/the_type_traits_introspection_library/tti_terminology.html libs/tti/doc/html/the_type_traits_introspection_library/tti_tests.html libs/tti/doc/html/the_type_traits_introspection_library/tti_todo.html libs/tti/doc/html/the_type_traits_introspection_library/tti_usingMM.html libs/tti/index.html libs/tuple/doc/design_decisions_rationale.html libs/tuple/doc/tuple_advanced_interface.html libs/tuple/doc/tuple_users_guide.html libs/tuple/index.html libs/type_erasure/index.html libs/type_traits/doc/html/boost_typetraits/background.html libs/type_traits/doc/html/boost_typetraits/category.html libs/type_traits/doc/html/boost_typetraits/category/alignment.html libs/type_traits/doc/html/boost_typetraits/category/function.html libs/type_traits/doc/html/boost_typetraits/category/transform.html libs/type_traits/doc/html/boost_typetraits/category/value_traits.html libs/type_traits/doc/html/boost_typetraits/category/value_traits/operators.html libs/type_traits/doc/html/boost_typetraits/category/value_traits/primary.html libs/type_traits/doc/html/boost_typetraits/category/value_traits/properties.html libs/type_traits/doc/html/boost_typetraits/category/value_traits/relate.html libs/type_traits/doc/html/boost_typetraits/credits.html libs/type_traits/doc/html/boost_typetraits/examples.html libs/type_traits/doc/html/boost_typetraits/examples/copy.html libs/type_traits/doc/html/boost_typetraits/examples/destruct.html libs/type_traits/doc/html/boost_typetraits/examples/fill.html libs/type_traits/doc/html/boost_typetraits/examples/improved_min.html libs/type_traits/doc/html/boost_typetraits/examples/iter.html libs/type_traits/doc/html/boost_typetraits/examples/to_double.html libs/type_traits/doc/html/boost_typetraits/history.html libs/type_traits/doc/html/boost_typetraits/intrinsics.html libs/type_traits/doc/html/boost_typetraits/intro.html libs/type_traits/doc/html/boost_typetraits/mpl.html libs/type_traits/doc/html/boost_typetraits/reference.html libs/type_traits/doc/html/boost_typetraits/reference/add_const.html libs/type_traits/doc/html/boost_typetraits/reference/add_cv.html libs/type_traits/doc/html/boost_typetraits/reference/add_lvalue_reference.html libs/type_traits/doc/html/boost_typetraits/reference/add_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/add_reference.html libs/type_traits/doc/html/boost_typetraits/reference/add_rvalue_reference.html libs/type_traits/doc/html/boost_typetraits/reference/add_volatile.html libs/type_traits/doc/html/boost_typetraits/reference/aligned_storage.html libs/type_traits/doc/html/boost_typetraits/reference/alignment_of.html libs/type_traits/doc/html/boost_typetraits/reference/common_type.html libs/type_traits/doc/html/boost_typetraits/reference/conditional.html libs/type_traits/doc/html/boost_typetraits/reference/decay.html libs/type_traits/doc/html/boost_typetraits/reference/extent.html libs/type_traits/doc/html/boost_typetraits/reference/floating_point_promotion.html libs/type_traits/doc/html/boost_typetraits/reference/function_traits.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_and.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_and_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_or.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_or_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_xor.html libs/type_traits/doc/html/boost_typetraits/reference/has_bit_xor_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_complement.html libs/type_traits/doc/html/boost_typetraits/reference/has_dereference.html libs/type_traits/doc/html/boost_typetraits/reference/has_divides.html libs/type_traits/doc/html/boost_typetraits/reference/has_divides_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_equal_to.html libs/type_traits/doc/html/boost_typetraits/reference/has_greater.html libs/type_traits/doc/html/boost_typetraits/reference/has_greater_equal.html libs/type_traits/doc/html/boost_typetraits/reference/has_left_shift.html libs/type_traits/doc/html/boost_typetraits/reference/has_left_shift_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_less.html libs/type_traits/doc/html/boost_typetraits/reference/has_less_equal.html libs/type_traits/doc/html/boost_typetraits/reference/has_logical_and.html libs/type_traits/doc/html/boost_typetraits/reference/has_logical_not.html libs/type_traits/doc/html/boost_typetraits/reference/has_logical_or.html libs/type_traits/doc/html/boost_typetraits/reference/has_minus.html libs/type_traits/doc/html/boost_typetraits/reference/has_minus_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_modulus.html libs/type_traits/doc/html/boost_typetraits/reference/has_modulus_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_multiplies.html libs/type_traits/doc/html/boost_typetraits/reference/has_multiplies_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_negate.html libs/type_traits/doc/html/boost_typetraits/reference/has_new_operator.html libs/type_traits/doc/html/boost_typetraits/reference/has_no_throw_def_cons.html libs/type_traits/doc/html/boost_typetraits/reference/has_not_equal_to.html libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_constructor.html libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_copy.html libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_cp_cons.html libs/type_traits/doc/html/boost_typetraits/reference/has_plus.html libs/type_traits/doc/html/boost_typetraits/reference/has_plus_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_post_decrement.html libs/type_traits/doc/html/boost_typetraits/reference/has_post_increment.html libs/type_traits/doc/html/boost_typetraits/reference/has_pre_decrement.html libs/type_traits/doc/html/boost_typetraits/reference/has_pre_increment.html libs/type_traits/doc/html/boost_typetraits/reference/has_right_shift.html libs/type_traits/doc/html/boost_typetraits/reference/has_right_shift_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_constructor.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_copy.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_cp_cons.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_def_cons.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_destructor.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_move_assign.html libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_move_constructor.html libs/type_traits/doc/html/boost_typetraits/reference/has_unary_minus.html libs/type_traits/doc/html/boost_typetraits/reference/has_unary_plus.html libs/type_traits/doc/html/boost_typetraits/reference/has_virtual_destructor.html libs/type_traits/doc/html/boost_typetraits/reference/integral_constant.html libs/type_traits/doc/html/boost_typetraits/reference/integral_promotion.html libs/type_traits/doc/html/boost_typetraits/reference/is_abstract.html libs/type_traits/doc/html/boost_typetraits/reference/is_arithmetic.html libs/type_traits/doc/html/boost_typetraits/reference/is_array.html libs/type_traits/doc/html/boost_typetraits/reference/is_base_of.html libs/type_traits/doc/html/boost_typetraits/reference/is_class.html libs/type_traits/doc/html/boost_typetraits/reference/is_complex.html libs/type_traits/doc/html/boost_typetraits/reference/is_compound.html libs/type_traits/doc/html/boost_typetraits/reference/is_const.html libs/type_traits/doc/html/boost_typetraits/reference/is_convertible.html libs/type_traits/doc/html/boost_typetraits/reference/is_empty.html libs/type_traits/doc/html/boost_typetraits/reference/is_enum.html libs/type_traits/doc/html/boost_typetraits/reference/is_floating_point.html libs/type_traits/doc/html/boost_typetraits/reference/is_function.html libs/type_traits/doc/html/boost_typetraits/reference/is_fundamental.html libs/type_traits/doc/html/boost_typetraits/reference/is_integral.html libs/type_traits/doc/html/boost_typetraits/reference/is_lvalue_reference.html libs/type_traits/doc/html/boost_typetraits/reference/is_member_function_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/is_member_object_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/is_member_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html libs/type_traits/doc/html/boost_typetraits/reference/is_object.html libs/type_traits/doc/html/boost_typetraits/reference/is_pod.html libs/type_traits/doc/html/boost_typetraits/reference/is_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/is_polymorphic.html libs/type_traits/doc/html/boost_typetraits/reference/is_reference.html libs/type_traits/doc/html/boost_typetraits/reference/is_rvalue_reference.html libs/type_traits/doc/html/boost_typetraits/reference/is_same.html libs/type_traits/doc/html/boost_typetraits/reference/is_scalar.html libs/type_traits/doc/html/boost_typetraits/reference/is_signed.html libs/type_traits/doc/html/boost_typetraits/reference/is_stateless.html libs/type_traits/doc/html/boost_typetraits/reference/is_union.html libs/type_traits/doc/html/boost_typetraits/reference/is_unsigned.html libs/type_traits/doc/html/boost_typetraits/reference/is_virtual_base_of.html libs/type_traits/doc/html/boost_typetraits/reference/is_void.html libs/type_traits/doc/html/boost_typetraits/reference/is_volatile.html libs/type_traits/doc/html/boost_typetraits/reference/make_signed.html libs/type_traits/doc/html/boost_typetraits/reference/make_unsigned.html libs/type_traits/doc/html/boost_typetraits/reference/promote.html libs/type_traits/doc/html/boost_typetraits/reference/rank.html libs/type_traits/doc/html/boost_typetraits/reference/remove_all_extents.html libs/type_traits/doc/html/boost_typetraits/reference/remove_const.html libs/type_traits/doc/html/boost_typetraits/reference/remove_cv.html libs/type_traits/doc/html/boost_typetraits/reference/remove_extent.html libs/type_traits/doc/html/boost_typetraits/reference/remove_pointer.html libs/type_traits/doc/html/boost_typetraits/reference/remove_reference.html libs/type_traits/doc/html/boost_typetraits/reference/remove_volatile.html libs/type_traits/doc/html/boost_typetraits/reference/type_with_alignment.html libs/type_traits/doc/html/boost_typetraits/user_defined.html libs/type_traits/doc/html/index.html libs/type_traits/doc/html/index/s11.html libs/type_traits/doc/html/index/s12.html libs/type_traits/doc/html/index/s13.html libs/type_traits/doc/html/index/s14.html libs/type_traits/index.html libs/typeof/index.html libs/units/index.html libs/unordered/index.html libs/utility/Assignable.html libs/utility/Collection.html libs/utility/CopyConstructible.html libs/utility/LessThanComparable.html libs/utility/MultiPassInputIterator.html libs/utility/OptionalPointee.html libs/utility/assert.html libs/utility/base_from_member.html libs/utility/call_traits.htm libs/utility/checked_delete.html libs/utility/compressed_pair.htm libs/utility/current_function.html libs/utility/doc/html/declval.html libs/utility/doc/html/string_ref.html libs/utility/enable_if.html libs/utility/generator_iterator.htm libs/utility/identity_type/doc/html/index.html libs/utility/identity_type/index.html libs/utility/in_place_factories.html libs/utility/index.html libs/utility/iterator_adaptors.htm libs/utility/operators.htm libs/utility/shared_container_iterator.html libs/utility/swap.html libs/utility/throw_exception.html libs/utility/utility.htm libs/utility/value_init.htm libs/uuid/index.html libs/uuid/uuid.html libs/variant/index.html libs/wave/doc/acknowledgements.html libs/wave/doc/class_ref_ctxpolicy_depr.html libs/wave/doc/class_reference_context.html libs/wave/doc/class_reference_ctxpolicy.html libs/wave/doc/class_reference_filepos.html libs/wave/doc/class_reference_inptpolcy.html libs/wave/doc/class_reference_lexer.html libs/wave/doc/class_reference_tokentype.html libs/wave/doc/compiletime_config.html libs/wave/doc/introduction.html libs/wave/doc/macro_expansion_process.html libs/wave/doc/predefined_macros.html libs/wave/doc/preface.html libs/wave/doc/quickstart.html libs/wave/doc/references.html libs/wave/doc/samples.html libs/wave/doc/supported_pragmas.html libs/wave/doc/token_ids.html libs/wave/doc/tracing_facility.html libs/wave/doc/wave_driver.html libs/wave/index.html libs/xpressive/index.html more/getting_started.html more/getting_started/index.html more/getting_started/unix-variants.html more/getting_started/windows.html more/index.htm more/writingdoc/design.html more/writingdoc/index.html more/writingdoc/introduction.html more/writingdoc/structure.html more/writingdoc/template/acknowledgments.html more/writingdoc/template/bibliography.html more/writingdoc/template/configuration.html more/writingdoc/template/definitions.html more/writingdoc/template/faq.html more/writingdoc/template/header.html more/writingdoc/template/index.html more/writingdoc/template/overview.html more/writingdoc/template/rationale.html rst.css tools/auto_index/doc/html/boost_autoindex/comm_ref.html tools/auto_index/doc/html/boost_autoindex/overview.html tools/auto_index/doc/html/boost_autoindex/qbk.html tools/auto_index/doc/html/boost_autoindex/script_ref.html tools/auto_index/doc/html/boost_autoindex/tut.html tools/auto_index/doc/html/boost_autoindex/tut/add_indexes.html tools/auto_index/doc/html/boost_autoindex/tut/build.html tools/auto_index/doc/html/boost_autoindex/tut/build_docs.html tools/auto_index/doc/html/boost_autoindex/tut/configure.html tools/auto_index/doc/html/boost_autoindex/tut/configure/optional.html tools/auto_index/doc/html/boost_autoindex/tut/configure/options.html tools/auto_index/doc/html/boost_autoindex/tut/entries.html tools/auto_index/doc/html/boost_autoindex/tut/pis.html tools/auto_index/doc/html/boost_autoindex/tut/refine.html tools/auto_index/doc/html/boost_autoindex/tut/script.html tools/auto_index/doc/html/boost_autoindex/workflow.html tools/auto_index/doc/html/boost_autoindex/xml.html tools/auto_index/doc/html/index.html tools/auto_index/doc/html/index/s08.html tools/auto_index/index.html tools/bcp/doc/html/index.html tools/bcp/index.html tools/build/index.html tools/build/v2/index.html tools/index.html tools/inspect/index.html tools/quickbook/index.html tools/regression/doc/index.html tools/regression/doc/library_status.html tools/regression/index.html tools/release/index.html debian/rules0000775000000000000000000003546312254341744010271 0ustar #! /usr/bin/make -f WITHOUT_MPI:=no JUST_MPI:=yes with_mpi:=--with-mpi MPI_CONFIG = "using mpi ;" # Boost libraries for which we want separate packages # context is conditionally compiled because it is not supported yet on several architectures # coroutine depends on context, so it is also conditionally compiled boost_libs := atomic chrono date-time exception filesystem \ graph graph-parallel iostreams locale log math mpi \ mpi-python program-options python random regex \ serialization signals system test thread timer wave ifeq ($(WITHOUT_MPI),yes) boost_libs := $(filter-out graph-parallel mpi mpi-python, $(boost_libs)) with_mpi:= MPI_CONFIG:= export DH_OPTIONS+=$(addprefix -N,$(shell dh_listpackages | grep -e graph-parallel -e mpi -e all-dev)) endif ifeq ($(JUST_MPI),yes) boost_libs := graph-parallel mpi mpi-python export DH_OPTIONS+=$(addprefix -N,$(shell dh_listpackages | grep -v -e graph-parallel -e mpi -e all-dev)) endif # these are special cases, where /usr/lib name differs from Boost library name boost_lib_log := log log_setup boost_lib_math := math_c99 math_c99f math_tr1 math_tr1f boost_lib_math_long_double := math_c99l math_tr1l boost_lib_serialization := serialization wserialization boost_lib_test := prg_exec_monitor test_exec_monitor unit_test_framework pyversions = $(shell pyversions -rv) $(shell py3versions -rv) # These are special cases for suffixes. Generally come from --python-buildid, so begin with a dash. boost_suffixes_python := $(addprefix -py,$(subst .,,$(pyversions))) boost_suffixes_mpi-python := $(boost_suffixes_python) # Files that are generated by filtering a template filtered_files = \ debian/libboost-doc.doc-base DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk include /usr/share/dpkg/architecture.mk %: dh $@ --with python2 --with python3 override_dh_auto_configure: user-config.jam make-debhelper override_dh_auto_build: $(bjam) debian/bjam.1 $(JAM) $(JAM_WITHOUT) --without-python for pyver in $(pyversions); do \ pyid=$$(echo $$pyver | tr -d .); \ echo "Building Boost.Python for python version $$pyver"; \ $(JAM) --with-python $(with_mpi) --python-buildid=py$$pyid python=$$pyver; \ mv stage/lib/mpi.so stage/lib/mpi-py$$pyid.so || true; \ done cd $(bbv2dir) && ./bootstrap.sh --with-toolset=gcc cd tools/bcp && $(JAM) cd tools/inspect/build && $(JAM) cd tools/quickbook && $(JAM) cd tools/wave/build && $(JAM) cd tools/regression/build && $(JAM) cd libs/python/pyste/install && python setup.py build override_dh_auto_clean: clean-debhelper -cd tools && $(JAM) clean -$(JAM) clean -cd libs/python/pyste/install && python setup.py clean rm -rf libs/python/pyste/install/build rm -rf tools/jam/src/bootstrap rm -rf tools/jam/src/bin.* rm -ff tools/jam/src/bjam rm -rf tools/regression/build/bin rm -rf bin.v2 dist rm -rf user-config.jam rm -rf debian/bjam.1 ifeq ($(WITHOUT_MPI),yes) # TODO, should also remove/add build-deps as well. grep-dctrl -FPackage -v mpi -o -FPackage graph-parallel -o -FPackage all-dev debian/control.in > debian/control else cp debian/control.in debian/control endif dh_auto_clean override_dh_compress: dh_compress -Xlibboost$(PKGVERSION)-doc/HTML override_dh_install: $(JAM) --prefix=$(CURDIR)/debian/tmp/usr $(JAM_WITHOUT) \ --libdir=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) \ --without-python install for pyver in $(pyversions); do \ pyid=`echo $$pyver | tr -d .`; \ $(JAM) --prefix=$(CURDIR)/debian/tmp/usr \ --libdir=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) \ install --with-python $(with_mpi) --python-buildid=py$$pyid python=$$pyver; \ done # Install Boost.Build v2 & jam cd $(bbv2dir) && ./bjam install --prefix=$(CURDIR)/debian/tmp/usr --libdir=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) mv debian/tmp/usr/share/boost-build/example debian/boost-build-examples find debian/tmp/usr/include debian/tmp/usr/share/boost-build -type f | xargs chmod 644 find debian/tmp -name .cvsignore | xargs rm -f find debian -empty -type f | xargs rm -f # package libboost-dbg # package libboost$(PKGVERSION)-dev dh_install -plibboost$(PKGVERSION)-dev \ debian/tmp/usr/include/boost \ usr/include dh_install -plibboost$(PKGVERSION)-tools-dev \ debian/tmp/usr/bin/bjam \ dist/bin/bcp \ dist/bin/inspect \ dist/bin/quickbook \ usr/bin dh_installman -plibboost$(PKGVERSION)-tools-dev debian/bjam.1 debian/bcp.1 debian/inspect.1 debian/quickbook.1 dh_install -plibboost$(PKGVERSION)-tools-dev tools/boostbook/xsl/* usr/share/boostbook/xsl dh_install -plibboost$(PKGVERSION)-tools-dev tools/boostbook/dtd/* usr/share/boostbook/dtd dh_install -plibboost$(PKGVERSION)-tools-dev debian/tmp/usr/share/boost-build # package libboost-date-time$(PKGVERSION)-dev dh_installdocs -plibboost-date-time$(PKGVERSION)-dev libs/date_time/data # package libboost-doc rm -rf $(htmldir) mkdir -p $(htmldir) cat debian/documentation-files | xargs cp --parents --target-directory=$(htmldir) find doc libs -name doc | xargs -n1 cp --archive --parents --target-directory=$(htmldir) rm -rf $(htmldir)/boost dh_link -plibboost$(PKGVERSION)-doc \ usr/include/boost \ usr/share/doc/libboost$(PKGVERSION)-doc/HTML/boost # provide a constant symlink to the latest documents and examples dh_link -plibboost$(PKGVERSION)-doc \ usr/share/doc/libboost$(PKGVERSION)-doc/HTML \ usr/share/doc/libboost-doc/HTML dh_link -plibboost$(PKGVERSION)-doc \ usr/share/doc/libboost$(PKGVERSION)-doc/examples \ usr/share/doc/libboost-doc/examples dh_link -plibboost-python$(PKGVERSION)-dev \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_python-py27.a \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_python.a dh_link -plibboost-python$(PKGVERSION)-dev \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_python-py27.so \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_python.so dh_link -plibboost-mpi-python$(PKGVERSION)-dev \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_mpi_python-py27.a \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_mpi_python.a dh_link -plibboost-mpi-python$(PKGVERSION)-dev \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_mpi_python-py27.so \ usr/lib/$(DEB_HOST_MULTIARCH)/libboost_mpi_python.so dh_installexamples -plibboost$(PKGVERSION)-doc debian/boost-build-examples mkdir -p $(exampledir) cat debian/example-files | xargs cp -a --parents --target-directory=$(exampledir) find $(exampledir) -type f | xargs chmod 644 # package libboost-mpi-python$(SOVERSION) dh_install -plibboost-mpi-python$(SOVERSION) for pyver in $(pyversions); do \ pyid=`echo $$pyver | tr -d .`; \ dh_install -plibboost-mpi-python$(SOVERSION) libs/mpi/build/__init__.py usr/lib/python$$pyver/site-packages/boost; \ dh_installdirs -plibboost-mpi-python$(SOVERSION) usr/lib/python$$pyver/site-packages/boost; \ cp stage/lib/mpi-py$$pyid.so debian/libboost-mpi-python$(SOVERSION)/usr/lib/python$$pyver/site-packages/boost/mpi.so || true; \ done cd libs/python/pyste/install && python setup.py install --no-compile --prefix=$(pyste_prefix) --install-lib=$(pyste_prefix)/share/pyshared mv $(pyste_prefix)/bin/pyste.py $(pyste_prefix)/bin/pyste dh_installman -plibboost-python$(PKGVERSION)-dev debian/pyste.1 dh_install override_dh_strip: ifeq ($(JUST_MPI),no) dh_strip --dbg-package=libboost$(PKGVERSION)-dbg -X"-d-" else dh_strip -X"-d-" endif # set the number of build jobs ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) JOBS := -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) endif version_full = $(shell dpkg-parsechangelog | grep Version | cut -d' ' -f2) version_upstream = $(shell echo $(version_full) | cut -d'-' -f1) version_major = $(shell echo $(version_upstream) | cut -d'.' -f1,2) PKGVERSION = $(version_major) SOVERSION = $(version_upstream) # Function to map Boost component name to set of shared library names # Input: Boost component name # Return: shared library names for the given Boost library boost_lib = $(if $(boost_lib_$(1)), $(boost_lib_$(1)), $(1)) # Function to map Boost component name to set of suffixes for the library # Input: Boost component name # Return: suffixes for the given Boost component boost_suffixes = $(if $(boost_suffixes_$(1)), $(boost_suffixes_$(1)),"") # Helpers to make basic and decorated library names # Input: library, variant, suffix # Return: base library filename for short or full name mk_base_name = usr/lib/$(DEB_HOST_MULTIARCH)/libboost_$(subst -,_,$(1))$(2)$(3) # Input: component, variant # Return: package name for shared library or development mk_pkg_lib = libboost$(if $(findstring -d,$(2)),$(PKGVERSION)-dbg,-$(1)$(SOVERSION)) mk_pkg_dev = libboost$(if $(findstring -d,$(2)),$(PKGVERSION)-dbg,-$(1)$(PKGVERSION)-dev) # Helpers to generate debhelper input filenames. # Input: component, variant # Return: prefix to debhelper filenames mk_deb_lib = debian/$(call mk_pkg_lib,$(1),$(2)) mk_deb_dev = debian/$(call mk_pkg_dev,$(1),$(2)) # Helpers that update debhelper .install or .links files # Input: component, library, variant, suffix # Output: none mk_so_files = $(shell echo debian/tmp/$(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) >> $(call mk_deb_lib,$(1),$(3)).install) mk_a_files = $(shell echo debian/tmp/$(call mk_base_name,$(2),$(3),$(4)).a >> $(call mk_deb_dev,$(1),$(3)).install) mk_ln_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3),$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links) # Specify the type of files/links to install. # Special cases first, then general rule boost_filetypes_coroutine = a boost_filetypes_exception = a boost_filetypes_test_exec_monitor = a boost_filetypes = $(if $(boost_filetypes_$(1)), $(boost_filetypes_$(1)),a so ln) # Function that updates debhelper files for a given library variant # Input: component, library, variant, suffix # Output: none mk_files = $(foreach fn,$(call boost_filetypes,$(2)),$(call mk_$(fn)_files,$(1),$(2),$(3),$(4))) # helpers to make and install lintian override files # Input: package, override add_override = echo $(1): $(2) >> debian/$(1).lintian-overrides; # Input: override add_dbg_override = $(call add_override,libboost$(PKGVERSION)-dbg,$(1)) add_dev_override = $(call add_override,libboost$(PKGVERSION)-dev,$(1)) add_doc_override = $(call add_override,libboost$(PKGVERSION)-doc,$(1)) # Input: component, variant, lintian-warning add_lib_override = $(call add_override,$(call mk_pkg_lib,$(1),$(2)),$(3)) add_libdev_override = $(call add_override,$(call mk_pkg_dev,$(1),$(2)),$(3)) # Input: package-name-base, versioned-package-name cp_debhelper = for s in doc-base examples postinst prerm README.Debian; do \ if test -f debian/$(1).$$s; then cp -f debian/$(1).$$s debian/$(2).$$s; fi; done # Function that updates debhelper files for all library variants shipped. mk_debhelper_files = \ $(call add_dbg_override,package-name-doesnt-match-sonames) \ $(call add_dbg_override,non-dev-pkg-with-shlib-symlink) \ $(call add_dbg_override,dbg-package-missing-depends) \ $(call add_dev_override,description-synopsis-starts-with-a-capital-letter) \ $(call add_dev_override,spelling-error-in-description) \ $(call add_dev_override,extra-license-file) \ $(call add_doc_override,description-synopsis-starts-with-a-capital-letter) \ $(call add_doc_override,extra-license-file) \ $(call add_libdev_override,python,,description-synopsis-starts-with-a-capital-letter) \ $(foreach l, $(boost_libs), \ echo "making debhelper files for $(l)..."; \ $(call add_lib_override,$(l),,package-name-doesnt-match-sonames) \ $(foreach ll, $(call boost_lib,$(l)), \ $(foreach suf, $(call boost_suffixes,$(l)), \ $(call mk_files,$(l),$(ll),,$(suf)) \ ) \ ) \ ) TOOLSET_CONFIG = 'using gcc : : : "$(CPPFLAGS)" "$(CFLAGS)" "$(CXXFLAGS)" "$(LDFLAGS)" ;' BUILD_CONTEXT = yes BUILD_LONG_DOUBLE = yes DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) ifeq ($(DEB_BUILD_ARCH), alpha) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), arm) BUILD_LONG_DOUBLE = no else ifeq ($(DEB_BUILD_ARCH), armel) BUILD_LONG_DOUBLE = no else ifeq ($(DEB_BUILD_ARCH), armhf) BUILD_LONG_DOUBLE = no else ifeq ($(DEB_BUILD_ARCH), arm64) BUILD_LONG_DOUBLE = no BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), hppa) BUILD_LONG_DOUBLE = no BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), ia64) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), m68k) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), mips) BUILD_LONG_DOUBLE = no else ifeq ($(DEB_BUILD_ARCH), mipsel) BUILD_LONG_DOUBLE = no else ifeq ($(DEB_BUILD_ARCH), mips64) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), mips64el) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), powerpcspe) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), ppc64) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), ppc64el) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), s390) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), s390x) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), sh4) BUILD_LONG_DOUBLE = no BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), sparc) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), sparc64) BUILD_CONTEXT = no else ifeq ($(DEB_BUILD_ARCH), x32) BUILD_CONTEXT = no endif ifeq ($(BUILD_CONTEXT), yes) boost_libs += context coroutine else JAM_WITHOUT += --without-context --without-coroutine endif ifeq ($(BUILD_LONG_DOUBLE), yes) boost_lib_math += $(boost_lib_math_long_double) else JAM_OPT += --disable-long-double endif exampledir = debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/examples htmldir = debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/HTML pyste_prefix = $(CURDIR)/debian/python-pyste/usr bjam = $(CURDIR)/bjam bbv2dir = $(CURDIR)/tools/build/v2 # With --ignore-site-config, can probably drop Build-Conflicts on boost-build. JAM = $(bjam) $(JOBS) -d2 $(JAM_OPT) --layout=system --ignore-site-config --user-config=$(CURDIR)/user-config.jam debug-symbols=on $(bjam): ./bootstrap.sh --with-icu=/usr --prefix=$(CURDIR)/debian/tmp/usr \ --libdir=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) \ || cat bootstrap.log debian/bjam.1: $(bjam) help2man --name 'software build tool' --no-info ./bjam > $@ user-config.jam: echo $(TOOLSET_CONFIG) > $@ echo $(MPI_CONFIG) >> $@ for pyver in $(filter-out $(shell pyversions -dv),$(pyversions)); do \ echo "using python : $$pyver : /usr ;" >> $@; \ done $(filtered_files): % : %.in sed -e 's/@PKGVERSION@/$(PKGVERSION)/g' < $< > $@ clean-debhelper: rm -rf debian/*.install rm -rf debian/*.links rm -rf debian/*.lintian-overrides # Make all the generated debhelper files. make-debhelper: clean-debhelper $(filtered_files) @$(call mk_debhelper_files) @$(call cp_debhelper,libboost-dbg,libboost$(PKGVERSION)-dbg) @$(call cp_debhelper,libboost-dev,libboost$(PKGVERSION)-dev) @$(call cp_debhelper,libboost-doc,libboost$(PKGVERSION)-doc) @$(call cp_debhelper,libboost-python-dev,libboost-python$(PKGVERSION)-dev) @$(call cp_debhelper,libboost-mpi-python-dev,libboost-mpi-python$(PKGVERSION)-dev) debian/control.in0000664000000000000000000015376112254342300011210 0ustar Source: boost-mpi-source1.54 Homepage: http://www.boost.org/ Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Boost Team Uploaders: Steve M. Robbins Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.1~), dctrl-tools, zlib1g-dev, libbz2-dev, libicu-dev, libboost-serialization1.54-dev, libboost-python1.54-dev, mpi-default-dev, bison, flex, docbook-to-man, help2man, xsltproc, doxygen, dh-python, python, python-all-dev, python3, python3-all-dev (>= 3.1) Build-Conflicts: libopenmpi-dev (= 1.3.2-2) Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-boost/boost/trunk/ Vcs-Svn: svn://anonscm.debian.org/pkg-boost/boost/trunk Standards-Version: 3.9.4 Package: libboost1.54-dbg Architecture: any Multi-Arch: same Section: debug Priority: extra Depends: ${misc:Depends}, ${shlibs:Depends}, libboost1.54-dev (= ${binary:Version}) Conflicts: libboost1.42-dbg, libboost1.46-dbg, libboost1.48-dbg, libboost1.49-dbg, libboost1.50-dbg, libboost1.52-dbg, libboost1.53-dbg Description: Boost C++ Libraries with debug symbols This package forms part of the Boost C++ Libraries collection. . These libraries are built with debug symbols. They are useful to debug programs which use Boost. These must be used also at build/link time. Package: libboost1.54-dev Architecture: any Section: libdevel Depends: ${misc:Depends}, ${shlibs:Depends}, libstdc++-4.8-dev | libstdc++-dev Suggests: libboost1.54-doc, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev, libboost1.54-tools-dev, libmpfrc++-dev, libntl-dev Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev, libboost1.49-dev, libboost1.50-dev, libboost1.52-dev, libboost1.53-dev Description: Boost C++ Libraries development files The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This package provides headers for all Boost libraries. . Extended precision arithmetic package libmpfrc++-dev or libntl-dev is required to use the Boost.Multiprecision wrapping of the respective library. . For the following subprojects separate packages exist: chrono, date-time, exception filesystem, graph, iostreams, locale, math, mpi, program_options, python, regex, serialization, signals, system, test, thread, timer, and wave. Package: libboost1.54-tools-dev Architecture: any Multi-Arch: foreign Section: libdevel Depends: ${misc:Depends}, ${shlibs:Depends} Suggests: xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2), default-jdk (>= 1.4), fop (>= 0.94) Conflicts: bjam, boost-build, libboost1.49-dev, libboost1.53-tools-dev Replaces: bjam, boost-build, libboost1.49-dev, libboost1.53-dev, libboost1.53-tools-dev Description: Boost C++ Libraries development tools The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This package provides the auxiliary tools bjam, Boost.Build, bcp, inspect, boostbook and quickbook. Package: libboost1.54-all-dev Architecture: any #Not until python-dev is multiarch co-installable #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev, libboost1.54-tools-dev, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine1.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log1.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev Description: Boost C++ Libraries development files (ALL) The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This metapackage provides the complete Boost development environment, including all separately-packaged libraries. Package: libboost1.54-doc Homepage: http://www.boost.org/libs/ Architecture: all Section: doc Depends: ${misc:Depends} Suggests: libboost1.54-dev (>= ${source:Version}) Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc Description: Boost.org libraries documentation The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This is documentation for the boost libraries in HTML format. Some pages point to header files provided in the corresponding -dev package, so it is suggested to install the latter as well. Package: libboost-atomic1.54.0 Homepage: http://www.boost.org/libs/atomic/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: atomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking. Package: libboost-atomic1.54-dev Homepage: http://www.boost.org/libs/atomic/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-atomic1.54.0 (= ${binary:Version}) Description: atomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking. Conflicts: libboost-atomic1.53-dev Package: libboost-chrono1.54.0 Homepage: http://www.boost.org/libs/chrono/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ representation of time duration, time point, and clocks This package forms part of the Boost C++ Libraries collection. . The Boost.Chrono library provides: . * A means to represent time durations: managed by the generic duration class.Examples of time durations include days, minutes, seconds and nanoseconds, which can be represented with a fixed number of clock ticks per unit. All of these units of time duration are united with a generic interface by the duration facility. * A type for representing points in time: time_point. A time_point represents an epoch plus or minus a duration. The library leaves epochs unspecified. A time_point is associated with a clock. * Several clocks, some of which may not be available on a particular platform: system_clock, steady_clock and high_resolution_clock. A clock is a pairing of a time_point and duration, and a function which returns a time_point representing now. . To make the timing facilities more generally useful, Boost.Chrono provides a number of clocks that are thin wrappers around the operating system's time APIs, thereby allowing the extraction of wall clock time, user CPU time, system CPU time spent by the process: . * process_real_cpu_clock, captures wall clock CPU time spent by the current process. * process_user_cpu_clock, captures user-CPU time spent by the current process. * process_system_cpu_clock, captures system-CPU time spent by the current process. * a tuple-like class process_cpu_clock, that captures real, user-CPU, and system-CPU process times together. * a thread_clock thread steady clock giving the time spent by the current thread (when supported by a platform). . Lastly, Boost.Chrono includes typeof registration for duration and time_point to permit using emulated auto with C++03 compilers. Package: libboost-chrono1.54-dev Homepage: http://www.boost.org/libs/chrono/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-chrono1.54.0 (= ${binary:Version}) Conflicts: libboost-chrono1.48-dev, libboost-chrono1.49-dev, libboost-chrono1.50-dev, libboost-chrono1.52-dev, libboost-chrono1.53-dev Description: C++ representation of time duration, time point, and clocks This package forms part of the Boost C++ Libraries collection. . The Boost.Chrono library provides: . * A means to represent time durations: managed by the generic duration class . Examples of time durations include days, minutes, seconds and nanoseconds, which can be represented with a fixed number of clock ticks per unit. All of these units of time duration are united with a generic interface by the duration facility. * A type for representing points in time: time_point. A time_point represents an epoch plus or minus a duration. The library leaves epochs unspecified. A time_point is associated with a clock. * Several clocks, some of which may not be available on a particular platform: system_clock, steady_clock and high_resolution_clock. A clock is a pairing of a time_point and duration, and a function which returns a time_point representing now. . To make the timing facilities more generally useful, Boost.Chrono provides a number of clocks that are thin wrappers around the operating system's time APIs, thereby allowing the extraction of wall clock time, user CPU time, system CPU time spent by the process: . * process_real_cpu_clock, captures wall clock CPU time spent by the current process. * process_user_cpu_clock, captures user-CPU time spent by the current process. * process_system_cpu_clock, captures system-CPU time spent by the current process. * A tuple-like class process_cpu_clock, that captures real, user-CPU, and system-CPU process times together. * A thread_clock thread steady clock giving the time spent by the current thread (when supported by a platform). . Lastly, Boost.Chrono includes typeof registration for duration and time_point to permit using emulated auto with C++03 compilers. Package: libboost-context1.54.0 Homepage: http://www.boost.org/libs/context/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Context is a foundational library that provides a sort of cooperative multitasking on a single thread. By providing an abstraction of the current execution state in the current thread, including the stack (with local variables) and stack pointer, all registers and CPU flags, and the instruction pointer, a fcontext_t instance represents a specific point in the application's execution path. This is useful for building higher-level abstractions, like coroutines, cooperative threads (userland threads) or an equivalent to C# keyword yield in C++. Package: libboost-context1.54-dev Homepage: http://www.boost.org/libs/context/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-context1.54.0 (= ${binary:Version}) Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Context is a foundational library that provides a sort of cooperative multitasking on a single thread. By providing an abstraction of the current execution state in the current thread, including the stack (with local variables) and stack pointer, all registers and CPU flags, and the instruction pointer, a fcontext_t instance represents a specific point in the application's execution path. This is useful for building higher-level abstractions, like coroutines, cooperative threads (userland threads) or an equivalent to C# keyword yield in C++. Conflicts: libboost-context1.53-dev Package: libboost-coroutine1.54-dev Homepage: http://www.boost.org/libs/coroutine/ Architecture: any Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-context1.54-dev (= ${binary:Version}) Description: provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Coroutine provides templates for generalized subroutines which allow multiple entry points for suspending and resuming execution at certain locations. It preserves the local state of execution and allows re-entering subroutines more than once (useful if state must be kept across function calls). . Coroutines can be viewed as a language-level construct providing a special kind of control flow. . In contrast to threads, which are pre-emptive, coroutine switches are cooperative (programmer controls when a switch will happen). The kernel is not involved in the coroutine switches. . The implementation uses Boost.Context for context switching. Package: libboost-date-time1.54.0 Homepage: http://www.boost.org/libs/date_time/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: set of date-time libraries based on generic programming concepts This package forms part of the Boost C++ Libraries collection. . These libraries are intended to make programming with dates and times almost as simple and natural as programming with strings and integers. Package: libboost-date-time1.54-dev Homepage: http://www.boost.org/libs/date_time/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-date-time1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}) Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev, libboost-date-time1.49-dev, libboost-date-time1.50-dev, libboost-date-time1.52-dev, libboost-date-time1.53-dev Description: set of date-time libraries based on generic programming concepts This package forms part of the Boost C++ Libraries collection. . These libraries are intended to make programming with dates and times almost as simple and natural as programming with strings and integers. Package: libboost-exception1.54-dev Homepage: http://www.boost.org/libs/exception/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}) Description: library to help write exceptions and handlers This package forms part of the Boost C++ Libraries collection. . The purpose of Boost Exception is to ease the design of exception class hierarchies and to help write exception handling and error reporting code. Conflicts: libboost-exception1.50-dev, libboost-exception1.52-dev, libboost-exception1.53-dev Package: libboost-filesystem1.54.0 Homepage: http://boost.org/libs/filesystem/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: filesystem operations (portable paths, iteration over directories, etc) in C++ This package forms part of the Boost C++ Libraries collection. . The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories. The goal is to facilitate portable script-like operations from within C++ programs. Package: libboost-filesystem1.54-dev Homepage: http://boost.org/libs/filesystem/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-filesystem1.54.0 (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}) Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev, libboost-filesystem1.49-dev, libboost-filesystem1.50-dev, libboost-filesystem1.52-dev, libboost-filesystem1.53-dev Description: filesystem operations (portable paths, iteration over directories, etc) in C++ This package forms part of the Boost C++ Libraries collection. . The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories. The goal is to facilitate portable script-like operations from within C++ programs. Package: libboost-graph1.54.0 Homepage: http://www.boost.org/libs/graph/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Suggests: graphviz Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . Graphs are mathematical abstractions that are useful for solving many types of problems in computer science. Consequently, these abstractions must also be represented in computer programs. A standardized generic interface for traversing graphs is of utmost importance to encourage reuse of graph algorithms and data structures. Package: libboost-graph1.54-dev Homepage: http://www.boost.org/libs/graph/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-graph1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-test1.54-dev (= ${binary:Version}) Conflicts: libboost-graph1.42-dev, libboost-graph1.46-dev, libboost-graph1.48-dev, libboost-graph1.49-dev, libboost-graph1.50-dev, libboost-graph1.52-dev, libboost-graph1.53-dev Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . Graphs are mathematical abstractions that are useful for solving many types of problems in computer science. Consequently, these abstractions must also be represented in computer programs. A standardized generic interface for traversing graphs is of utmost importance to encourage reuse of graph algorithms and data structures. Package: libboost-graph-parallel1.54.0 Homepage: http://www.boost.org/libs/graph_parallel/ Architecture: any #Not until mpi is multiarched #Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Suggests: graphviz Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL. Package: libboost-graph-parallel1.54-dev Homepage: http://www.boost.org/libs/graph_parallel/ Architecture: any #Not until mpi is multiarched #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-graph-parallel1.54.0 (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-test1.54-dev (= ${binary:Version}) Conflicts: libboost-graph-parallel1.42-dev, libboost-graph-parallel1.46-dev, libboost-graph-parallel1.48-dev, libboost-graph-parallel1.49-dev, libboost-graph-parallel1.50-dev, libboost-graph-parallel1.52-dev, libboost-graph-parallel1.53-dev Description: generic graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL. Package: libboost-iostreams1.54.0 Homepage: http://www.boost.org/libs/iostreams/ Architecture: any Multi-Arch: same Section: libs Priority: important Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Iostreams Library This package forms part of the Boost C++ Libraries collection. . Boost.Iostreams are a collection of concepts and a set of templates which turn models of these concepts into C++ standard library streams and stream buffers. Package: libboost-iostreams1.54-dev Homepage: http://www.boost.org/libs/iostreams/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-regex1.54-dev (= ${binary:Version}), libboost-iostreams1.54.0 (= ${binary:Version}) Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev, libboost-iostreams1.49-dev, libboost-iostreams1.50-dev, libboost-iostreams1.52-dev, libboost-iostreams1.53-dev Description: Boost.Iostreams Library development files This package forms part of the Boost C++ Libraries collection. . Boost.Iostreams are a collection of concepts and a set of templates which turn models of these concepts into C++ standard library streams and stream buffers. Package: libboost-locale1.54.0 Homepage: http://www.boost.org/libs/locale/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ facilities for localization This package forms part of the Boost C++ Libraries collection. . Boost.Locale gives powerful tools for development of cross platform localized software - the software that talks to user in its language. . * Correct case conversion, case folding and normalization. * Collation (sorting), including support for 4 Unicode collation levels. * Date, time, timezone and calendar manipulations, formatting and parsing, including transparent support for calendars other than Gregorian. * Boundary analysis for characters, words, sentences and line-breaks. * Number formatting, spelling and parsing. * Monetary formatting and parsing. * Powerful message formatting (string translation) including support for plural forms, using GNU catalogs. * Character set conversion. * Transparent support for 8-bit character sets like Latin1 * Support for char and wchar_t * Experimental support for C++0x char16_t and char32_t strings and streams. Package: libboost-locale1.54-dev Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-locale1.54.0 (= ${binary:Version}) Conflicts: libboost-locale1.48-dev, libboost-locale1.49-dev, libboost-locale1.50-dev, libboost-locale1.52-dev, libboost-locale1.53-dev Description: C++ facilities for localization This package forms part of the Boost C++ Libraries collection. . Boost.Locale gives powerful tools for development of cross platform localized software - the software that talks to user in its language. . * Correct case conversion, case folding and normalization. * Collation (sorting), including support for 4 Unicode collation levels. * Date, time, timezone and calendar manipulations, formatting and parsing, including transparent support for calendars other than Gregorian. * Boundary analysis for characters, words, sentences and line-breaks. * Number formatting, spelling and parsing. * Monetary formatting and parsing. * Powerful message formatting (string translation) including support for plural forms, using GNU catalogs. * Character set conversion. * Transparent support for 8-bit character sets like Latin1 * Support for char and wchar_t * Experimental support for C++0x char16_t and char32_t strings and streams. Package: libboost-log1.54.0 Homepage: http://www.boost.org/libs/log/ Architecture: any Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Description: C++ logging library This package forms part of the Boost C++ Libraries collection. . This library aims to make logging significantly easier for the application developer. It provides a wide range of out-of-the-box tools along with public interfaces for extending the library. The main goals of the library are: . * Simplicity. A small example code snippet should be enough to get the feel of the library and be ready to use its basic features. * Extensibility. A user should be able to extend functionality of the library for collecting and storing information into logs. * Performance. The library should have as little performance impact on the user's application as possible. Package: libboost-log1.54-dev Homepage: http://www.boost.org/libs/log/ Architecture: any Section: libdevel Depends: ${misc:Depends}, libboost-log1.54.0 (= ${binary:Version}), libboost1.54-dev (= ${binary:Version}), libboost-filesystem1.54-dev (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}), libboost-date-time1.54-dev (= ${binary:Version}), libboost-thread1.54-dev (= ${binary:Version}) Description: C++ logging library This package forms part of the Boost C++ Libraries collection. . This library aims to make logging significantly easier for the application developer. It provides a wide range of out-of-the-box tools along with public interfaces for extending the library. The main goals of the library are: . * Simplicity. A small example code snippet should be enough to get the feel of the library and be ready to use its basic features. * Extensibility. A user should be able to extend functionality of the library for collecting and storing information into logs. * Performance. The library should have as little performance impact on the user's application as possible. Package: libboost-math1.54.0 Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Math Library This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions. Package: libboost-math1.54-dev Homepage: http://www.boost.org/libs/math/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-math1.54.0 (= ${binary:Version}) Conflicts: libboost-math1.42-dev, libboost-math1.46-dev, libboost-math1.48-dev, libboost-math1.49-dev, libboost-math1.50-dev, libboost-math1.52-dev, libboost-math1.53-dev Description: Boost.Math Library development files This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions. Package: libboost-mpi1.54.0 Homepage: http://www.boost.org/doc/html/mpi.html Architecture: any #Not until mpi is multiarched. #Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ interface to the Message Passing Interface (MPI) This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. Package: libboost-mpi1.54-dev Homepage: http://www.boost.org/doc/html/mpi.html Architecture: any #Not until mpi is multiarched. #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-mpi1.54.0 (= ${binary:Version}), mpi-default-dev Suggests: libboost-graph1.54-dev Conflicts: libboost-mpi1.42-dev, libboost-mpi1.46-dev, libboost-mpi1.48-dev, libboost-mpi1.49-dev, libboost-mpi1.50-dev, libboost-mpi1.52-dev, libboost-mpi1.53-dev Description: C++ interface to the Message Passing Interface (MPI) This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. Package: libboost-mpi-python1.54.0 Homepage: http://www.boost.org/doc/html/mpi/python.html Architecture: any #Not until mpi & python are multiarch co-installable #Multi-Arch: same Section: python Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, mpi-default-bin Pre-Depends: ${misc:Pre-Depends} Suggests: python, python3 Breaks: ${python:Breaks} Conflicts: libboost-mpi-python1.40.0, libboost-mpi-python1.41.0, libboost-mpi-python1.42.0, libboost-mpi-python1.46.0, libboost-mpi-python1.46.1, libboost-mpi-python1.48.0, libboost-mpi-python1.49.0, libboost-mpi-python1.50.0, libboost-mpi-python1.52.0, libboost-mpi-python1.53.0 Description: C++ interface to the Message Passing Interface (MPI), Python Bindings This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. . This package provides Python Bindings to the C++ interface. . One of the python interpreter packages is required to use the bindings. Package: libboost-mpi-python1.54-dev Homepage: http://www.boost.org/doc/html/mpi/python.html Architecture: any #Not until mpi & python are multiarch co-installable #Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost-mpi1.54-dev (= ${binary:Version}), libboost-mpi-python1.54.0 (= ${binary:Version}) Conflicts: libboost-mpi-python1.42-dev, libboost-mpi-python1.46-dev, libboost-mpi-python1.48-dev, libboost-mpi-python1.49-dev, libboost-mpi-python1.50-dev, libboost-mpi-python1.52-dev, libboost-mpi-python1.53-dev Description: C++ interface to the Message Passing Interface (MPI), Python Bindings This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency. . This package provides Python Bindings to the C++ interface. Package: libboost-program-options1.54.0 Homepage: http://www.boost.org/libs/program_options/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: program options library for C++ This package forms part of the Boost C++ Libraries collection. . Library to let program developers obtain program options, that is (name, value) pairs from the user, via conventional methods such as command line and config file. Package: libboost-program-options1.54-dev Homepage: http://www.boost.org/libs/program_options/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-program-options1.54.0 (= ${binary:Version}) Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev, libboost-program-options1.49-dev, libboost-program-options1.50-dev, libboost-program-options1.52-dev, libboost-program-options1.53-dev Description: program options library for C++ This package forms part of the Boost C++ Libraries collection. . Library to let program developers obtain program options, that is (name, value) pairs from the user, via conventional methods such as command line and config file. Package: libboost-python1.54.0 Homepage: http://www.boost.org/libs/python/ Architecture: any Multi-Arch: same Section: python Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost.Python Library This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . One of the python interpreter packages is required to use the created extensions. Package: libboost-python1.54-dev Homepage: http://www.boost.org/libs/python/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-python1.54.0 (= ${binary:Version}), libpython-dev | libpython3-dev Suggests: libboost1.54-doc, python-pyste Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev, libboost-python1.49-dev, libboost-python1.50-dev, libboost-python1.52-dev, libboost-python1.53-dev Description: Boost.Python Library development files This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . This package also contains the pyste Boost.Python code generator that allows the user to specify classes and functions to be exported using a simple interface file, which following the Boost.Python's philosophy, is simple Python code. . This package allows development of a Python interface for all current versions of Python in Debian. Code using this library will need also one of the Python development packages. Package: python-pyste Homepage: http://www.boost.org/libs/python/ Architecture: all Section: python Depends: gccxml, ${python:Depends}, ${misc:Depends} Replaces: libboost-python1.54-dev (<< ${binary:Version}) Breaks: libboost-python1.54-dev (<< ${binary:Version}) Description: pyste Boost.Python code generator This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . This package only contains the pyste Boost.Python code generator that allows the user to specify classes and functions to be exported using a simple interface file, which following the Boost.Python's philosophy, is simple Python code. Package: libboost-random1.54.0 Homepage: http://www.boost.org/libs/random/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Boost Random Number Library This package forms part of the Boost C++ Libraries collection. . The Boost Random Number Library (Boost.Random for short) provides a variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution. Package: libboost-random1.54-dev Homepage: http://www.boost.org/libs/random/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-random1.54.0 (= ${binary:Version}) Conflicts: libboost-random1.42-dev, libboost-random1.46-dev, libboost-random1.48-dev, libboost-random1.49-dev, libboost-random1.50-dev, libboost-random1.52-dev, libboost-random1.53-dev Description: Boost Random Number Library This package forms part of the Boost C++ Libraries collection. . The Boost Random Number Library (Boost.Random for short) provides a variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution. Package: libboost-regex1.54.0 Homepage: http://www.boost.org/libs/regex/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: regular expression library for C++ This package forms part of the Boost C++ Libraries collection. . Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and awk, and the programming language perl, each of which make extensive use of regular expressions. Traditionally C++ users have been limited to the POSIX C APIs for manipulating regular expressions, and while regex does provide these APIs, they do not represent the best way to use the library. For example regex can cope with wide character strings, or search and replace operations (in a manner analogous to either sed or perl), something that traditional C libraries can not do. Package: libboost-regex1.54-dev Homepage: http://www.boost.org/libs/regex/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-regex1.54.0 (= ${binary:Version}), libicu-dev Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev, libboost-regex1.49-dev, libboost-regex1.50-dev, libboost-regex1.52-dev, libboost-regex1.53-dev Description: regular expression library for C++ This package forms part of the Boost C++ Libraries collection. . Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and awk, and the programming language perl, each of which make extensive use of regular expressions. Traditionally C++ users have been limited to the POSIX C APIs for manipulating regular expressions, and while regex does provide these APIs, they do not represent the best way to use the library. For example regex can cope with wide character strings, or search and replace operations (in a manner analogous to either sed or perl), something that traditional C libraries can not do. Package: libboost-serialization1.54.0 Homepage: http://www.boost.org/libs/serialization/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: serialization library for C++ This package forms part of the Boost C++ Libraries collection, containing the following functionalities: . * proper restoration of pointers to shared data * serialization of STL containers and other commonly used templates * data portability - streams of bytes created on one platform should be readable on any other * archive interface must be rich enough to permit the creation of an archive that presents serialized data as XML in a useful manner . Here, "serialization" means the reversible deconstruction of an arbitrary set of C++ data structures to a sequence of bytes. archive: to refer to a specific rendering of this stream of bytes. Package: libboost-serialization1.54-dev Homepage: http://www.boost.org/libs/serialization/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54.0 (= ${binary:Version}) Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev, libboost-serialization1.49-dev, libboost-serialization1.50-dev, libboost-serialization1.52-dev, libboost-serialization1.53-dev Description: serialization library for C++ This package forms part of the Boost C++ Libraries collection, containing the following functionalities: . * proper restoration of pointers to shared data * serialization of STL containers and other commonly used templates * data portability - streams of bytes created on one platform should be readable on any other * archive interface must be rich enough to permit the creation of an archive that presents serialized data as XML in a useful manner . Here, "serialization" means the reversible deconstruction of an arbitrary set of C++ data structures to a sequence of bytes. archive: to refer to a specific rendering of this stream of bytes. Package: libboost-signals1.54.0 Homepage: http://www.boost.org/libs/signals/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: managed signals and slots library for C++ This package forms part of the Boost C++ Libraries collection. . Signals represent callbacks with multiple targets, and are also called publishers or events in similar systems. Signals are connected to some set of slots, which are callback receivers (also called event targets or subscribers), which are called when the signal is "emitted." Package: libboost-signals1.54-dev Homepage: http://www.boost.org/libs/signals/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-signals1.54.0 (= ${binary:Version}) Conflicts: libboost-signals1.42-dev, libboost-signals1.46-dev, libboost-signals1.48-dev, libboost-signals1.49-dev, libboost-signals1.50-dev, libboost-signals1.52-dev, libboost-signals1.53-dev Description: managed signals and slots library for C++ This package forms part of the Boost C++ Libraries collection. . Signals represent callbacks with multiple targets, and are also called publishers or events in similar systems. Signals are connected to some set of slots, which are callback receivers (also called event targets or subscribers), which are called when the signal is "emitted." Package: libboost-system1.54.0 Homepage: http://www.boost.org/libs/system/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Operating system (e.g. diagnostics support) library This package forms part of the Boost C++ Libraries collection. . The Boost System library provides simple, light-weight error_code objects that encapsulate system-specific error code values, yet also provide access to more abstract and portable error conditions via error_condition objects. Because error_code objects can represent errors from sources other than the operating system, including user-defined sources, each error_code and error_condition has an associated error_category. Package: libboost-system1.54-dev Homepage: http://www.boost.org/libs/system/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-system1.54.0 (= ${binary:Version}) Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev, libboost-system1.49-dev, libboost-system1.50-dev, libboost-system1.52-dev, libboost-system1.53-dev Description: Operating system (e.g. diagnostics support) library This package forms part of the Boost C++ Libraries collection. . The Boost System library provides simple, light-weight error_code objects that encapsulate system-specific error code values, yet also provide access to more abstract and portable error conditions via error_condition objects. Because error_code objects can represent errors from sources other than the operating system, including user-defined sources, each error_code and error_condition has an associated error_category. Package: libboost-test1.54.0 Homepage: http://www.boost.org/libs/test/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: components for writing and executing test suites This package forms part of the Boost C++ Libraries collection. The library contains several components. . * Basic execution, error detection, and reporting facility. * Facilities to monitor program execution and produce error reports. * Unit test framework to simplify writing test cases. Package: libboost-test1.54-dev Homepage: http://www.boost.org/libs/test/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-test1.54.0 (= ${binary:Version}) Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev, libboost-test1.49-dev, libboost-test1.50-dev, libboost-test1.52-dev, libboost-test1.53-dev Description: components for writing and executing test suites This package forms part of the Boost C++ Libraries collection. The library contains several components. . * Basic execution, error detection, and reporting facility. * Facilities to monitor program execution and produce error reports. * Unit test framework to simplify writing test cases. Package: libboost-thread1.54.0 Homepage: http://www.boost.org/libs/thread/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: portable C++ multi-threading This package forms part of the Boost C++ Libraries collection. . Toolkit for writing C++ programs that execute as multiple, asynchronous, independent, threads-of-execution. Each thread has its own machine state including program instruction counter and registers. Package: libboost-thread1.54-dev Homepage: http://www.boost.org/libs/thread/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-atomic1.54-dev (= ${binary:Version}), libboost-chrono1.54-dev (= ${binary:Version}), libboost-date-time1.54-dev (= ${binary:Version}), libboost-system1.54-dev (= ${binary:Version}), libboost-thread1.54.0 (= ${binary:Version}) Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev, libboost-thread1.49-dev, libboost-thread1.50-dev, libboost-thread1.52-dev, libboost-thread1.53-dev Description: portable C++ multi-threading This package forms part of the Boost C++ Libraries collection. . Toolkit for writing C++ programs that execute as multiple, asynchronous, independent, threads-of-execution. Each thread has its own machine state including program instruction counter and registers. Package: libboost-timer1.54.0 Homepage: http://www.boost.org/libs/timer/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C++ wall clock and CPU process timers This package forms part of the Boost C++ Libraries collection. . Portable C++ timer classes that answer the question "How long does my C++ code take to run?" with as little as one #include and one additional line of code. . Class cpu_timer measures wall clock time, user CPU process time, and system CPU process time. Class auto_cpu_timer is a refinement of cpu_timer that automatically reports the elapsed times when an auto_cpu_timer object is destroyed. Package: libboost-timer1.54-dev Homepage: http://www.boost.org/libs/timer/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-timer1.54.0 (= ${binary:Version}) Conflicts: libboost-timer1.42-dev, libboost-timer1.46-dev, libboost-timer1.48-dev, libboost-timer1.49-dev, libboost-timer1.50-dev, libboost-timer1.52-dev, libboost-timer1.53-dev Description: C++ wall clock and CPU process timers This package forms part of the Boost C++ Libraries collection. . Portable C++ timer classes that answer the question "How long does my C++ code take to run?" with as little as one #include and one additional line of code. . Class cpu_timer measures wall clock time, user CPU process time, and system CPU process time. Class auto_cpu_timer is a refinement of cpu_timer that automatically reports the elapsed times when an auto_cpu_timer object is destroyed. Package: libboost-wave1.54.0 Homepage: http://www.boost.org/libs/wave/ Architecture: any Multi-Arch: same Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: C99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL). Package: libboost-wave1.54-dev Homepage: http://www.boost.org/libs/wave/ Architecture: any Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, libboost1.54-dev (= ${binary:Version}), libboost-serialization1.54-dev (= ${binary:Version}), libboost-wave1.54.0 (= ${binary:Version}), libboost-filesystem1.54-dev (= ${binary:Version}) Conflicts: libboost-wave1.42-dev, libboost-wave1.46-dev, libboost-wave1.48-dev, libboost-wave1.49-dev, libboost-wave1.50-dev, libboost-wave1.52-dev, libboost-wave1.53-dev Description: C99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL). debian/rtupdate0000664000000000000000000000174311701230712010742 0ustar #! /bin/sh # # Update link-library symlinks after a Python default runtime change set -e die() { echo "$@" >&2 exit 1 } update_linklibs() { py=$1 suf=$2 cd /usr/lib for base in libboost_python libboost_mpi_python; do target=${base}-${py}.${suf} link=${base}.${suf} test -e $target && ln -s -f $target $link || rm -f $link done } remove_linklibs() { suf=$1 cd /usr/lib for thread in "" -mt; do rm -f libboost_python${thread}.${suf} rm -f libboost_mpi_python${thread}.${suf} done } rtupdate() { case "$1" in python*) py=py`echo ${1#python} | tr -d .` ;; *) remove ; return ;; esac update_linklibs $py a update_linklibs $py so } remove() { remove_linklibs a remove_linklibs so } action="$1" shift case "$action" in pre-rtupdate) ;; post-rtupdate) ;; rtupdate) rtupdate $2 ;; remove) remove ;; *) die "$0 called with unknown argument '$action'" ;; esac debian/generate-docfiles-list.py0000775000000000000000000000603612164334732014110 0ustar #! /usr/bin/python import os, re, sys from subprocess import call, check_call def extract_tar(tarfile,rootdir): """Extract files from a tar archive. Arguments: tarfile -- file name of tar archive rootdir -- directory into which the archive is extracted """ cmd = ["tar","--extract"] if tarfile.endswith(".gz"): cmd.append("--gzip") elif tarfile.endswith(".bz2"): cmd.append("--bzip") cmd.append("--file") cmd.append(os.path.abspath(tarfile)) check_call(cmd, cwd=rootdir) def wget_localhost_files(serverbase,tempdir): """Use wget to obtain files from localhost server. server -- root of file tree on http://localhost tempdir -- directory into which the files are placed """ cmd = ["wget", "--quiet", "--recursive", "--no-parent", "--domains=localhost", "http://localhost/" + serverbase] retcode = call(cmd, cwd=tempdir) if not(retcode == 0 or retcode == 8): raise RuntimeError("wget failed") def find_file_root(dirname,filename): """Recursively search the dir for a file.""" while 1: #print "Considering " + dirname if not os.path.isdir(dirname): return None files = os.listdir(dirname) if len(files) == 1: dirname = os.path.abspath(os.path.join(dirname,files[0])) else: if filename in files: return dirname return None def list_doc_files(rootdir,src_rootdir): """List files comprising the Boost documentation tree. Returns list of filenames, relative to given rootdir, that make up the Boost documentation. This is all files that: (a) are not in subdir $rootdir/boost AND (b) endswith .html or .htm OR is a file in $src_rootdir """ doc_files = [] for dirpath, dirs, files in os.walk(rootdir): if dirpath == rootdir: dirs.remove("boost") for filename in files: #print "Considering: ", filename filepath = os.path.abspath(os.path.join(dirpath,filename)) filepath = filepath.replace(rootdir,"",1) if filepath.startswith("/"): filepath = filepath[1:] keep = filename.endswith(".html") or \ filename.endswith(".htm") or \ os.path.exists(os.path.join(src_rootdir,filename)) if keep: doc_files.append(filepath) #print filepath return doc_files def main(): if (len(sys.argv) != 3): print "Usage: %s tarfile boost_x_y_z" % sys.argv[0] return 1 tarfile, path = sys.argv[1:3] tar_extract_root = "/home/steve/public_html" url_root = "~steve/" + path + "/index.html" extract_tar(tarfile, tar_extract_root) wget_localhost_files(url_root, "/tmp") boost_dir = find_file_root("/tmp/localhost", "boost") files = list_doc_files(boost_dir, os.path.join(tar_extract_root,path)) files.sort() for f in files: print f main() debian/patches/0000775000000000000000000000000012254311137010616 5ustar debian/patches/hurd-clock-gettime.patch0000664000000000000000000000130312166072674015337 0ustar From: Samuel Thibault (resent from Samuel Thibault ) Description: boost1.54 currently FTBFS on hurd-i386 because it doesn't know hurd-i386 has clock_gettime. hurd-i386 does not define _POSIX_TIMERS because it does not have timer_create & co yet, but it does have clock_gettime, thus the attached patch. Bug: 714847 --- boost1.54-1.54.0.orig/libs/log/src/timestamp.cpp +++ boost1.54-1.54.0/libs/log/src/timestamp.cpp @@ -196,7 +196,7 @@ #endif // _WIN32_WINNT >= 0x0600 -#elif defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0 +#elif (defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0) || defined(__GNU__) BOOST_LOG_API int64_t duration::milliseconds() const { debian/patches/eglibc-long-long.patch0000664000000000000000000000236612254311137014765 0ustar Description: Assume that glibc >= 2.17 has int64_t support. eglibc 2.18 drops __GLIBC_HAVE_LONG_LONG, as it's assumed to be supported everywhere. Origin: upstream, https://svn.boost.org/trac/boost/changeset/84950?format=diff&new=84950 Bug: https://svn.boost.org/trac/boost/ticket/8731 Index: boost1.54-1.54.0/boost/cstdint.hpp =================================================================== --- boost1.54-1.54.0.orig/boost/cstdint.hpp 2013-12-16 00:19:30.324631260 +1100 +++ boost1.54-1.54.0/boost/cstdint.hpp 2013-12-16 00:19:30.324631260 +1100 @@ -41,7 +41,10 @@ // so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG. // See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990 // -#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG)) +#if defined(BOOST_HAS_STDINT_H) \ + && (!defined(__GLIBC__) \ + || defined(__GLIBC_HAVE_LONG_LONG) \ + || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17))))) // The following #include is an implementation artifact; not part of interface. # ifdef __hpux debian/patches/002-date-time.patch0000664000000000000000000000106512166121634014014 0ustar --- 1_54_0/boost/date_time/local_time/custom_time_zone.hpp (revision 84947) +++ 1_54_0/boost/date_time/local_time/custom_time_zone.hpp (revision 84948) @@ -64,7 +64,7 @@ //! True if zone uses daylight savings adjustments virtual bool has_dst() const { - return (dst_calc_rules_); //if calc_rule is set the tz has dst + return (bool) dst_calc_rules_; //if calc_rule is set the tz has dst } //! Local time that DST starts -- NADT if has_dst is false virtual posix_time::ptime dst_local_start_time(gregorian::greg_year y) const debian/patches/mpi-allocator-c++0x.patch0000664000000000000000000000130511711141003015205 0ustar Description: Fix include of on gcc < 4.6.3 Workaround proposed in boost Trac ticket to allow using -std=c++0x with gcc 4.6. It turns out to be a gcc bug that is fixed for gcc 4.6.3 and 4.7. Author: Petar Marendic Bug: 639862 Forwarded: https://svn.boost.org/trac/boost/ticket/5538 Boost 1.49 status: open --- boost1.46-1.46.1.orig/boost/mpi/allocator.hpp +++ boost1.46-1.46.1/boost/mpi/allocator.hpp @@ -170,6 +170,12 @@ new ((void *)p) T(val); } + /* Default construct a value of type T at the location referenced by p. */ + void construct(pointer p) + { + new ((void *)p) T(); + } + /** Destroy the object referenced by @c p. */ void destroy(pointer p) { debian/patches/fix-ftbfs-python-3.3.patch0000664000000000000000000000164212122253370015350 0ustar Description: python3.3 has an extra multiarch include location Author: Dmitrijs Ledkovs Last-Update: 2012-10-26 Forwarded: no Index: b/tools/build/v2/tools/python.jam =================================================================== --- a/tools/build/v2/tools/python.jam +++ b/tools/build/v2/tools/python.jam @@ -548,7 +548,9 @@ } else { - includes ?= $(prefix)/include/python$(version) ; + python_includes = [ shell-cmd "printf `python$(version) -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_inc());'`" ] ; + python_platincludes = [ shell-cmd "printf `python$(version) -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_inc(plat_specific=1));'`" ] ; + includes ?= $(python_includes) $(python_platincludes) ; local lib = $(exec-prefix)/lib ; libraries ?= $(lib)/python$(version)/config $(lib) ; debian/patches/pythonid.patch0000664000000000000000000000354112071212702013473 0ustar Description: Fix jam option --python-buildid Author: Steve Robbins Forwarded: https://svn.boost.org/trac/boost/ticket/6286 Boost 1.52: Not applied --- boost1.52-1.52.0.orig/boostcpp.jam +++ boost1.52-1.52.0/boostcpp.jam @@ -99,14 +99,6 @@ BUILD_ID = [ regex.replace $(build-id) "[*\\/:.\"\' ]" _ ] ; } -# Python build id (for Python libraries only). -python-id = [ option.get "python-buildid" ] ; -if $(python-id) -{ - PYTHON_ID = [ regex.replace $(python-id) [*\\/:.\"\'] _ ] ; -} - - ################################################################################ # # 1. 'tag' function adding decorations suitable to the properties if versioned --- boost1.52-1.52.0.orig/libs/mpi/build/Jamfile.v2 +++ boost1.52-1.52.0/libs/mpi/build/Jamfile.v2 @@ -8,6 +8,8 @@ # Authors: Douglas Gregor # Andrew Lumsdaine +import option ; +import regex ; import mpi ; import indirect ; import python ; @@ -24,6 +26,13 @@ @$(__name__).tag ; +# Python build id (only for Python libraries) +python-id = [ option.get "python-buildid" ] ; +if $(python-id) +{ + PYTHON_ID = [ regex.replace $(python-id) "[*\\/:.\"\']" "_" ] ; +} + rule tag ( name : type ? : property-set ) { local result = $(name) ; --- boost1.52-1.52.0.orig/libs/python/build/Jamfile.v2 +++ boost1.52-1.52.0/libs/python/build/Jamfile.v2 @@ -2,6 +2,8 @@ # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +import option ; +import regex ; import os ; import indirect ; import modules ; @@ -30,6 +32,14 @@ ; } +# Python build id (only for Python libraries) +python-id = [ option.get "python-buildid" ] ; +if $(python-id) +{ + PYTHON_ID = [ regex.replace $(python-id) "[*\\/:.\"\']" "_" ] ; +} + + rule find-py3-version { local versions = [ feature.values python ] ; debian/patches/hppa-long-double-config.patch0000664000000000000000000000146612246714465016262 0ustar Description: Fix definition of BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS for hppa Author: John David Anglin Forwarded: no Reviewed-by: Steve Robbins --- boost1.54-1.54.0.orig/boost/math/tools/config.hpp +++ boost1.54-1.54.0/boost/math/tools/config.hpp @@ -24,7 +24,8 @@ #include #if (defined(__CYGWIN__) || defined(__FreeBSD__) || defined(__NetBSD__) \ - || (defined(__hppa) && !defined(__OpenBSD__)) || (defined(__NO_LONG_DOUBLE_MATH) && (DBL_MANT_DIG != LDBL_MANT_DIG))) \ + || (defined(__hppa) && !defined(__OpenBSD__) && !defined(__linux__)) \ + || (defined(__NO_LONG_DOUBLE_MATH) && (DBL_MANT_DIG != LDBL_MANT_DIG))) \ && !defined(BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS) # define BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS #endif debian/patches/chrono-duration.patch0000664000000000000000000000440612122756502014761 0ustar Description: Fix conflict between chrono/duration.hpp and apache2/httpd.h The former defines a type named "CR" while the latter #defines CR. Author: Kirill Spitsin Bug: 703325 Forwarded: no --- boost1.53-1.53.0.obsolete.0.932490394234076.orig/boost/chrono/duration.hpp +++ boost1.53-1.53.0.obsolete.0.932490394234076/boost/chrono/duration.hpp @@ -566,9 +566,9 @@ >::type operator*(const duration& d, const Rep2& s) { - typedef typename common_type::type CR; - typedef duration CD; - return CD(CD(d).count()*static_cast(s)); + typedef typename common_type::type CRRRRR; + typedef duration CD; + return CD(CD(d).count()*static_cast(s)); } template @@ -595,10 +595,10 @@ >::type operator/(const duration& d, const Rep2& s) { - typedef typename common_type::type CR; - typedef duration CD; + typedef typename common_type::type CRRRRR; + typedef duration CD; - return CD(CD(d).count()/static_cast(s)); + return CD(CD(d).count()/static_cast(s)); } template @@ -620,10 +620,10 @@ >::type operator/(const Rep1& s, const duration& d) { - typedef typename common_type::type CR; - typedef duration CD; + typedef typename common_type::type CRRRRR; + typedef duration CD; - return static_cast(s)/CD(d).count(); + return static_cast(s)/CD(d).count(); } #endif // Duration % @@ -636,10 +636,10 @@ >::type operator%(const duration& d, const Rep2& s) { - typedef typename common_type::type CR; - typedef duration CD; + typedef typename common_type::type CRRRRR; + typedef duration CD; - return CD(CD(d).count()%static_cast(s)); + return CD(CD(d).count()%static_cast(s)); } template debian/patches/boost-1.54.0-thread-link_atomic.patch0000664000000000000000000000455512211772515017261 0ustar Description: Link Boost.Thread with Boost.Atomic if necessary At compile time, discover whether Boost.Thread needs Boost.Atomic by testing whether BOOST_ATOMIC_FLAG_LOCK_FREE is defined. If not, set up linking of libboost_atomic.so.1.54.0. Patch obtained from upstream bug tracker. Origin: https://svn.boost.org/trac/boost/attachment/ticket/9041/boost-1.54.0-thread-link_atomic.patch Author: Petr Machata Reviewed-by: Steve Robbins Bug: 721577 Forwarded: https://svn.boost.org/trac/boost/ticket/9041 diff -Nurp boost_1_54_0/libs/thread/build/has_atomic_flag_lockfree_test.cpp boost_1_54_0.pm/libs/thread/build/has_atomic_flag_lockfree_test.cpp --- boost_1_54_0/libs/thread/build/has_atomic_flag_lockfree_test.cpp 1970-01-01 01:00:00.000000000 +0100 +++ boost_1_54_0.pm/libs/thread/build/has_atomic_flag_lockfree_test.cpp 2013-08-23 19:51:52.706329968 +0200 @@ -0,0 +1,14 @@ +// Copyright (c) 2013, Petr Machata, Red Hat Inc. +// +// Use modification and distribution are subject to the boost Software +// License, Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt). + +#include "../../../boost/atomic.hpp" +#include "../../../boost/static_assert.hpp" + +int +main(int argc, char *argv[]) +{ + BOOST_STATIC_ASSERT(BOOST_ATOMIC_FLAG_LOCK_FREE); + return 0; +} diff -Nurp boost_1_54_0/libs/thread/build/Jamfile.v2 boost_1_54_0.pm/libs/thread/build/Jamfile.v2 --- boost_1_54_0/libs/thread/build/Jamfile.v2 2013-06-15 12:35:45.000000000 +0200 +++ boost_1_54_0.pm/libs/thread/build/Jamfile.v2 2013-08-23 19:52:30.018613408 +0200 @@ -36,6 +36,7 @@ import os ; import feature ; import indirect ; import path ; +import configure ; project boost/thread : source-location ../src @@ -140,6 +141,8 @@ local rule default_threadapi ( ) feature.feature threadapi : pthread win32 : propagated ; feature.set-default threadapi : [ default_threadapi ] ; +exe has_atomic_flag_lockfree : ../build/has_atomic_flag_lockfree_test.cpp ; + rule tag ( name : type ? : property-set ) { local result = $(name) ; @@ -248,6 +251,12 @@ rule requirements ( properties * ) { local result ; + if ! [ configure.builds has_atomic_flag_lockfree + : $(properties) : "lockfree boost::atomic_flag" ] + { + result += /boost/atomic//boost_atomic ; + } + if pthread in $(properties) { result += BOOST_THREAD_POSIX ; debian/patches/001-coroutine.patch0000664000000000000000000000045412166121627014154 0ustar --- 1_54_0/libs/coroutine/build/Jamfile.v2 (revision 84946) +++ 1_54_0/libs/coroutine/build/Jamfile.v2 (revision 84947) @@ -40,7 +40,7 @@ : detail/standard_stack_allocator_posix.cpp ; -explicit yield_sources ; +explicit allocator_sources ; lib boost_coroutine : allocator_sources debian/patches/85160.patch0000664000000000000000000002611412233371232012325 0ustar Description: BOOST_LCAST_HAS_INT128 defined in 32-bit machine using gcc BOOST_LCAST_HAS_INT128 defined in lexical_cast.hpp only considered gcc version > 4.7, but this will fail in 32-bit machines as there's no SIZEOF_INT128 defined, so the #ifdef thing below just fails to lookup "boost::int128_type". Author: Laszlo Boszormenyi (GCS) Bug-Debian: http://bugs.debian.org/727750 Origin: upstream, https://svn.boost.org/trac/boost/changeset/85160?format=diff&new=85160 Bug: https://svn.boost.org/trac/boost/ticket/8790 Last-Update: 2013-10-26 --- --- boost1.54-1.54.0.orig/boost/lexical_cast.hpp +++ boost1.54-1.54.0/boost/lexical_cast.hpp @@ -69,11 +69,6 @@ throw_exception(bad_lexical_cast(typeid(Source), typeid(Target))) #endif -#if (defined(BOOST_LCAST_HAS_INT128) && !defined(__GNUC__)) || GCC_VERSION > 40700 -#define BOOST_LCAST_HAS_INT128 -#endif - - namespace boost { // exception used to indicate runtime lexical_cast failure @@ -316,7 +311,7 @@ namespace boost { > {}; #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 template <> struct stream_char_common< boost::int128_type >: public boost::mpl::identity< char > {}; template <> struct stream_char_common< boost::uint128_type >: public boost::mpl::identity< char > {}; #endif @@ -613,7 +608,7 @@ namespace boost { BOOST_LCAST_DEF(unsigned __int64) BOOST_LCAST_DEF( __int64) #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 BOOST_LCAST_DEF(boost::int128_type) BOOST_LCAST_DEF(boost::uint128_type) #endif @@ -879,6 +874,15 @@ namespace boost { { #ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS BOOST_STATIC_ASSERT(!std::numeric_limits::is_signed); + + // GCC when used with flag -std=c++0x may not have std::numeric_limits + // specializations for __int128 and unsigned __int128 types. + // Try compilation with -std=gnu++0x or -std=gnu++11. + // + // http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40856 + BOOST_STATIC_ASSERT_MSG(std::numeric_limits::is_specialized, + "std::numeric_limits are not specialized for integral type passed to boost::lexical_cast" + ); #endif CharT const czero = lcast_char_constants::zero; --end; @@ -1827,7 +1831,7 @@ namespace boost { bool operator<<( __int64 n) { return shl_signed(n); } #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 bool operator<<(const boost::uint128_type& n) { start = lcast_put_unsigned(n, finish); return true; } bool operator<<(const boost::int128_type& n) { return shl_signed(n); } #endif @@ -2039,7 +2043,7 @@ namespace boost { bool operator>>(__int64& output) { return shr_signed(output); } #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 bool operator>>(boost::uint128_type& output) { return shr_unsigned(output); } bool operator>>(boost::int128_type& output) { return shr_signed(output); } #endif @@ -2553,7 +2557,7 @@ namespace boost { ); } #endif -#ifndef BOOST_NO_CHAR16_T +#ifndef BOOST_NO_CXX11_CHAR16_T template inline Target lexical_cast(const char16_t* chars, std::size_t count) { @@ -2562,7 +2566,7 @@ namespace boost { ); } #endif -#ifndef BOOST_NO_CHAR32_T +#ifndef BOOST_NO_CXX11_CHAR32_T template inline Target lexical_cast(const char32_t* chars, std::size_t count) { @@ -2719,7 +2723,6 @@ namespace boost { #undef BOOST_LCAST_THROW_BAD_CAST #undef BOOST_LCAST_NO_WCHAR_T -#undef BOOST_LCAST_HAS_INT128 #endif // BOOST_LEXICAL_CAST_INCLUDED --- boost1.54-1.54.0.orig/libs/conversion/cast.htm +++ boost1.54-1.54.0/libs/conversion/cast.htm @@ -10,6 +10,13 @@ Header boost/cast.hpp Documentation + @@ -131,10 +138,9 @@ void f( Fruit * fruit ) { -->June 23, 2005

-

© Copyright boost.org 1999. Permission to copy, use, modify, sell - and distribute this document is granted provided this copyright notice - appears in all copies. This document is provided "as is" without express - or implied warranty, and with no claim as to its suitability for any - purpose.

+ \ No newline at end of file --- boost1.54-1.54.0.orig/libs/conversion/index.html +++ boost1.54-1.54.0/libs/conversion/index.html @@ -6,6 +6,13 @@ Boost Conversion Library + @@ -32,7 +39,11 @@ supplied by several headers:

Revised June 23, 2005

- + \ No newline at end of file --- boost1.54-1.54.0.orig/libs/conversion/numeric_cast_test.cpp +++ boost1.54-1.54.0/libs/conversion/numeric_cast_test.cpp @@ -48,7 +48,7 @@ int test_main( int , char * [] ) long large_negative_value = LONG_MIN; signed char c = 0; - c = large_value; // see if compiler generates warning + c = static_cast(large_value); c = numeric_cast( small_value ); BOOST_CHECK( c == 1 ); --- boost1.54-1.54.0.orig/libs/conversion/test/Jamfile.v2 +++ boost1.54-1.54.0/libs/conversion/test/Jamfile.v2 @@ -1,5 +1,5 @@ # Copyright (C) 2001-2003 Douglas Gregor -# Copyright (C) 2011-2012 Antony Polukhin +# Copyright (C) 2011-2013 Antony Polukhin # # Distributed under the Boost Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -15,6 +15,11 @@ project gcc-4.7:-ftrapv gcc-4.6:-ftrapv clang:-ftrapv + # default to all warnings on: + all + # set warnings as errors for those compilers we know we get warning free: + gcc:-Wextra + gcc:-Wno-uninitialized ; # Thanks to Steven Watanabe for helping with feature --- boost1.54-1.54.0.orig/libs/conversion/test/implicit_cast_fail.cpp +++ boost1.54-1.54.0/libs/conversion/test/implicit_cast_fail.cpp @@ -19,6 +19,8 @@ struct foo int test_main(int, char*[]) { foo x = implicit_cast("foobar"); - (void)x; // warning suppression. + (void)x; // warning suppression. + BOOST_CHECK(false); // suppressing warning about 'boost::unit_test::{anonymous}::unit_test_log' defined but not used return 0; } + --- boost1.54-1.54.0.orig/libs/conversion/test/lexical_cast_integral_types_test.cpp +++ boost1.54-1.54.0/libs/conversion/test/lexical_cast_integral_types_test.cpp @@ -48,10 +48,6 @@ #define BOOST_LCAST_NO_WCHAR_T #endif -#if (defined(BOOST_LCAST_HAS_INT128) && !defined(__GNUC__)) || GCC_VERSION > 40700 -#define BOOST_LCAST_HAS_INT128 -#endif - // Test all 65536 values if true: bool const lcast_test_small_integral_types_completely = false; @@ -75,7 +71,7 @@ void test_conversion_from_to_uintmax_t() void test_conversion_from_to_longlong(); void test_conversion_from_to_ulonglong(); #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 void test_conversion_from_to_int128(); void test_conversion_from_to_uint128(); #endif @@ -99,7 +95,7 @@ unit_test::test_suite *init_unit_test_su suite->add(BOOST_TEST_CASE(&test_conversion_from_to_longlong)); suite->add(BOOST_TEST_CASE(&test_conversion_from_to_ulonglong)); #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 suite->add(BOOST_TEST_CASE(&test_conversion_from_to_int128)); suite->add(BOOST_TEST_CASE(&test_conversion_from_to_uint128)); #endif @@ -444,8 +440,8 @@ void test_conversion_from_to_integral_mi // test_conversion_from_to_integral_for_locale // Overflow test case from David W. Birdsall - std::string must_owerflow_str = "160000000000000000000"; - std::string must_owerflow_negative_str = "-160000000000000000000"; + std::string must_owerflow_str = (sizeof(T) < 16 ? "160000000000000000000" : "1600000000000000000000000000000000000000"); + std::string must_owerflow_negative_str = (sizeof(T) < 16 ? "-160000000000000000000" : "-1600000000000000000000000000000000000000"); for (int i = 0; i < 15; ++i) { BOOST_CHECK_THROW(lexical_cast(must_owerflow_str), bad_lexical_cast); BOOST_CHECK_THROW(lexical_cast(must_owerflow_negative_str), bad_lexical_cast); @@ -557,15 +553,34 @@ void test_conversion_from_to_ulonglong() #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 + +template +struct test_if_specialized { + static void test() {} +}; + +template +struct test_if_specialized { + static void test() { + test_conversion_from_to_integral_minimal(); + } +}; + void test_conversion_from_to_int128() { - test_conversion_from_to_integral_minimal(); + test_if_specialized< + std::numeric_limits::is_specialized, + boost::int128_type + >::test(); } void test_conversion_from_to_uint128() { - test_conversion_from_to_integral_minimal(); + test_if_specialized< + std::numeric_limits::is_specialized, + boost::uint128_type + >::test(); } #endif @@ -602,7 +617,7 @@ void test_integral_conversions_on_min_ma test_integral_conversions_on_min_max_impl<__int64>(); #endif -#ifdef BOOST_LCAST_HAS_INT128 +#ifdef BOOST_HAS_INT128 test_integral_conversions_on_min_max_impl(); #endif #endif --- boost1.54-1.54.0.orig/libs/conversion/test/lexical_cast_to_pointer_test.cpp +++ boost1.54-1.54.0/libs/conversion/test/lexical_cast_to_pointer_test.cpp @@ -17,5 +17,7 @@ int test_main(int, char*[]) { boost::lexical_cast("Hello"); + BOOST_CHECK(false); // suppressing warning about 'boost::unit_test::{anonymous}::unit_test_log' defined but not used return 0; } + debian/patches/endian.patch0000664000000000000000000000077012163730603013103 0ustar Description: Ensure Debian systems use endian.h. As of 2008-10-27, it seems that __GLIBC__ is no longer defined. Assume all Debian systems have . Author: Steve Robbins Forwarded: no --- boost1.54-1.54.0rc1.orig/boost/detail/endian.hpp +++ boost1.54-1.54.0rc1/boost/detail/endian.hpp @@ -31,7 +31,7 @@ // // Special cases come first: // -#if defined (__GLIBC__) +#if 1 // GNU libc offers the helpful header which defines // __BYTE_ORDER # include debian/patches/ELFv2-libboost1.54-dev-context-asm.patch0000664000000000000000000000742212246714564017675 0ustar diff -purN a/libs/context/src/asm/jump_ppc64_sysv_elf_gas.S b/libs/context/src/asm/jump_ppc64_sysv_elf_gas.S --- a/libs/context/src/asm/jump_ppc64_sysv_elf_gas.S 2013-11-09 19:23:14.000000000 +0000 +++ b/libs/context/src/asm/jump_ppc64_sysv_elf_gas.S 2013-11-09 19:26:23.000000000 +0000 @@ -80,18 +80,35 @@ * * * *****************************************************************/ -.section ".text" -.align 2 .globl jump_fcontext -.section ".opd","aw" -.align 3 +#if _CALL_ELF == 2 + .text + .align 2 jump_fcontext: -.quad .jump_fcontext,.TOC.@tocbase,0 -.previous -.size jump_fcontext,24 -.type .jump_fcontext,@function -.globl .jump_fcontext + addis %r2, %r12, .TOC.-jump_fcontext@ha + addi %r2, %r2, .TOC.-jump_fcontext@l + .localentry jump_fcontext, . - jump_fcontext +#else + .section ".opd","aw" + .align 3 +jump_fcontext: +# ifdef _CALL_LINUX + .quad .L.jump_fcontext,.TOC.@tocbase,0 + .type jump_fcontext,@function + .text + .align 2 +.L.jump_fcontext: +# else + .hidden .jump_fcontext + .globl .jump_fcontext + .quad .jump_fcontext,.TOC.@tocbase,0 + .size jump_fcontext,24 + .type .jump_fcontext,@function + .text + .align 2 .jump_fcontext: +# endif +#endif std %r13, 0(%r3) # save R13 std %r14, 8(%r3) # save R14 std %r15, 16(%r3) # save R15 @@ -194,8 +211,16 @@ jump_fcontext: mr %r3, %r5 # use third arg as return value after jump # and as first arg in context function - ld %r0, 176(%r4) # load PC - mtctr %r0 # restore CTR + ld %r12, 176(%r4) # load PC + mtctr %r12 # restore CTR bctr # jump to context -.size .jump_fcontext, .-.jump_fcontext +#if _CALL_ELF == 2 + .size jump_fcontext, .-jump_fcontext +#else +# ifdef _CALL_LINUX + .size .jump_fcontext, .-.L.jump_fcontext +# else + .size .jump_fcontext, .-.jump_fcontext +# endif +#endif diff -purN a/libs/context/src/asm/make_ppc64_sysv_elf_gas.S b/libs/context/src/asm/make_ppc64_sysv_elf_gas.S --- a/libs/context/src/asm/make_ppc64_sysv_elf_gas.S 2013-11-09 19:23:19.000000000 +0000 +++ b/libs/context/src/asm/make_ppc64_sysv_elf_gas.S 2013-11-09 19:26:23.000000000 +0000 @@ -80,18 +80,35 @@ * * * *****************************************************************/ -.section ".text" -.align 2 .globl make_fcontext -.section ".opd","aw" -.align 3 +#if _CALL_ELF == 2 + .text + .align 2 make_fcontext: -.quad .make_fcontext,.TOC.@tocbase,0 -.previous -.size make_fcontext,24 -.type .make_fcontext,@function -.globl .make_fcontext + addis %r2, %r12, .TOC.-make_fcontext@ha + addi %r2, %r2, .TOC.-make_fcontext@l + .localentry make_fcontext, . - make_fcontext +#else + .section ".opd","aw" + .align 3 +make_fcontext: +# ifdef _CALL_LINUX + .quad .L.make_fcontext,.TOC.@tocbase,0 + .type make_fcontext,@function + .text + .align 2 +.L.make_fcontext: +# else + .hidden .make_fcontext + .globl .make_fcontext + .quad .make_fcontext,.TOC.@tocbase,0 + .size make_fcontext,24 + .type .make_fcontext,@function + .text + .align 2 .make_fcontext: +# endif +#endif mflr %r6 # save return address into R6 mr %r0, %r3 @@ -130,4 +147,12 @@ finish: li %r3, 0 # set return value to zero bl _exit # exit application nop -.size .make_fcontext, .-.make_fcontext +#if _CALL_ELF == 2 + .size make_fcontext, .-make_fcontext +#else +# ifdef _CALL_LINUX + .size .make_fcontext, .-.L.make_fcontext +# else + .size .make_fcontext, .-.make_fcontext +# endif +#endif debian/patches/boost-1.44-py3.1.patch0000664000000000000000000000541711711137650014233 0ustar Description: Enable building with Python 3.1 Fix a build problem where PyInt_Type is not defined. Author: Andreas Kloeckner Bug: 595786 Forwarded: https://svn.boost.org/trac/boost/ticket/4657 Boost 1.49: on trunk, not release. --- boost1.44-1.44.0.orig/libs/mpi/src/python/datatypes.cpp +++ boost1.44-1.44.0/libs/mpi/src/python/datatypes.cpp @@ -17,7 +17,9 @@ void export_datatypes() { +#if PY_MAJOR_VERSION < 3 register_serialized(long(0), &PyInt_Type); +#endif register_serialized(false, &PyBool_Type); register_serialized(double(0.0), &PyFloat_Type); } --- boost1.44-1.44.0.orig/libs/mpi/src/python/py_environment.cpp +++ boost1.44-1.44.0/libs/mpi/src/python/py_environment.cpp @@ -11,6 +11,9 @@ * This file reflects the Boost.MPI "environment" class into Python * methods at module level. */ + +#include +#include #include #include @@ -50,11 +53,65 @@ // If anything changed, convert C-style argc/argv into Python argv if (mpi_argv != my_argv) + { +#if PY_MAJOR_VERSION >= 3 + // Code stolen from py3k/Modules/python.c. + + wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*mpi_argc); + /* We need a second copies, as Python might modify the first one. */ + wchar_t **argv_copy2 = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*mpi_argc); + + if (!argv_copy || !argv_copy2) { + fprintf(stderr, "out of memory\n"); + return false; + } + + std::locale mylocale; + mbstate_t mystate; + + const std::codecvt& myfacet = + std::use_facet >(mylocale); + + for (int i = 0; i < mpi_argc; i++) + { + size_t length = strlen(mpi_argv[i]); + + wchar_t *dest = (wchar_t *) PyMem_Malloc(sizeof(wchar_t) * (length + 1)); + + const char *from_next; + wchar_t *to_next; + + std::codecvt::result myresult = + myfacet.out(mystate, + mpi_argv[i], mpi_argv[i] + length + 1, from_next, + dest, dest+length+1, to_next); + + if (myresult != std::codecvt::ok ) + { + fprintf(stderr, "failure translating argv\n"); + return 1; + } + + argv_copy2[i] = argv_copy[i] = dest; + if (!argv_copy[i]) + return false; + } + + PySys_SetArgv(mpi_argc, argv_copy); + + for (int i = 0; i < mpi_argc; i++) { + PyMem_Free(argv_copy2[i]); + } + PyMem_Free(argv_copy); + PyMem_Free(argv_copy2); +#else PySys_SetArgv(mpi_argc, mpi_argv); +#endif + } - for (int arg = 0; arg < my_argc; ++arg) - free(my_argv[arg]); - delete [] my_argv; + for (int arg = 0; arg < mpi_argc; ++arg) + free(mpi_argv[arg]); + delete [] mpi_argv; return true; } debian/patches/series0000664000000000000000000000055312254311137012036 0ustar 001-coroutine.patch 002-date-time.patch chrono-duration.patch boost-python-examples.patch endian.patch boost-1.44-py3.1.patch pythonid.patch mpi-allocator-c++0x.patch fix-ftbfs-python-3.3.patch hurd-clock-gettime.patch boost-1.54.0-thread-link_atomic.patch 85160.patch ELFv2-libboost1.54-dev-context-asm.patch hppa-long-double-config.patch eglibc-long-long.patch debian/patches/boost-python-examples.patch0000664000000000000000000000372711701230710016122 0ustar Description: Patch to build examples using installed Boost.Python Author: Georg Schmid Bug: 452410 Forwarded: no --- boost1.42-1.42.0.orig/libs/python/example/Jamroot +++ boost1.42-1.42.0/libs/python/example/Jamroot @@ -2,16 +2,17 @@ # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -# Specify the path to the Boost project. If you move this project, -# adjust this path to refer to the Boost root directory. -use-project boost - : ../../.. ; +using python ; + +# Specify that the boost-python library exists under the name +# boost_python. That is, because the library was installed at the +# standard search path as /usr/lib/libboost_python.so, bjam will find +# it automatically. No need to specify the absolute path. +lib libboost_python : : boost_python ; # Set up the project-wide requirements that everything uses the -# boost_python library from the project whose global ID is -# /boost/python. -project - : requirements /boost/python//boost_python ; +# boost_python library. +project : requirements libboost_python ; # Declare the three extension modules. You can specify multiple # source files after the colon separated by spaces. --- boost1.42-1.42.0.orig/libs/python/example/tutorial/Jamroot +++ boost1.42-1.42.0/libs/python/example/tutorial/Jamroot @@ -11,16 +11,12 @@ using python ; } -# Specify the path to the Boost project. If you move this project, -# adjust this path to refer to the Boost root directory. -use-project boost - : ../../../.. ; +using python ; # Set up the project-wide requirements that everything uses the -# boost_python library from the project whose global ID is -# /boost/python. +# boost_python library. project - : requirements /boost/python//boost_python ; + : requirements libboost_python ; # Declare the three extension modules. You can specify multiple # source files after the colon separated by spaces. debian/compat0000664000000000000000000000000212116024426010364 0ustar 9 debian/libboost-python-dev.prerm.in0000664000000000000000000000017611701230712014552 0ustar #! /bin/sh set -e update=/usr/share/python/runtime.d/libboost-python@PKGVERSION@-dev.rtupdate $update remove #DEBHELPER# debian/libboost-mpi-python-dev.prerm.in0000664000000000000000000000020211701230712015323 0ustar #! /bin/sh set -e update=/usr/share/python/runtime.d/libboost-mpi-python@PKGVERSION@-dev.rtupdate $update remove #DEBHELPER#