Sophie

Sophie

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

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: examples/valence.C</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><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">examples/valence.C</div>  </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><span class="comment">/* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */</span>
<span class="comment">// vim:sts=8:sw=8:ts=8:noet:sr:cino=&gt;s,f0,{0,g0,(0,\:0,t0,+0,=s</span>
<span class="comment">/*</span>
<span class="comment"> * examples/valence.C</span>
<span class="comment"> *</span>
<span class="comment"> * Copyright (C) 2005, 2010  J-G Dumas</span>
<span class="comment"> *</span>
<span class="comment"> * This file is part of LinBox.</span>
<span class="comment"> *</span>
<span class="comment"> *   LinBox is free software: you can redistribute it and/or modify</span>
<span class="comment"> *   it under the terms of the GNU Lesser General Public License as</span>
<span class="comment"> *   published by the Free Software Foundation, either version 2 of</span>
<span class="comment"> *   the License, or (at your option) any later version.</span>
<span class="comment"> *</span>
<span class="comment"> *   LinBox is distributed in the hope that it will be useful,</span>
<span class="comment"> *   but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<span class="comment"> *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
<span class="comment"> *   GNU Lesser General Public License for more details.</span>
<span class="comment"> *</span>
<span class="comment"> *   You should have received a copy of the GNU Lesser General Public</span>
<span class="comment"> *   License along with LinBox.  If not, see</span>
<span class="comment"> *   &lt;http://www.gnu.org/licenses/&gt;.</span>
<span class="comment"> */</span>

<span class="comment">//#include &quot;linbox-config.h&quot;</span>
<span class="preprocessor">#include &lt;iostream&gt;</span>

<span class="preprocessor">#include &quot;<a class="code" href="modular-double_8h.html" title="Standard representation of Z/mZ over double .">linbox/field/modular-double.h</a>&quot;</span>
<span class="preprocessor">#include &quot;linbox/blackbox/transpose.h&quot;</span>
<span class="preprocessor">#include &quot;linbox/blackbox/compose.h&quot;</span>
<span class="preprocessor">#include &quot;linbox/blackbox/sparse.h&quot;</span>
<span class="preprocessor">#include &quot;linbox/solutions/valence.h&quot;</span>
<span class="preprocessor">#include &quot;linbox/util/matrix-stream.h&quot;</span>

<span class="keyword">using namespace </span>LinBox;

<span class="keywordtype">int</span> main (<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> **argv)
{
    commentator.<a name="a0"></a>setMaxDetailLevel (-1);
    commentator.<a name="a1"></a>setMaxDepth (-1);
    commentator.<a name="a2"></a>setReportStream (std::cerr);


    <span class="keywordflow">if</span> (argc &lt; 2 || argc &gt; 3) {
        std::cerr &lt;&lt; <span class="stringliteral">&quot;Usage: valence &lt;matrix-file-in-supported-format&gt; [-ata|-aat]&quot;</span> &lt;&lt; std::endl;
        <span class="keywordflow">return</span> -1;
    }

    std::ifstream input (argv[1]);
    <span class="keywordflow">if</span> (!input) { std::cerr &lt;&lt; <span class="stringliteral">&quot;Error opening matrix file &quot;</span> &lt;&lt; argv[1] &lt;&lt; std::endl; <span class="keywordflow">return</span> -1; }

    <a name="_a3"></a><a class="code" href="class_lin_box_1_1_p_i_d__integer.html" title="Domain for integer operations.">PID_integer</a> ZZ;
    <a name="_a4"></a><a class="code" href="class_lin_box_1_1_matrix_stream.html" title="MatrixStream.">MatrixStream&lt; PID_integer &gt;</a> ms( ZZ, input );
    <span class="keyword">typedef</span> <a name="_a5"></a><a class="code" href="class_lin_box_1_1_sparse_matrix.html" title="vector of sparse rows.">SparseMatrix&lt;PID_integer&gt;</a>  Blackbox;
    Blackbox A (ms);

    std::cout &lt;&lt; <span class="stringliteral">&quot;A is &quot;</span> &lt;&lt; A.rowdim() &lt;&lt; <span class="stringliteral">&quot; by &quot;</span> &lt;&lt; A.coldim() &lt;&lt; std::endl;

    PID_integer::Element val_A;


    <span class="keywordflow">if</span> (argc == 3) {
        <a name="_a6"></a><a class="code" href="class_lin_box_1_1_transpose.html" title="transpose matrix without copying.">Transpose&lt;Blackbox&gt;</a> T(&amp;A);
        <span class="keywordflow">if</span> (strcmp(argv[2],<span class="stringliteral">&quot;-aat&quot;</span>)) {
            <a name="_a7"></a><a class="code" href="class_lin_box_1_1_compose.html" title="Blackbox of a product: , i.e .">Compose&lt; Transpose&lt;Blackbox&gt;</a>, Blackbox &gt; C (&amp;T, &amp;A);
            std::cout &lt;&lt; <span class="stringliteral">&quot;A^T A is &quot;</span> &lt;&lt; C.<a name="a8"></a><a class="code" href="class_lin_box_1_1_compose.html#a09202c1aaa6c5a4c8e69a2339a27bcfe" title="The number of rows.">rowdim</a>() &lt;&lt; <span class="stringliteral">&quot; by &quot;</span> &lt;&lt; C.<a name="a9"></a><a class="code" href="class_lin_box_1_1_compose.html#a63d5df22c5024e979e3462155d0fe814" title="The number of columns.">coldim</a>() &lt;&lt; std::endl;
            valence(val_A, C);
        }
        <span class="keywordflow">else</span> {
            <a class="code" href="class_lin_box_1_1_compose.html" title="Blackbox of a product: , i.e .">Compose&lt; Blackbox, Transpose&lt;Blackbox&gt;</a> &gt; C (&amp;A, &amp;T);
            std::cout &lt;&lt; <span class="stringliteral">&quot;A A^T is &quot;</span> &lt;&lt; C.<a name="a10"></a><a class="code" href="class_lin_box_1_1_compose.html#a09202c1aaa6c5a4c8e69a2339a27bcfe" title="The number of rows.">rowdim</a>() &lt;&lt; <span class="stringliteral">&quot; by &quot;</span> &lt;&lt; C.<a name="a11"></a><a class="code" href="class_lin_box_1_1_compose.html#a63d5df22c5024e979e3462155d0fe814" title="The number of columns.">coldim</a>() &lt;&lt; std::endl;
            valence(val_A, C);
        }
    }
    <span class="keywordflow">else</span> {
        <span class="keywordflow">if</span> (A.rowdim() != A.coldim()) {
            std::cerr &lt;&lt; <span class="stringliteral">&quot;Valence works only on square matrices, try either to change the dimension in the matrix file, or to compute the valence of A A^T or A^T A, via the -aat or -ata options.&quot;</span>  &lt;&lt; std::endl;
            exit(0);
        }
        <span class="keywordflow">else</span>
            valence (val_A, A);
    }

    std::cout &lt;&lt; <span class="stringliteral">&quot;Valence is &quot;</span> &lt;&lt; val_A &lt;&lt; std::endl;

    <span class="keywordflow">return</span> 0;
}
</pre></div> </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>