Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > c5653a35bb94fee65ffe21230992c863 > files > 624

linbox-doc-1.2.1-1.fc15.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>linbox: LinBox Symbolic Linear Algebra Software Library.</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
  if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
  if (hasClass(ele,cls)) {
    var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
    ele.className=ele.className.replace(reg,' ');
  }
}

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">linbox</div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li class="current"><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="headertitle">
<div class="title"><a class="el" href="namespace_lin_box.html" title="Namespace in which all linbox code resides.">LinBox</a> Symbolic Linear Algebra Software Library. </div>  </div>
</div>
<div class="contents">
<div class="textblock"><h2><a class="anchor" id="intro"></a>
Introduction</h2>
<p>LinBox is a C++ template library of routines for solution of linear algebra problems including linear system solution, rank, determinant, minimal polynomial, characteristic polynomial, and Smith normal form.</p>
<p>Algorithms are provided for matrices with integer entries or entries in a finite field. In support of the algorithms, a good collection of finite field and ring implementations is available. Also there is provided a number of matrix storage types, especially for blackbox representation of sparse or structured matrix classes. A few algorithms for rational matrices are available. More for integer and rational matrices is planned for future releases.</p>
<h2><a class="anchor" id="goals"></a>
Goals</h2>
<p>Project LinBox (<a href="http://linalg.org">http://linalg.org</a>) is a collaborative effort among researchers at a number of locations around the world. Some of the most active participants are listed <a class="el" href="_a_u_t_h_o_r_s.html">here</a>. The goals are to produce algorithms and software for symbolic linear algebra, particularly using <a class="el" href="group__blackbox.html">blackbox</a> matrix methods, i.e. iterative methods requiring only the linear transform property of the matrix (that, given A and x, one can compute <img class="formulaInl" alt="$y \gets Ax$" src="form_73.png"/>). Such methods are especially effective with sparse or structured matrices for which the matrix-vector product can be computed cheaply. Increasingly, LinBox also provides elimination based methods for dense matrices exploiting the numeric BLAS routines.</p>
<p>A good collection of finite field implementations is available. Some algorithms are probabilistic, but their results are extremely reliable except over very small fields (less than 1000 elements, say).</p>
<h2><a class="anchor" id="desig"></a>
Design</h2>
<p>LinBox depends on other packages for some of its functionality. It is a design goal of LinBox to be a kind of <em>middleware</em>, providing a common interface for use in projects needing linear algebra and providing access to other systems and programs through wrappers whenever their capabilities may contribute to the linear algebra. Thus, to gain full advangage of LinBox it will be desirable to have certain other packages installed. In particular GMP and a BLAS implementation are required. GMP provides the basic large integer system used throughout. We have been using ATLAS for the BLAS implementation. The remaining dependencies are optional, but two packages stand out as contributing substantially to LinBox. They are NTL and Givaro. NTL is used for some finite field and ring representations, particularly in the case of <code>GF(q)</code>, where <code>q</code> is a prime power or a prime greater than word size. NTL is also used by algorithms that need polynomial operations such as factorization. Givaro is another source of field representations and polynomial operations. Importantly, Givaro provides our best representation of small non-prime fields, say <code>q = p<sup>e</sup> &lt; 10<sup>6</sup></code>. Functionality from some other systems has been wrapped also but is currently less widely used in LinBox.</p>
<p><em>Genericity</em> and <em>high</em> <em>performance</em> are the twin goals of LinBox. The genericity is achieved by use of a small set of interfaces. Algorithms are implemented with C++ template parameters which may be instantiated with any class adhering to the specified interface. High performance is achieved by judicious specializations of the generic algorithms. It is entirely within the spirit of the project to introduce new implementations. Thus a user of the library may invoke a LinBox algorithm, say for determinant or rank of a matrix, but providing a blackbox class of her own design and perhaps even providing the underlying field (or commutative ring) representation. Conversely, the LinBox field and ring interfaces and the many specific representations can be used for purposes other than linear algebra computation or with algorithms not provided by LinBox.</p>
<h2><a class="anchor" id="using"></a>
Using LinBox</h2>
<ul>
<li><a class="el" href="copy.html">Copyright and Licencing</a>.</li>
<li><a class="el" href="tuto.html">LinBox tutorial</a>. This is a brief introduction to LinBox capabilities.</li>
<li><a class="el" href="inst.html">Installing LinBox</a>. Explains how to install from sources or from the latest svn version.</li>
<li><a class="el" href="arch.html">Architecture of the library</a>. Describes how LinBox is organized</li>
<li><a href="../linbox-html/index.html" style="color: blue  ; font-weight:
 bold">Documentation for Users</a>. If everything around is blue, then you are reading the lighter, user-oriented, documentation.</li>
<li><a href="../linbox-dev-html/index.html" style="color: green ; font-weight:
 bold">Documentation for Developers</a>. If everything around is green, then you can get to everything (not necessarily yet) documented.</li>
</ul>
<h2><a class="anchor" id="contrib"></a>
Contributing to LinBox, getting assistance.</h2>
<p>We warmly welcome contributors ! Contributing can rhyme with providing documentation, pointing out bugs, requesting more features, giving test-cases, making comments about the code,... You can contact the <a class="el" href="namespace_lin_box.html" title="Namespace in which all linbox code resides.">LinBox</a> team at <img class="formulaInl" alt="$\mathtt{linbox}\!-\!\mathtt{use} \mathtt{@} \mathtt{googlegroups}\!\cdot\!\mathtt{com}$" src="form_74.png"/> (user oriented discussions) or <img class="formulaInl" alt="$\mathtt{linbox}\!-\!\mathtt{use} \mathtt{@} \mathtt{googlegroups}\!\cdot\!\mathtt{com}$" src="form_74.png"/> (development oriented discussions).</p>
<dl class="author"><dt><b>Authors:</b></dt><dd>Members of the <a class="el" href="_a_u_t_h_o_r_s.html">LinBox group</a>. The most prolific documenters have been first William J Turner, then Bradford Hovinen, and David Saunders.</dd></dl>
<dl class="version"><dt><b>Version:</b></dt><dd>1.2.1</dd></dl>
<dl class="user"><dt><b>Support.</b></dt><dd>The project is supported by the National Science Foundation (<a href="http://www.nsf.gov/">http://www.nsf.gov/</a>) in the USA and by CNRS in France. </dd></dl>
</div></div>
<hr class="footer"/><address class="footer"><small>Generated on Tue Aug 30 2011 for linbox by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>