1function test80
2%TEST80 rerun test06 with different matrices
3
4% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
5% SPDX-License-Identifier: Apache-2.0
6
7rng ('default') ;
8n = 33 ;
9A = speye (n) ;
10A (:,1) = rand (n,1) ;
11B = speye (n) ;
12B (1,:) = rand (n,1) ;
13
14test06 (A, B, 0) ;
15
16A (:,2:3) = 0 ;
17A (1,2) = 1 ;
18B (2:3,:) = 0 ;
19B (2,1) = 1 ;
20
21test06 (A, B, 0) ;
22
23fprintf ('\ntest80: all test passed\n') ;
24
25