1% No preconditioner is used.
2%
3% [M1,M2] = divand_pc_none(iB,H,R)
4%
5% Dummy function for requiring that no preconditioner is used in divand.
6%
7% See also:
8% diavnd_pc_michol, diavnd_pc_sqrtiB
9
10function [M1,M2] = divand_pc_none(iB,H,R)
11
12M1 = [];
13M2 = [];
14
15
16
17% Copyright (C) 2014 Alexander Barth <a.barth@ulg.ac.be>
18%
19% This program is free software; you can redistribute it and/or modify it under
20% the terms of the GNU General Public License as published by the Free Software
21% Foundation; either version 2 of the License, or (at your option) any later
22% version.
23%
24% This program is distributed in the hope that it will be useful, but WITHOUT
25% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
27% details.
28%
29% You should have received a copy of the GNU General Public License along with
30% this program; if not, see <http://www.gnu.org/licenses/>.
31