comparison libinterp/dldfcn/symbfact.cc @ 20898:8da80da1ac37

maint: Use ovl() more places in the code.
author Rik <rik@octave.org>
date Mon, 14 Dec 2015 17:53:27 -0800
parents 1142cf6abc0d
children b17fda023ca6
comparison
equal deleted inserted replaced
20897:9aad16a799c9 20898:8da80da1ac37
94 A sparse boolean matrix whose structure is that of the Cholesky\n\ 94 A sparse boolean matrix whose structure is that of the Cholesky\n\
95 factorization as determined by @var{typ}.\n\ 95 factorization as determined by @var{typ}.\n\
96 @end table\n\ 96 @end table\n\
97 @end deftypefn") 97 @end deftypefn")
98 { 98 {
99 octave_value_list retval; 99 #ifdef HAVE_CHOLMOD
100
100 int nargin = args.length (); 101 int nargin = args.length ();
101 102
102 if (nargin < 1 || nargin > 3 || nargout > 5) 103 if (nargin < 1 || nargin > 3 || nargout > 5)
103 print_usage (); 104 print_usage ();
104 105
105 #ifdef HAVE_CHOLMOD 106 octave_value_list retval;
106 107
107 cholmod_common Common; 108 cholmod_common Common;
108 cholmod_common *cm = &Common; 109 cholmod_common *cm = &Common;
109 CHOLMOD_NAME(start) (cm); 110 CHOLMOD_NAME(start) (cm);
110 111