TODO 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #-----------------------------------------------------------------------
  2. # TODO
  3. #-----------------------------------------------------------------------
  4. # $Id: TODO,v 1.2 2002/12/23 16:30:40 raitner Exp $
  5. #-----------------------------------------------------------------------
  6. # Library
  7. #-----------------------------------------------------------------------
  8. [ Subgraphs ]
  9. RATIONALE: Many algorithms work only on part of a graph. A subgraph is
  10. a convenient way of refering to a part of a graph. The nodes and the
  11. edges in the subgraph must be the same as in the origninal graph. The
  12. same behaviour can be achieved through hiding nodes and edges in a
  13. graph, but then only one subgraph is possible.
  14. STATUS: open
  15. [ Genric Attributes ]
  16. RATIONALE: Graphs with additional attributes for nodes and edges. This
  17. is possible by making a sub-class of graph and keeping a node_map and
  18. edge_map of appropriate type therein. This process of subclassing
  19. should be automated a generic graph class with template parameters.
  20. STATUS: open
  21. [ DFS Iterators ]
  22. RATIONALE: Iterator based variants of common algorithms.
  23. STATUS: in progress
  24. [ GraphML Support ]
  25. RATIONALE: GraphML seems to be the upcoming standard for saving
  26. graphs. However, support for GML should be kept up for a while as
  27. well. Alternativly we could provide converters for GML to GraphML.
  28. STATUS: open
  29. [ Graph Generator ]
  30. RATIONALE: In many applications random graph are needed for
  31. testing. Graph Generators for general graphs as well as for special
  32. graph classes (connected, biconnected, planar, etc.) are needed.
  33. STATUS: open
  34. #-----------------------------------------------------------------------
  35. # Web
  36. #-----------------------------------------------------------------------
  37. [ Download Form ]
  38. RATIONALE: At the moment everyone sends a mail with unspecified
  39. format to gtl_download. This should be standardized.
  40. STATUS: open
  41. #-----------------------------------------------------------------------
  42. # Documentation
  43. #-----------------------------------------------------------------------
  44. [ Doxygen ]
  45. RATIONALE: Doxygen is way better supported and documented than
  46. KDoc. Furthermore it has more features (graphs ...).
  47. STATUS: in progress
  48. # Local Variables:
  49. # mode: text
  50. # comment-start: "#"
  51. # End: