Skip to content

Commit

Permalink
Suppress final score if not verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
Romesh Abeysuriya committed Mar 28, 2017
1 parent 8c384c8 commit 64b0214
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion signflip/findflip.m
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@

end

fprintf('Final Score=%f\n',score)
if options.verbose
fprintf('Final Score=%f\n',score)
end

% Among the equivalent flippings, we keep the one w/ the lowest no. of flips
for in = 1:N
Expand Down

0 comments on commit 64b0214

Please sign in to comment.