File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ function matlab_install(SuiteSparse_path)
29
29
fprintf(' gpcf_ppcs0 \n gpcf_ppcs1 \n gpcf_ppcs2 \n gpcf_ppcs3 \n\n\n ' )
30
30
elseif strcmp(SuiteSparse_path , ' SuiteSparseOn' )
31
31
cdir = pwd ;
32
- cd SuiteSparse
32
+ cd SuiteSparse //Change this to correspond your own settings!
33
33
SuiteSparse_path = path_spaces([pwd ' /' ]);
34
34
35
35
36
36
% Compile SuiteSparse
37
37
fprintf(' Compiling SuiteSparse. This may take a while \n \n ' )
38
- paths = SuiteSparse_install(false );
38
+ SuiteSparse_install(false );
39
39
40
40
cd(cdir )
41
41
fprintf(' Compiling GPstuff. This may take a while \n \n ' )
@@ -83,13 +83,14 @@ function matlab_install(SuiteSparse_path)
83
83
addpath(S{i });
84
84
fprintf (' addpath %s\n ' , S{i }) ;
85
85
end
86
-
87
- if nargin == 1
88
- fprintf (' \n ' )
89
- for k = 1 : length (paths )
90
- fprintf (' addpath %s\n ' , paths {k }) ;
91
- end
92
- end
86
+
87
+ % SuiteSparse paths not available in the newest SuiteSparse version
88
+ % if nargin==1
89
+ % fprintf ('\n')
90
+ % for k = 1:length (paths)
91
+ % fprintf ('addpath %s\n', paths {k}) ;
92
+ % end
93
+ % end
93
94
end
94
95
95
96
function path = path_spaces(path )
You can’t perform that action at this time.
0 commit comments