<ul>
<li> <a href="#prerequisites">System requirements</a>
<li> <a href="#installation">Installation</a>
+ <li> <a href="#configuration-options">Configuration options</a>
<li> <a href="#compiler-flags">Compiler flags</a>
<li> <a href="#external-libs">Using third-party libraries and
subroutines</a>
<p>
We used to support two different ways to achieve multi-threading in a
cross-platform way, which were selected by the argument given to
- <code>--with-multithreading=name</code>. Since after <acronym>deal.II--
- 3.4</code> we dropped support for
+ <code>--with-multithreading=name</code>. Since after
+ <acronym>deal.II</acronym> version 3.4 we dropped support for
the <a href="http://www.cs.wustl.edu/~schmidt/ACE.html"
target="_top">ACE (Adaptive Communications Environment)</a>
library for cross-platform portability, there remains only one valid
of the tecio library. If enabled, allows data output in TECPLOT format.
</dd>
+ <a name="umfpack"></a>
<dt>UMFPACK</dt>
<dd>Enabled by <tt>--with-umfpack</tt>. Right now, only the included
version in the contrib directory is supported, but pre-installed versions
</dl>
<a name="compiler-flags">
- <h4>Compiler flags</h4>
+ <h3>Compiler flags</h3>
<p>
Since the ISO C++ standard is still quite new and compilers still
<p>
In order to generate partitionings of triangulations, we have functions
that call <a href="http://www-users.cs.umn.edu/~karypis/metis/index.html"
- target="_top">METIS</a> library. METIS is a function that provides
+ target="_top">METIS</a> library. METIS is a library that provides
various methods to partition graphs, which we use to define which cell
belongs to which part of a triangulation. The main point in using METIS
is to generate partitions so that the interfaces between cell blocks are
such publication. Your publication will then be listed on the
project homepage.
+ <p>
+
+ <acronym>deal.II</acronym> can interface with a number of <a
+ href="#external-libs">other packages</a> that you have to install
+ yourself. They are, of course, covered by their own licenses. In addition,
+ deal.II comes with a copy of <a
+ href="http://www.cise.ufl.edu/research/sparse/umfpack/">UMFPACK</a>,
+ courtesy of its author. UMFPACK is covered by its own license, linked to
+ <a href="#umfpack">above</a>.
<hr>