mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-18 10:01:57 -05:00
128 lines
6.9 KiB
HTML
128 lines
6.9 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
|
<title>Directory and File Structure</title>
|
|
<link rel="stylesheet" href="../math.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
|
<link rel="home" href="../index.html" title="Math Toolkit 2.5.1">
|
|
<link rel="up" href="../overview.html" title="Chapter 1. Overview">
|
|
<link rel="prev" href="hints.html" title="Other Hints and tips">
|
|
<link rel="next" href="namespaces.html" title="Namespaces">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr>
|
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
|
|
<td align="center"><a href="../../../../../index.html">Home</a></td>
|
|
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
|
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="hints.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../overview.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="namespaces.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
|
|
</div>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
|
<a name="math_toolkit.directories"></a><a class="link" href="directories.html" title="Directory and File Structure">Directory and File Structure</a>
|
|
</h2></div></div></div>
|
|
<h5>
|
|
<a name="math_toolkit.directories.h0"></a>
|
|
<span class="phrase"><a name="math_toolkit.directories.boost_math"></a></span><a class="link" href="directories.html#math_toolkit.directories.boost_math">boost/math</a>
|
|
</h5>
|
|
<div class="variablelist">
|
|
<p class="title"><b></b></p>
|
|
<dl class="variablelist">
|
|
<dt><span class="term">/concepts/</span></dt>
|
|
<dd><p>
|
|
Prototype defining the <span class="bold"><strong>essential</strong></span> features
|
|
of a RealType class (see real_concept.hpp). Most applications will use
|
|
<code class="computeroutput"><span class="keyword">double</span></code> as the RealType (and
|
|
short <code class="computeroutput"><span class="keyword">typedef</span></code> names of distributions
|
|
are reserved for this type where possible), a few will use <code class="computeroutput"><span class="keyword">float</span></code> or <code class="computeroutput"><span class="keyword">long</span>
|
|
<span class="keyword">double</span></code>, but it is also possible
|
|
to use higher precision types like <a href="http://shoup.net/ntl/doc/RR.txt" target="_top">NTL::RR</a>,
|
|
<a href="http://gmplib.org/" target="_top">GNU Multiple Precision Arithmetic Library</a>,
|
|
<a href="http://www.mpfr.org/" target="_top">GNU MPFR library</a> that conform
|
|
to the requirements specified by real_concept.
|
|
</p></dd>
|
|
<dt><span class="term">/constants/</span></dt>
|
|
<dd><p>
|
|
Templated definition of some highly accurate math constants (in constants.hpp).
|
|
</p></dd>
|
|
<dt><span class="term">/distributions/</span></dt>
|
|
<dd><p>
|
|
Distributions used in mathematics and, especially, statistics: Gaussian,
|
|
Students-t, Fisher, Binomial etc
|
|
</p></dd>
|
|
<dt><span class="term">/policies/</span></dt>
|
|
<dd><p>
|
|
Policy framework, for handling user requested behaviour modifications.
|
|
</p></dd>
|
|
<dt><span class="term">/special_functions/</span></dt>
|
|
<dd><p>
|
|
Math functions generally regarded as 'special', like beta, cbrt, erf,
|
|
gamma, lgamma, tgamma ... (Some of these are specified in C++, and C99/TR1,
|
|
and perhaps TR2).
|
|
</p></dd>
|
|
<dt><span class="term">/tools/</span></dt>
|
|
<dd><p>
|
|
Tools used by functions, like evaluating polynomials, continued fractions,
|
|
root finding, precision and limits, and by tests. Some will find application
|
|
outside this package.
|
|
</p></dd>
|
|
</dl>
|
|
</div>
|
|
<h5>
|
|
<a name="math_toolkit.directories.h1"></a>
|
|
<span class="phrase"><a name="math_toolkit.directories.boost_libs"></a></span><a class="link" href="directories.html#math_toolkit.directories.boost_libs">boost/libs</a>
|
|
</h5>
|
|
<div class="variablelist">
|
|
<p class="title"><b></b></p>
|
|
<dl class="variablelist">
|
|
<dt><span class="term">/doc/</span></dt>
|
|
<dd><p>
|
|
Documentation source files in Quickbook format processed into html and
|
|
pdf formats.
|
|
</p></dd>
|
|
<dt><span class="term">/examples/</span></dt>
|
|
<dd><p>
|
|
Examples and demos of using math functions and distributions.
|
|
</p></dd>
|
|
<dt><span class="term">/performance/</span></dt>
|
|
<dd><p>
|
|
Performance testing and tuning program.
|
|
</p></dd>
|
|
<dt><span class="term">/test/</span></dt>
|
|
<dd><p>
|
|
Test files, in many .cpp files, most using Boost.Test (some with test
|
|
data as .ipp files, usually generated using NTL RR type with ample precision
|
|
for the type, often for precisions suitable for up to 256-bit significand
|
|
real types).
|
|
</p></dd>
|
|
<dt><span class="term">/tools/</span></dt>
|
|
<dd><p>
|
|
Programs used to generate test data. Also changes to the <a href="http://shoup.net/ntl/" target="_top">NTL</a>
|
|
released package to provide a few additional (and vital) extra features.
|
|
</p></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
<td align="left"></td>
|
|
<td align="right"><div class="copyright-footer">Copyright © 2006-2010, 2012-2014 Nikhar Agrawal,
|
|
Anton Bikineev, Paul A. Bristow, Marco Guazzone, Christopher Kormanyos, Hubert
|
|
Holin, Bruno Lalande, John Maddock, Jeremy Murphy, Johan Råde, Gautam Sewani,
|
|
Benjamin Sobotta, Thijs van den Berg, Daryle Walker and Xiaogang Zhang<p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="hints.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../overview.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="namespaces.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
|
|
</div>
|
|
</body>
|
|
</html>
|