2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 03:42:19 +00:00
Files
ublas/doc/doxyfiles/html/a00603_source.html
David Bellot 11b1711474 new doxyfiles
[SVN r75573]
2011-11-20 14:50:03 +00:00

446 lines
34 KiB
HTML

<!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>Boost.uBlas: config.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.7.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<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 id="projectlogo"><img alt="Logo" src="logo boost ublas.png"></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Boost.uBlas&#160;<span id="projectnumber">1.49</span></div>
<div id="projectbrief">Linear Algebra in C++: matrices, vectors and numeric algorithms</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="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li id="searchli">
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
</ul>
</div>
</div>
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
initNavTree('a00603.html','');
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<h1>config.hpp</h1> </div>
</div>
<div class="contents">
<a href="a00603.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">//</span>
<a name="l00002"></a>00002 <span class="comment">// Copyright (c) 2000-2002</span>
<a name="l00003"></a>00003 <span class="comment">// Joerg Walter, Mathias Koch</span>
<a name="l00004"></a>00004 <span class="comment">//</span>
<a name="l00005"></a>00005 <span class="comment">// Distributed under the Boost Software License, Version 1.0. (See</span>
<a name="l00006"></a>00006 <span class="comment">// accompanying file LICENSE_1_0.txt or copy at</span>
<a name="l00007"></a>00007 <span class="comment">// http://www.boost.org/LICENSE_1_0.txt)</span>
<a name="l00008"></a>00008 <span class="comment">//</span>
<a name="l00009"></a>00009 <span class="comment">// The authors gratefully acknowledge the support of</span>
<a name="l00010"></a>00010 <span class="comment">// GeNeSys mbH &amp; Co. KG in producing this work.</span>
<a name="l00011"></a>00011 <span class="comment">//</span>
<a name="l00012"></a>00012
<a name="l00013"></a>00013 <span class="preprocessor">#ifndef _BOOST_UBLAS_CONFIG_</span>
<a name="l00014"></a>00014 <span class="preprocessor"></span><span class="preprocessor">#define _BOOST_UBLAS_CONFIG_</span>
<a name="l00015"></a>00015 <span class="preprocessor"></span>
<a name="l00016"></a>00016 <span class="preprocessor">#include &lt;cassert&gt;</span>
<a name="l00017"></a>00017 <span class="preprocessor">#include &lt;cstddef&gt;</span>
<a name="l00018"></a>00018 <span class="preprocessor">#include &lt;algorithm&gt;</span>
<a name="l00019"></a>00019 <span class="preprocessor">#include &lt;limits&gt;</span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="preprocessor">#include &lt;boost/config.hpp&gt;</span>
<a name="l00022"></a>00022 <span class="preprocessor">#include &lt;boost/static_assert.hpp&gt;</span>
<a name="l00023"></a>00023 <span class="preprocessor">#include &lt;boost/noncopyable.hpp&gt;</span>
<a name="l00024"></a>00024 <span class="preprocessor">#include &lt;boost/mpl/if.hpp&gt;</span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;boost/mpl/and.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;boost/type_traits/is_same.hpp&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;boost/type_traits/is_convertible.hpp&gt;</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include &lt;boost/type_traits/is_const.hpp&gt;</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include &lt;boost/type_traits/remove_reference.hpp&gt;</span>
<a name="l00030"></a>00030
<a name="l00031"></a>00031
<a name="l00032"></a>00032 <span class="comment">// Microsoft Visual C++</span>
<a name="l00033"></a>00033 <span class="preprocessor">#if defined (BOOST_MSVC) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00034"></a>00034 <span class="preprocessor"></span>
<a name="l00035"></a>00035 <span class="comment">// Version 6.0 and 7.0</span>
<a name="l00036"></a>00036 <span class="preprocessor">#if BOOST_MSVC &lt;= 1300</span>
<a name="l00037"></a>00037 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_UNSUPPORTED_COMPILER 1</span>
<a name="l00038"></a>00038 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00039"></a>00039 <span class="preprocessor"></span>
<a name="l00040"></a>00040 <span class="comment">// Version 7.1</span>
<a name="l00041"></a>00041 <span class="preprocessor">#if BOOST_MSVC == 1310</span>
<a name="l00042"></a>00042 <span class="preprocessor"></span><span class="comment">// One of these workarounds is needed for MSVC 7.1 AFAIK</span>
<a name="l00043"></a>00043 <span class="comment">// (thanks to John Maddock and Martin Lauer).</span>
<a name="l00044"></a>00044 <span class="preprocessor">#if !(defined(BOOST_UBLAS_NO_NESTED_CLASS_RELATION) || defined(BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION))</span>
<a name="l00045"></a>00045 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_NO_NESTED_CLASS_RELATION</span>
<a name="l00046"></a>00046 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span>
<a name="l00048"></a>00048 <span class="preprocessor">#endif</span>
<a name="l00049"></a>00049 <span class="preprocessor"></span>
<a name="l00050"></a>00050 <span class="preprocessor">#endif</span>
<a name="l00051"></a>00051 <span class="preprocessor"></span>
<a name="l00052"></a>00052
<a name="l00053"></a>00053 <span class="comment">// GNU Compiler Collection</span>
<a name="l00054"></a>00054 <span class="preprocessor">#if defined (__GNUC__) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00055"></a>00055 <span class="preprocessor"></span>
<a name="l00056"></a>00056 <span class="preprocessor">#if __GNUC__ &gt;= 4 || (__GNUC__ &gt;= 3 &amp;&amp; __GNUC_MINOR__ &gt;= 4)</span>
<a name="l00057"></a>00057 <span class="preprocessor"></span><span class="comment">// Specified by ABI definition see GCC bug id 9982</span>
<a name="l00058"></a>00058 <span class="preprocessor">#define BOOST_UBLAS_USEFUL_ARRAY_PLACEMENT_NEW</span>
<a name="l00059"></a>00059 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00060"></a>00060 <span class="preprocessor"></span>
<a name="l00061"></a>00061 <span class="preprocessor">#if __GNUC__ &lt; 3</span>
<a name="l00062"></a>00062 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_UNSUPPORTED_COMPILER 1</span>
<a name="l00063"></a>00063 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00064"></a>00064 <span class="preprocessor"></span>
<a name="l00065"></a>00065 <span class="preprocessor">#endif</span>
<a name="l00066"></a>00066 <span class="preprocessor"></span>
<a name="l00067"></a>00067
<a name="l00068"></a>00068 <span class="comment">// Intel Compiler</span>
<a name="l00069"></a>00069 <span class="preprocessor">#if defined (BOOST_INTEL) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00070"></a>00070 <span class="preprocessor"></span>
<a name="l00071"></a>00071 <span class="preprocessor">#if defined (BOOST_INTEL_LINUX) &amp;&amp; (BOOST_INTEL_LINUX &gt;= 800)</span>
<a name="l00072"></a>00072 <span class="preprocessor"></span><span class="comment">// By inspection of compiler results</span>
<a name="l00073"></a>00073 <span class="preprocessor">#define BOOST_UBLAS_USEFUL_ARRAY_PLACEMENT_NEW</span>
<a name="l00074"></a>00074 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00075"></a>00075 <span class="preprocessor"></span>
<a name="l00076"></a>00076 <span class="preprocessor">#if (BOOST_INTEL &lt; 700)</span>
<a name="l00077"></a>00077 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_UNSUPPORTED_COMPILER 1</span>
<a name="l00078"></a>00078 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00079"></a>00079 <span class="preprocessor"></span>
<a name="l00080"></a>00080 <span class="comment">// Define swap for index_pair and triple.</span>
<a name="l00081"></a>00081 <span class="preprocessor">#if (BOOST_INTEL &lt;= 800)</span>
<a name="l00082"></a>00082 <span class="preprocessor"></span><span class="keyword">namespace </span>boost { <span class="keyword">namespace </span>numeric { <span class="keyword">namespace </span>ublas {
<a name="l00083"></a>00083 <span class="keyword">template</span>&lt;<span class="keyword">class</span> C, <span class="keyword">class</span> IC&gt;
<a name="l00084"></a>00084 <span class="keyword">class </span>indexed_iterator;
<a name="l00085"></a>00085
<a name="l00086"></a>00086 <span class="keyword">template</span>&lt;<span class="keyword">class</span> V&gt;
<a name="l00087"></a>00087 <span class="keyword">class </span>index_pair;
<a name="l00088"></a>00088 <span class="keyword">template</span>&lt;<span class="keyword">class</span> M&gt;
<a name="l00089"></a>00089 <span class="keyword">class </span>index_triple;
<a name="l00090"></a>00090 }}}
<a name="l00091"></a>00091
<a name="l00092"></a>00092 <span class="keyword">namespace </span>std {
<a name="l00093"></a>00093 <span class="keyword">template</span>&lt;<span class="keyword">class</span> V&gt;
<a name="l00094"></a>00094 <span class="keyword">inline</span>
<a name="l00095"></a>00095 <span class="keywordtype">void</span> <a class="code" href="a00651.html#a7359c42bdbf22249101e062d45c8fec6">swap</a> (<a class="code" href="a00159.html">boost::numeric::ublas::index_pair&lt;V&gt;</a> i1, <a class="code" href="a00159.html">boost::numeric::ublas::index_pair&lt;V&gt;</a> i2) {
<a name="l00096"></a>00096 i1.<a class="code" href="a00159.html#a5d9515593fcc2a3e8933e541ed37cbb7">swap</a> (i2);
<a name="l00097"></a>00097 }
<a name="l00098"></a>00098 <span class="keyword">template</span>&lt;<span class="keyword">class</span> M&gt;
<a name="l00099"></a>00099 <span class="keyword">inline</span>
<a name="l00100"></a>00100 <span class="keywordtype">void</span> <a class="code" href="a00651.html#a7359c42bdbf22249101e062d45c8fec6">swap</a> (<a class="code" href="a00161.html">boost::numeric::ublas::index_triple&lt;M&gt;</a> i1, <a class="code" href="a00161.html">boost::numeric::ublas::index_triple&lt;M&gt;</a> i2) {
<a name="l00101"></a>00101 i1.<a class="code" href="a00161.html#a5ff8a61f677f76639d7dec80d800995b">swap</a> (i2);
<a name="l00102"></a>00102 }
<a name="l00103"></a>00103 <span class="comment">// iter_swap also needed for ICC on Itanium?</span>
<a name="l00104"></a>00104 <span class="keyword">template</span>&lt;<span class="keyword">class</span> C, <span class="keyword">class</span> IC&gt;
<a name="l00105"></a>00105 <span class="keyword">inline</span>
<a name="l00106"></a>00106 <span class="keywordtype">void</span> iter_swap (<a class="code" href="a00168.html" title="A class implementing an indexed random access iterator.">boost::numeric::ublas::indexed_iterator&lt;C, IC&gt;</a> it1,
<a name="l00107"></a>00107 <a class="code" href="a00168.html" title="A class implementing an indexed random access iterator.">boost::numeric::ublas::indexed_iterator&lt;C, IC&gt;</a> it2) {
<a name="l00108"></a>00108 <a class="code" href="a00651.html#a7359c42bdbf22249101e062d45c8fec6">swap</a> (*it1, *it2);
<a name="l00109"></a>00109 }
<a name="l00110"></a>00110 }
<a name="l00111"></a>00111 <span class="preprocessor">#endif</span>
<a name="l00112"></a>00112 <span class="preprocessor"></span>
<a name="l00113"></a>00113 <span class="preprocessor">#endif</span>
<a name="l00114"></a>00114 <span class="preprocessor"></span>
<a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="comment">// Comeau compiler - thanks to Kresimir Fresl</span>
<a name="l00117"></a>00117 <span class="preprocessor">#if defined (__COMO__) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00118"></a>00118 <span class="preprocessor"></span>
<a name="l00119"></a>00119 <span class="comment">// Missing std::abs overloads for float types in &lt;cmath&gt; are in &lt;cstdlib&gt;</span>
<a name="l00120"></a>00120 <span class="preprocessor">#if defined(__LIBCOMO__) &amp;&amp; (__LIBCOMO_VERSION__ &lt;= 31)</span>
<a name="l00121"></a>00121 <span class="preprocessor"></span><span class="preprocessor">#include &lt;cstdlib&gt;</span>
<a name="l00122"></a>00122 <span class="preprocessor">#endif</span>
<a name="l00123"></a>00123 <span class="preprocessor"></span>
<a name="l00124"></a>00124 <span class="preprocessor">#endif</span>
<a name="l00125"></a>00125 <span class="preprocessor"></span>
<a name="l00126"></a>00126
<a name="l00127"></a>00127 <span class="comment">// HP aCC C++ compiler</span>
<a name="l00128"></a>00128 <span class="preprocessor">#if defined (__HP_aCC) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00129"></a>00129 <span class="preprocessor"></span><span class="preprocessor"># if (__HP_aCC &gt;= 60000 )</span>
<a name="l00130"></a>00130 <span class="preprocessor"></span><span class="preprocessor"># define BOOST_UBLAS_USEFUL_ARRAY_PLACEMENT_NEW</span>
<a name="l00131"></a>00131 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00132"></a>00132 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00133"></a>00133 <span class="preprocessor"></span>
<a name="l00134"></a>00134
<a name="l00135"></a>00135 <span class="comment">// SGI MIPSpro C++ compiler</span>
<a name="l00136"></a>00136 <span class="preprocessor">#if defined (__sgi) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00137"></a>00137 <span class="preprocessor"></span>
<a name="l00138"></a>00138 <span class="comment">// Missing std::abs overloads for float types in &lt;cmath&gt; are in &lt;cstdlib&gt;</span>
<a name="l00139"></a>00139 <span class="comment">// This test should be library version specific.</span>
<a name="l00140"></a>00140 <span class="preprocessor">#include &lt;cstdlib&gt;</span>
<a name="l00141"></a>00141
<a name="l00142"></a>00142 <span class="preprocessor">#if __COMPILER_VERSION &gt;=650</span>
<a name="l00143"></a>00143 <span class="preprocessor"></span><span class="comment">// By inspection of compiler results - thanks to Peter Schmitteckert</span>
<a name="l00144"></a>00144 <span class="preprocessor">#define BOOST_UBLAS_USEFUL_ARRAY_PLACEMENT_NEW</span>
<a name="l00145"></a>00145 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00146"></a>00146 <span class="preprocessor"></span>
<a name="l00147"></a>00147 <span class="preprocessor">#endif</span>
<a name="l00148"></a>00148 <span class="preprocessor"></span>
<a name="l00149"></a>00149
<a name="l00150"></a>00150 <span class="comment">// Metrowerks Codewarrior</span>
<a name="l00151"></a>00151 <span class="preprocessor">#if defined (__MWERKS__) &amp;&amp; ! defined (BOOST_STRICT_CONFIG)</span>
<a name="l00152"></a>00152 <span class="preprocessor"></span>
<a name="l00153"></a>00153 <span class="comment">// 8.x</span>
<a name="l00154"></a>00154 <span class="preprocessor">#if __MWERKS__ &lt;= 0x3003</span>
<a name="l00155"></a>00155 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_UNSUPPORTED_COMPILER 1</span>
<a name="l00156"></a>00156 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00157"></a>00157 <span class="preprocessor"></span>
<a name="l00158"></a>00158 <span class="preprocessor">#endif</span>
<a name="l00159"></a>00159 <span class="preprocessor"></span>
<a name="l00160"></a>00160
<a name="l00161"></a>00161 <span class="comment">// Detect other compilers with serious defects - override by defineing BOOST_UBLAS_UNSUPPORTED_COMPILER=0</span>
<a name="l00162"></a>00162 <span class="preprocessor">#ifndef BOOST_UBLAS_UNSUPPORTED_COMPILER</span>
<a name="l00163"></a>00163 <span class="preprocessor"></span><span class="preprocessor">#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) || defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || defined(BOOST_NO_SFINAE) || defined(BOOST_NO_STDC_NAMESPACE)</span>
<a name="l00164"></a>00164 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_UNSUPPORTED_COMPILER 1</span>
<a name="l00165"></a>00165 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00166"></a>00166 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00167"></a>00167 <span class="preprocessor"></span>
<a name="l00168"></a>00168 <span class="comment">// Cannot continue with an unsupported compiler</span>
<a name="l00169"></a>00169 <span class="preprocessor">#if defined(BOOST_UBLAS_UNSUPPORTED_COMPILER) &amp;&amp; (BOOST_UBLAS_UNSUPPORTED_COMPILER != 0)</span>
<a name="l00170"></a>00170 <span class="preprocessor"></span><span class="preprocessor">#error Your compiler and/or configuration is unsupported by this verions of uBLAS. Define BOOST_UBLAS_UNSUPPORTED_COMPILER=0 to override this message. Boost 1.32.0 includes uBLAS with support for many older compilers.</span>
<a name="l00171"></a>00171 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00172"></a>00172 <span class="preprocessor"></span>
<a name="l00173"></a>00173
<a name="l00174"></a>00174
<a name="l00175"></a>00175 <span class="comment">// Enable performance options in RELEASE mode</span>
<a name="l00176"></a>00176 <span class="preprocessor">#if defined (NDEBUG) || defined (BOOST_UBLAS_NDEBUG)</span>
<a name="l00177"></a>00177 <span class="preprocessor"></span>
<a name="l00178"></a>00178 <span class="preprocessor">#ifndef BOOST_UBLAS_INLINE</span>
<a name="l00179"></a>00179 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_INLINE inline</span>
<a name="l00180"></a>00180 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00181"></a>00181 <span class="preprocessor"></span>
<a name="l00182"></a>00182 <span class="comment">// Do not check sizes!</span>
<a name="l00183"></a>00183 <span class="preprocessor">#define BOOST_UBLAS_USE_FAST_SAME</span>
<a name="l00184"></a>00184 <span class="preprocessor"></span>
<a name="l00185"></a>00185 <span class="comment">// NO runtime error checks with BOOST_UBLAS_CHECK macro</span>
<a name="l00186"></a>00186 <span class="preprocessor">#ifndef BOOST_UBLAS_CHECK_ENABLE</span>
<a name="l00187"></a>00187 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_CHECK_ENABLE 0</span>
<a name="l00188"></a>00188 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00189"></a>00189 <span class="preprocessor"></span>
<a name="l00190"></a>00190 <span class="comment">// NO type compatibility numeric checks</span>
<a name="l00191"></a>00191 <span class="preprocessor">#ifndef BOOST_UBLAS_TYPE_CHECK</span>
<a name="l00192"></a>00192 <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_TYPE_CHECK 0</span>
<a name="l00193"></a>00193 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00194"></a>00194 <span class="preprocessor"></span>
<a name="l00195"></a>00195
<a name="l00196"></a>00196 <span class="comment">// Disable performance options in DEBUG mode</span>
<a name="l00197"></a>00197 <span class="preprocessor">#else</span>
<a name="l00198"></a>00198 <span class="preprocessor"></span>
<a name="l00199"></a>00199 <span class="preprocessor">#ifndef BOOST_UBLAS_INLINE</span>
<a name="l00200"></a><a class="code" href="a00603.html#a578c14139742374e9a04e5afcb6cd24c">00200</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_INLINE</span>
<a name="l00201"></a>00201 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00202"></a>00202 <span class="preprocessor"></span>
<a name="l00203"></a>00203 <span class="comment">// Enable runtime error checks with BOOST_UBLAS_CHECK macro. Check bounds etc</span>
<a name="l00204"></a>00204 <span class="preprocessor">#ifndef BOOST_UBLAS_CHECK_ENABLE</span>
<a name="l00205"></a><a class="code" href="a00603.html#a80f74b3d066e7ae1e49a0acd049c1aa3">00205</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_CHECK_ENABLE 1</span>
<a name="l00206"></a>00206 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00207"></a>00207 <span class="preprocessor"></span>
<a name="l00208"></a>00208 <span class="comment">// Type compatibiltity numeric checks</span>
<a name="l00209"></a>00209 <span class="preprocessor">#ifndef BOOST_UBLAS_TYPE_CHECK</span>
<a name="l00210"></a><a class="code" href="a00603.html#a20205a89cb81145766e74d5a1d27f049">00210</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_TYPE_CHECK 1</span>
<a name="l00211"></a>00211 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00212"></a>00212 <span class="preprocessor"></span>
<a name="l00213"></a>00213 <span class="preprocessor">#endif</span>
<a name="l00214"></a>00214 <span class="preprocessor"></span>
<a name="l00215"></a>00215
<a name="l00216"></a>00216 <span class="comment">/*</span>
<a name="l00217"></a>00217 <span class="comment"> * Type compatibility checks</span>
<a name="l00218"></a>00218 <span class="comment"> * Control type compatibility numeric runtime checks for non dense matrices.</span>
<a name="l00219"></a>00219 <span class="comment"> * Require additional storage and complexity</span>
<a name="l00220"></a>00220 <span class="comment"> */</span>
<a name="l00221"></a>00221 <span class="preprocessor">#if BOOST_UBLAS_TYPE_CHECK</span>
<a name="l00222"></a>00222 <span class="preprocessor"></span><span class="keyword">template</span> &lt;<span class="keyword">class</span> Dummy&gt;
<a name="l00223"></a><a class="code" href="a00592.html">00223</a> <span class="keyword">struct </span><a class="code" href="a00592.html">disable_type_check</a>
<a name="l00224"></a>00224 {
<a name="l00225"></a><a class="code" href="a00592.html#a68da09b256bfc7f527a2f59cf9a54b9f">00225</a> <span class="keyword">static</span> <span class="keywordtype">bool</span> <a class="code" href="a00592.html#a68da09b256bfc7f527a2f59cf9a54b9f">value</a>;
<a name="l00226"></a>00226 };
<a name="l00227"></a>00227 <span class="keyword">template</span> &lt;<span class="keyword">class</span> Dummy&gt;
<a name="l00228"></a>00228 <span class="keywordtype">bool</span> <a class="code" href="a00592.html">disable_type_check&lt;Dummy&gt;::value</a> = <span class="keyword">false</span>;
<a name="l00229"></a>00229 <span class="preprocessor">#endif</span>
<a name="l00230"></a>00230 <span class="preprocessor"></span><span class="preprocessor">#ifndef BOOST_UBLAS_TYPE_CHECK_EPSILON</span>
<a name="l00231"></a><a class="code" href="a00603.html#afa88d2d3bb1c8ca6365f7d0953a067d8">00231</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_TYPE_CHECK_EPSILON (type_traits&lt;real_type&gt;::type_sqrt (std::numeric_limits&lt;real_type&gt;::epsilon ()))</span>
<a name="l00232"></a>00232 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00233"></a>00233 <span class="preprocessor"></span><span class="preprocessor">#ifndef BOOST_UBLAS_TYPE_CHECK_MIN</span>
<a name="l00234"></a><a class="code" href="a00603.html#ada9c3113ffcce841cb3d16e3cf8c60c9">00234</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_TYPE_CHECK_MIN (type_traits&lt;real_type&gt;::type_sqrt ( (std::numeric_limits&lt;real_type&gt;::min) ()))</span>
<a name="l00235"></a>00235 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00236"></a>00236 <span class="preprocessor"></span>
<a name="l00237"></a>00237
<a name="l00238"></a>00238 <span class="comment">/*</span>
<a name="l00239"></a>00239 <span class="comment"> * General Configuration</span>
<a name="l00240"></a>00240 <span class="comment"> */</span>
<a name="l00241"></a>00241
<a name="l00242"></a>00242 <span class="comment">// Proxy shortcuts overload the alreadly heavily over used operator ()</span>
<a name="l00243"></a>00243 <span class="comment">//#define BOOST_UBLAS_ENABLE_PROXY_SHORTCUTS</span>
<a name="l00244"></a>00244
<a name="l00245"></a>00245 <span class="comment">// In order to simplify debugging is is possible to simplify expression template</span>
<a name="l00246"></a>00246 <span class="comment">// so they are restricted to a single operation</span>
<a name="l00247"></a>00247 <span class="comment">// #define BOOST_UBLAS_SIMPLE_ET_DEBUG</span>
<a name="l00248"></a>00248
<a name="l00249"></a>00249 <span class="comment">// Use invariant hoisting.</span>
<a name="l00250"></a>00250 <span class="comment">// #define BOOST_UBLAS_USE_INVARIANT_HOISTING</span>
<a name="l00251"></a>00251
<a name="l00252"></a>00252 <span class="comment">// Use Duff&#39;s device in element access loops</span>
<a name="l00253"></a>00253 <span class="comment">// #define BOOST_UBLAS_USE_DUFF_DEVICE</span>
<a name="l00254"></a>00254
<a name="l00255"></a>00255 <span class="comment">// Choose evaluation method for dense vectors and matrices</span>
<a name="l00256"></a>00256 <span class="preprocessor">#if !(defined(BOOST_UBLAS_USE_INDEXING) || defined(BOOST_UBLAS_USE_ITERATING))</span>
<a name="l00257"></a><a class="code" href="a00603.html#a24a352c0b260f952253241e472b26dfc">00257</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_USE_INDEXING</span>
<a name="l00258"></a>00258 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00259"></a>00259 <span class="preprocessor"></span><span class="comment">// #define BOOST_UBLAS_ITERATOR_THRESHOLD 0</span>
<a name="l00260"></a>00260
<a name="l00261"></a>00261 <span class="comment">// Use indexed iterators - unsupported implementation experiment</span>
<a name="l00262"></a>00262 <span class="comment">// #define BOOST_UBLAS_USE_INDEXED_ITERATOR</span>
<a name="l00263"></a>00263
<a name="l00264"></a>00264 <span class="comment">// Alignment of bounded_array type</span>
<a name="l00265"></a>00265 <span class="preprocessor">#ifndef BOOST_UBLAS_BOUNDED_ARRAY_ALIGN</span>
<a name="l00266"></a><a class="code" href="a00603.html#af3635b2cc4ceb61fd48dcbc030168202">00266</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_BOUNDED_ARRAY_ALIGN</span>
<a name="l00267"></a>00267 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00268"></a>00268 <span class="preprocessor"></span>
<a name="l00269"></a>00269 <span class="comment">// Enable different sparse element proxies</span>
<a name="l00270"></a>00270 <span class="preprocessor">#ifndef BOOST_UBLAS_NO_ELEMENT_PROXIES</span>
<a name="l00271"></a>00271 <span class="preprocessor"></span><span class="comment">// Sparse proxies prevent reference invalidation problems in expressions such as:</span>
<a name="l00272"></a>00272 <span class="comment">// a [1] = a [0] = 1 Thanks to Marc Duflot for spotting this.</span>
<a name="l00273"></a>00273 <span class="comment">// #define BOOST_UBLAS_STRICT_MAP_ARRAY</span>
<a name="l00274"></a><a class="code" href="a00603.html#a67b6d8ea14f3dba9e0bea4aa73789c20">00274</a> <span class="preprocessor">#define BOOST_UBLAS_STRICT_VECTOR_SPARSE</span>
<a name="l00275"></a><a class="code" href="a00603.html#a12d03e51d15fb8374dbd83679f9131d4">00275</a> <span class="preprocessor"></span><span class="preprocessor">#define BOOST_UBLAS_STRICT_MATRIX_SPARSE</span>
<a name="l00276"></a>00276 <span class="preprocessor"></span><span class="comment">// Hermitian matrices use element proxies to allow assignment to conjugate triangle</span>
<a name="l00277"></a><a class="code" href="a00603.html#a02402661b3dca6d00e443082c483ecb4">00277</a> <span class="preprocessor">#define BOOST_UBLAS_STRICT_HERMITIAN</span>
<a name="l00278"></a>00278 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00279"></a>00279 <span class="preprocessor"></span>
<a name="l00280"></a>00280 <span class="comment">// Define to configure special settings for reference returning members</span>
<a name="l00281"></a>00281 <span class="comment">// #define BOOST_UBLAS_REFERENCE_CONST_MEMBER</span>
<a name="l00282"></a>00282 <span class="comment">// #define BOOST_UBLAS_PROXY_CONST_MEMBER</span>
<a name="l00283"></a>00283
<a name="l00284"></a>00284
<a name="l00285"></a>00285 <span class="comment">// Include type declerations and functions</span>
<a name="l00286"></a>00286 <span class="preprocessor">#include &lt;boost/numeric/ublas/fwd.hpp&gt;</span>
<a name="l00287"></a>00287 <span class="preprocessor">#include &lt;boost/numeric/ublas/detail/definitions.hpp&gt;</span>
<a name="l00288"></a>00288
<a name="l00289"></a>00289
<a name="l00290"></a>00290 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00603.html">config.hpp</a> </li>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(7)"><span class="SelectionMark">&#160;</span>Friends</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(8)"><span class="SelectionMark">&#160;</span>Defines</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<small>
<small>
<small>
<table width="100%">
<tr>
<td align="right">
Copyright &#169; 2010-2011 David Bellot - Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">Boost Software License, Version 1.0.</a>
</td>
</tr>
</table>
</small>
</small>
</small>