~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to CSparse/MATLAB/Test/test_sep.m

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2007-05-29 09:36:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529093629-zowquo0b7slkk6nc
Tags: 3.0.0-2
* suitesparse builds properly twice in a row
* Bug fix: "suitesparse - FTBFS: Broken build depens: libgfortran1-dev",
  thanks to Bastian Blank (Closes: #426349).
* Bug fix: "suitesparse_3.0.0-1: FTBFS: build-depends on
  libgfortran1-dev", thanks to Steve Langasek (Closes: #426354).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
%
8
8
% See also: testall
9
9
 
10
 
%   Copyright 2006, Timothy A. Davis.
 
10
%   Copyright 2006-2007, Timothy A. Davis.
11
11
%   http://www.cise.ufl.edu/research/sparse
12
12
 
13
13
 
50
50
    subplot (2,3,3) ; spy (A (a,b)) ; title ('edge sep') ;
51
51
    subplot (2,3,6) ; cs_dmspy (A (a,b)) ; title ('node sep') ;
52
52
 
53
 
    [s as bs] = vtxsep (A,a,b) ;
54
 
 
 
53
    [s as bs] = vtxsep (A,a,b) ;                                        %#ok
55
54
    [s2 a2 b2] = cs_sep (A,a,b) ;
56
55
 
57
56
    p2 = [a2 b2 s2] ;
68
67
 
69
68
    na = length (a2) ;
70
69
    nb = length (b2) ;
71
 
    ns = length (s2) ;
 
70
    ns = length (s2) ;                                                  %#ok
72
71
 
73
72
    nab = na + nb ;
74
73