Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
f77fdf6a
Commit
f77fdf6a
authored
Apr 12, 2010
by
Thomas Witkowski
Browse files
Small bugfix in new MTL4.
parent
d6996c73
Changes
1
Show whitespace changes
Inline
Side-by-side
AMDiS/src/ITL_Solver.h
View file @
f77fdf6a
...
...
@@ -279,8 +279,8 @@ namespace AMDiS {
{
public:
template
<
class
LinOp
,
class
X
,
class
B
,
class
L
,
class
R
,
class
I
>
int
operator
()(
const
LinOp
&
A
,
X
&
x
,
const
B
&
b
,
const
L
&
,
const
R
&
,
I
&
iter
,
int
ell
)
{
return
itl
::
gmres
(
A
,
x
,
b
,
iter
,
ell
);
}
int
operator
()(
const
LinOp
&
A
,
X
&
x
,
const
B
&
b
,
const
L
&
l
,
const
R
&
r
,
I
&
iter
,
int
ell
)
{
return
itl
::
gmres
(
A
,
x
,
b
,
l
,
r
,
iter
,
ell
);
}
};
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment