view test/recursion.tst @ 27940:ec0690a6955c stable rc-5-1-90

Lock amd and symbfact to avoid segmentation fault with SuiteSparse (bug #57435). * dldfcn/amd.cc (Famd), dldfcn/symbfact.cc (Fsymbfact): Use DEFMETHOD_DLD. Call "mlock" to avoid having invalid function pointers in global SuiteSparse_config structure when the functions are unloaded (e.g. with "clear functions").
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 22 Dec 2019 01:01:27 +0100
parents 00f796120a6d
children b442ec6dda5c
line wrap: on
line source

## Copyright (C) 2006-2019 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.

%!function y = f (x)
%!  if (x == 1)
%!    y = x;
%!    return;
%!  else
%!    y = x * f (x-1);
%!  endif
%!endfunction
%!
%!assert (f (5), 120)

%!function y = f (x)
%!  if (x == 1)
%!    y = x;
%!    return;
%!  else
%!    y = f (x-1) * x;
%!  endif
%!endfunction
%!
%!assert (f (5), 120)

%!function r = f (x)
%!  persistent p = 1;
%!  if (x == 1)
%!    f (x + 1);
%!    r = p;
%!  else
%!    clear p
%!    p = 13;
%!  endif
%!endfunction
%!
%!error <'p' undefined> f (1)

%!function r = f (x)
%!  persistent p = 1;
%!  if (x == 1)
%!    f (x + 1);
%!    r = p;
%!  else
%!    p = 13;
%!  endif
%!endfunction
%!
%!assert (f (1), 13)


%%FIXME: Need test for maximum recursion depth