Skip to content

Commit

Permalink
No change
Browse files Browse the repository at this point in the history
  • Loading branch information
YingzhouLi committed Oct 1, 2017
1 parent 2c2986e commit fa63769
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion make.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ function make(installflag)
startup_path_data = importdata(matlab_startup_file);
fid = fopen(matlab_startup_file, 'w+');
for i=1:length(startup_path_data)
if(~strcmp(startup_path_data{i},['run ' install_path 'METIS_startup.m']))
if(~strcmp(startup_path_data{i}, ...
['run ' install_path 'METIS_startup.m']))
fprintf(fid,'%s\n',startup_path_data{i});
end
end
Expand Down
4 changes: 2 additions & 2 deletions src/METIS_SepPartition_mex.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void mexFunction
idx_t *sepidx;
idx_t *lgraphidx;
idx_t *rgraphidx;

// Metis main function
idx_t i, nnvtxs=0;
idx_t ptlgraph, ptrgraph, ptsep;
Expand Down Expand Up @@ -88,7 +88,7 @@ void mexFunction
ctrl->compress = 0;
}
}

// compress the graph
if (ctrl->compress)
ctrl->compress = 0;
Expand Down

0 comments on commit fa63769

Please sign in to comment.