Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions primer/1.3/gexf-13-primer.tex
Original file line number Diff line number Diff line change
Expand Up @@ -798,10 +798,10 @@ \subsubsection{Unique interval or timestamp}
</graph>
\end{lstlisting}

Each edge must declare time limits inside the join scope of its \begin{footnotesize}source\end{footnotesize} and \begin{footnotesize}target\end{footnotesize} nodes:
Each edge must declare time limits inside the joined scope of its \begin{footnotesize}source\end{footnotesize} and \begin{footnotesize}target\end{footnotesize} nodes:
\begin{itemize}
\item edge.start $\le$ (source.start and target.start)
\item edge.end $\ge$ (source.end and target.end)
\item edge.start $\ge$ $\max$(source.start, target.start)
\item edge.end $\le$ $\min$(source.end, target.end)
\end{itemize}

\lstset{ style=gexf }
Expand Down