-
Notifications
You must be signed in to change notification settings - Fork 0
/
bicgstab_8h_source.html
82 lines (82 loc) · 5.51 KB
/
bicgstab_8h_source.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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>cusp: bicgstab.h Source File</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.6.3 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</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>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<h1>bicgstab.h</h1><a href="bicgstab_8h.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 2008-2009 NVIDIA Corporation</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
<a name="l00005"></a>00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
<a name="l00006"></a>00006 <span class="comment"> * You may obtain a copy of the License at</span>
<a name="l00007"></a>00007 <span class="comment"> *</span>
<a name="l00008"></a>00008 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00009"></a>00009 <span class="comment"> *</span>
<a name="l00010"></a>00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00011"></a>00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00012"></a>00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00013"></a>00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00014"></a>00014 <span class="comment"> * limitations under the License.</span>
<a name="l00015"></a>00015 <span class="comment"> */</span>
<a name="l00016"></a>00016
<a name="l00021"></a>00021 <span class="preprocessor">#pragma once</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span>
<a name="l00023"></a>00023 <span class="preprocessor">#include <cusp/detail/config.h></span>
<a name="l00024"></a>00024
<a name="l00025"></a>00025 <span class="keyword">namespace </span>cusp
<a name="l00026"></a>00026 {
<a name="l00027"></a>00027 <span class="keyword">namespace </span>krylov
<a name="l00028"></a>00028 {
<a name="l00039"></a>00039 <span class="keyword">template</span> <<span class="keyword">class </span>LinearOperator,
<a name="l00040"></a>00040 <span class="keyword">class </span>Vector>
<a name="l00041"></a>00041 <span class="keywordtype">void</span> <a class="code" href="group__krylov__methods.html#ga334ace7cd006e601af524c0032c6771c">bicgstab</a>(LinearOperator& A,
<a name="l00042"></a>00042 Vector& x,
<a name="l00043"></a>00043 Vector& b);
<a name="l00044"></a>00044
<a name="l00049"></a>00049 <span class="keyword">template</span> <<span class="keyword">class </span>LinearOperator,
<a name="l00050"></a>00050 <span class="keyword">class </span>Vector,
<a name="l00051"></a>00051 <span class="keyword">class </span>Monitor>
<a name="l00052"></a>00052 <span class="keywordtype">void</span> <a class="code" href="group__krylov__methods.html#ga334ace7cd006e601af524c0032c6771c">bicgstab</a>(LinearOperator& A,
<a name="l00053"></a>00053 Vector& x,
<a name="l00054"></a>00054 Vector& b,
<a name="l00055"></a>00055 Monitor& monitor);
<a name="l00056"></a>00056
<a name="l00111"></a>00111 <span class="keyword">template</span> <<span class="keyword">class </span>LinearOperator,
<a name="l00112"></a>00112 <span class="keyword">class </span>Vector,
<a name="l00113"></a>00113 <span class="keyword">class </span>Monitor,
<a name="l00114"></a>00114 <span class="keyword">class </span>Preconditioner>
<a name="l00115"></a>00115 <span class="keywordtype">void</span> <a class="code" href="group__krylov__methods.html#ga334ace7cd006e601af524c0032c6771c">bicgstab</a>(LinearOperator& A,
<a name="l00116"></a>00116 Vector& x,
<a name="l00117"></a>00117 Vector& b,
<a name="l00118"></a>00118 Monitor& monitor,
<a name="l00119"></a>00119 Preconditioner& M);
<a name="l00123"></a>00123 } <span class="comment">// end namespace krylov</span>
<a name="l00124"></a>00124 } <span class="comment">// end namespace cusp</span>
<a name="l00125"></a>00125
<a name="l00126"></a>00126 <span class="preprocessor">#include <cusp/krylov/detail/bicgstab.inl></span>
<a name="l00127"></a>00127
</pre></div></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon May 30 15:12:24 2011 for cusp by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>