Skip to content

Commit 6d0ace4

Browse files
author
Tuomas Sivula
committed
Change gp_ia cache disabled by default
1 parent 154c676 commit 6d0ace4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gp/gp_ia.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
% seperately for each sample in a case of non-gaussian
6666
% likelihood ('on','off'). Cache enabled consumes more
6767
% memory but prevents possible recalculations in the
68-
% future. Default 'on'.
68+
% future. Default 'off'.
6969
%
7070
% References
7171
%
@@ -119,7 +119,7 @@
119119
ip.addParamValue('opt_optim', [], @isstruct)
120120
ip.addParamValue('opt_hmc', [], @isstruct);
121121
ip.addParamValue('persistence_reset', 0, @(x) ~isempty(x) && isreal(x));
122-
ip.addParamValue('cache', 'on', @(x) ischar(x) && ismember(x,{'on','off'}));
122+
ip.addParamValue('cache', 'off', @(x) ischar(x) && ismember(x,{'on','off'}));
123123
ip.addParamValue('display', 'on', @(x) islogical(x) || isreal(x) || ...
124124
ismember(x,{'on' 'off' 'iter'}))
125125
if numel(varargin)==0 || isnumeric(varargin{1})

0 commit comments

Comments
 (0)