Skip to content

Commit

Permalink
cheat5: Fixed self-adjacency for c-c in matrix (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ITheLestI authored Feb 10, 2024
1 parent 042ae80 commit d2670c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cheat5.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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}\)
&
Expand All @@ -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} \\
Expand Down

0 comments on commit d2670c7

Please sign in to comment.