4progress.tex 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. The following features are either planned (\planned), under construction (\progress) or done (\done):
  2. \begin{itemize}
  3. \item[\done] Reading a graph from an input file as described in section~\ref{sec:inputFileFormat}.
  4. \item[\done] Creating random graphs for testing purposes.
  5. \begin{itemize}
  6. \item[\done] Saving those randomly created graphs.
  7. \end{itemize}
  8. \item[\done] Drawing a graph with specified node sizes and positions.
  9. \item[\done] Running the node placement algorithm by Brandes and Köpf~\cite{brandes_fast_2001}.
  10. \begin{itemize}
  11. \item[\done] Calculating the conflicts between edges.
  12. \begin{itemize}
  13. \item[\done] Differentiating between dummy nodes and non-dummy nodes.
  14. \end{itemize}
  15. \item[\done] Calculating the blocks.
  16. \item[\done] Compacting the layout.
  17. \item[\done] Combining the layouts.
  18. \end{itemize}
  19. \item[\done] Illustrating the progress while the algorithm is running in the form of
  20. \begin{itemize}
  21. \item[\done] Drawing the nodes at their current position.
  22. \item[\done] Drawing the nodes in the color of their blocks.
  23. \item[\done] Drawing a colored circle to show the class assignments.
  24. \item[\done] Drawing the edges just as plain straight lines.
  25. \item[\done] Drawing the conflicted edges in a different color.
  26. \item[\done] Drawing the four extremal layouts and the combined layout separately.
  27. \item[\planned] Drawing the edges of the block graph (yet another color, low priority).
  28. \item[\done] Showing pseudocode and the position where the algorithm currently is.
  29. \begin{itemize}
  30. \item[\done] Clicking on the pseudocode to set a breakpoint at (not \reserved{goto}) a specific location.
  31. \end{itemize}
  32. \end{itemize}
  33. \item[\done] Running the algorithm step by step manually.
  34. \item[\done] Running the algorithm step by step with configurable delay.
  35. \item[\done] Using debugger-like commands such as \enquote{step into}, \enquote{step over}, \enquote{step out}.
  36. \item[\done] Adding buttons and other graphical elements to support the user interface (low priority, see figure~\ref{fig:sketch}).
  37. Currently there is only keyboard input (cf.\ section~\ref{sec:userInterface}).
  38. \begin{itemize}
  39. \item[\done] Displaying the buttons.
  40. \item[\done] Making all the buttons work.
  41. \end{itemize}
  42. \item[\done] Working with hierarchical graphs.
  43. \item[\done] Scaling the display with the (adjustable) window size.
  44. \item[\planned] Working with disconnected graphs (cf.\ section~\ref{sec:assumptions}), either by modifying the algorithm or by processing the connected components one by one (low priority).
  45. \item[\done] Creating ElkNode~\cite{noauthor_elk:_2018} objects from LayeredNode (\ref{sec:graph}) objects.
  46. \item[\planned] Creating LayeredNode (\ref{sec:graph}) objects from ElkNode~\cite{noauthor_elk:_2018} objects (low priority).
  47. \end{itemize}