You are here:
Concepts
>
Concepts Web
>
Class documentation
Class documentation of Concepts
Loading...
Searching...
No Matches
operator
umfpack.hh
Go to the documentation of this file.
1
6
#ifndef UMFPACK_HH
7
#define UMFPACK_HH
8
9
#include "
basics/typedefs.hh
"
10
#include "
compositions.hh
"
11
12
namespace
concepts
{
13
14
// forwards
15
template
<
typename
F>
16
class
SparseMatrix;
17
18
// *************************************************************** Umfpack **
19
39
class
Umfpack
:
public
Operator
<Real> {
40
public
:
48
Umfpack
(
const
SparseMatrix<Real>
& A,
bool
symmetric
=
false
);
49
virtual
~Umfpack
();
50
virtual
void
operator()
(
const
Function<Real>
&
fncY
,
Function<Real>
&
fncX
);
51
void
operator()
(
const
Vector<Real>
&
fncY
,
Vector<Real>
&
fncX
);
52
uint
iterations()
const
{
return
0; }
53
protected
:
54
virtual
std::ostream&
info
(std::ostream&
os
)
const
;
55
private
:
57
const
uint
n_;
58
60
concepts::Array<long int>
Ap_, Ai_;
62
concepts::Array<Real>
Ax_;
64
void
* symbolic_, * numeric_;
65
67
bool
factored_;
68
};
69
70
}
// namespace concepts
71
72
#endif
// UMFPACK_HH
concepts::Array
Definition
array.hh:46
concepts::Function
Definition
basis.hh:21
concepts::Operator
Definition
compositions.hh:42
concepts::Operator< Real >::operator()
virtual void operator()()
concepts::SparseMatrix
Definition
sparseMatrix.hh:65
concepts::Umfpack
Definition
umfpack.hh:39
concepts::Umfpack::info
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
concepts::Umfpack::Umfpack
Umfpack(const SparseMatrix< Real > &A, bool symmetric=false)
concepts::Vector
Definition
vector.hh:39
concepts
Definition
pml_formula.h:16
concepts::makeSet
Set< F > makeSet(uint n, const F &first,...)
Definition
set.hh:320
compositions.hh
typedefs.hh
Generated on Wed Sep 13 2023 21:06:23 for Concepts by
1.9.8