From d2670c7f257a88bbfc87982318f5dd0ceffc4823 Mon Sep 17 00:00:00 2001 From: Pavel Moskvin <55897854+ITheLestI@users.noreply.github.com> Date: Sat, 10 Feb 2024 11:01:55 +0300 Subject: [PATCH] cheat5: Fixed self-adjacency for c-c in matrix (#10) --- cheat5.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cheat5.tex b/cheat5.tex index ee6ad2f..ea7d868 100644 --- a/cheat5.tex +++ b/cheat5.tex @@ -268,7 +268,7 @@ \section{Graph Theory Cheatsheet% {} a b c d ; a 0 1 0 0 ; b 1 0 1 1 ; - c 0 1 0 1 ; + c 0 1 1 1 ; d 0 1 1 0 ; \end{bNiceMatrix}\) & @@ -281,7 +281,7 @@ \section{Graph Theory Cheatsheet% {} a b c d ; a 0 1 0 0 ; b -1 0 1 1 ; - c 0 -1 0 1 ; + c 0 -1 1 1 ; d 0 -1 -1 0 ; \end{bNiceMatrix}\) \end{NiceMatrixBlock} \\