Skip to content

Commit

Permalink
Fixed problem with low_memory variable not used
Browse files Browse the repository at this point in the history
  • Loading branch information
ilent2 committed Apr 4, 2020
1 parent a6b38cc commit a3c9441
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/dda_vaterite.m
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
low_memory = false;

radius = logspace(-8, -6.2147, 20);
% radius = 1.0e-6; % Try with low_memory
% radius = logspace(-8, -6, 20);
times = zeros(size(radius));

Expand Down Expand Up @@ -125,7 +126,8 @@
'spacing', spacing, ...
'z_rotational_symmetry', 4, ...
'z_mirror_symmetry', true, ...
'wavelength0', wavelength0);
'wavelength0', wavelength0, ...
'low_memory', low_memory);

times(ii) = toc();

Expand Down

0 comments on commit a3c9441

Please sign in to comment.