From 51794e4fab255d2ae4b4a5cf4eb4537cfead69d5 Mon Sep 17 00:00:00 2001 From: Dylan Hutchison Date: Wed, 28 Jun 2017 00:46:03 -0700 Subject: [PATCH] Fix typos By the way, we could also include the version of triangle counting that just uses the adjacency matrix. --- SubgraphIsomorphism/triangle/code/matlab/trianglecount.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SubgraphIsomorphism/triangle/code/matlab/trianglecount.m b/SubgraphIsomorphism/triangle/code/matlab/trianglecount.m index dbe84df..ad890ed 100644 --- a/SubgraphIsomorphism/triangle/code/matlab/trianglecount.m +++ b/SubgraphIsomorphism/triangle/code/matlab/trianglecount.m @@ -31,9 +31,9 @@ t0 = clock; B = sparse(a(:,1), a(:,2), a(:,3)); t_create_inc = etime(clock, t0); - fprintf('adjacency matrix create time : %f seconds \n', t_create_inc); + fprintf('incidence matrix create time : %f seconds \n', t_create_inc); else - error('Unable to read adjacency matrix'); + error('Unable to read incidence matrix'); end % count triangles