Skip to content

Commit 857650b

Browse files
committed
COLAMD: add octave support
tests don't work
1 parent 5d4127f commit 857650b

File tree

6 files changed

+43
-9
lines changed

6 files changed

+43
-9
lines changed

COLAMD/MATLAB/colamd_make.m

+14-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,25 @@
1313
% Acknowledgements: This work was supported by the National Science Foundation,
1414
% under grants DMS-9504974 and DMS-9803599.
1515

16+
have_octave = (exist ('OCTAVE_VERSION', 'builtin') == 5) ;
17+
1618
details = 0 ; % 1 if details of each command are to be printed
1719
d = '' ;
18-
if (~isempty (strfind (computer, '64')))
20+
if (~have_octave && ~isempty (strfind (computer, '64')))
1921
d = '-largeArrayDims' ;
2022
end
2123

22-
% MATLAB 8.3.0 now has a -silent option to keep 'mex' from burbling too much
23-
if (~verLessThan ('matlab', '8.3.0'))
24-
d = ['-silent ' d] ;
24+
if (have_octave)
25+
d = ['--silent ' d];
26+
else
27+
% MATLAB 8.3.0 now has a -silent option to keep 'mex' from burbling too much
28+
if (~verLessThan ('matlab', '8.3.0'))
29+
d = ['-silent ' d] ;
30+
end
31+
end
32+
33+
if (have_octave)
34+
d = ['-DOCTAVE ' d]
2535
end
2636

2737
src = '../Source/colamd_l.c ../../SuiteSparse_config/SuiteSparse_config.c' ;

COLAMD/MATLAB/colamd_test.m

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
% Acknowledgements: This work was supported by the National Science Foundation,
2121
% under grants DMS-9504974 and DMS-9803599.
2222

23+
have_octave = (exist ('OCTAVE_VERSION', 'builtin') == 5) ;
24+
2325
help colamd_test
2426

2527

@@ -32,6 +34,10 @@
3234
end
3335
cmd = sprintf (...
3436
'mex -O %s -I../../SuiteSparse_config -I../Include ', d) ;
37+
if(have_octave)
38+
warning ("off", "Octave:possible-matlab-short-circuit-operator")
39+
cmd = [cmd '-DOCTAVE ']
40+
end
3541
src = '../Source/colamd_l.c ../../SuiteSparse_config/SuiteSparse_config.c' ;
3642
if (~(ispc || ismac))
3743
% for POSIX timing routine
@@ -422,6 +428,8 @@ function check_perm (p, A)
422428
% mtype 2: rectangular
423429
% mtype 3: symmetric (mmax is ignored)
424430

431+
have_octave = (exist ('OCTAVE_VERSION', 'builtin') == 5) ;
432+
425433
n = irand (nmax) ;
426434
if (mtype ~= 2)
427435
% square
@@ -430,7 +438,11 @@ function check_perm (p, A)
430438
m = irand (mmax) ;
431439
end
432440

433-
A = sprand (m, n, 10 / max (m,n)) ;
441+
if (have_octave)
442+
A = sprand (m, n, rand() / 10) ;
443+
else
444+
A = sprand (m, n, 10 / max(m, n)) ;
445+
end
434446

435447
if (drows > 0)
436448
% add dense rows

COLAMD/MATLAB/colamdmex.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@
3939

4040
#include "colamd.h"
4141
#include "mex.h"
42-
#include "matrix.h"
4342
#include <stdlib.h>
4443
#include <string.h>
4544

45+
#ifndef OCTAVE
46+
#include "matrix.h"
47+
#endif
4648
/* ========================================================================== */
4749
/* === colamd mexFunction =================================================== */
4850
/* ========================================================================== */

COLAMD/MATLAB/colamdtestmex.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,14 @@
5353

5454
#include "colamd.h"
5555
#include "mex.h"
56-
#include "matrix.h"
5756
#include <stdlib.h>
5857
#include <string.h>
5958

59+
#ifndef OCTAVE
60+
#include "matrix.h"
61+
#endif
62+
63+
6064
static void dump_matrix
6165
(
6266
int64_t A [ ],

COLAMD/MATLAB/symamdmex.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@
4141

4242
#include "colamd.h"
4343
#include "mex.h"
44-
#include "matrix.h"
4544
#include <stdlib.h>
4645

46+
#ifndef OCTAVE
47+
#include "matrix.h"
48+
#endif
49+
4750
/* ========================================================================== */
4851
/* === symamd mexFunction =================================================== */
4952
/* ========================================================================== */

COLAMD/MATLAB/symamdtestmex.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@
5454

5555
#include "colamd.h"
5656
#include "mex.h"
57-
#include "matrix.h"
5857
#include <stdlib.h>
5958
#include <string.h>
6059

60+
#ifndef OCTAVE
61+
#include "matrix.h"
62+
#endif
63+
6164
static void dump_matrix
6265
(
6366
int64_t A [ ],

0 commit comments

Comments
 (0)