I get errors for this latex code, please someone can help me
\documentclass{article}
\usepackage{tikz}
\usepackage{tkz-graph}
\usetikzlibrary{graphs,graphs.standard,arrows.meta}
\begin{document}
\newcount\mycount
\begin{tikzpicture}
\SetGraphUnit{2}
\renewcommand*{\VertexLineColor}{white}
\renewcommand*{\VertexLightFillColor}{red}
\renewcommand*{\VertexLineWidth}{1pt}
\GraphInit[vstyle=Welsh]
\Vertices{circle}{1,...,7}
\AddVertexColor{blue}{1,5}
\SetUpEdge[style={->,very thick},color=red]
\foreach \i in {1,...,7}
{
\foreach \j in {1,2,3}
{
\mycount=\i+\j
\pgfmathparse{int(Mod(\mycount,7))}
\ifthenelse{\pgfmathresult=0}
{
\Edge(\i)(\mycount)
}
{ \edef\k{\pgfmathresult}
\Edge(\i)(\k)
}
};
};
\end{tikzpicture}
\begin{document}
Indeed I want to draw a tournament named regular locally transitive tournament. Every node 'i' must related by edge with i+1, i+2, i+3 which are tested by mod function to have circular shape. Thank's in advance !
