1 / 5

Graphs in Computer Science

Graphs in Computer Science . Tim Kimmet, VP Platform Team. Graphs: Often hidden behind the scenes …. Common in computer science: Compilers (Java Compiler, …) Build Systems (maven) Some use cases @ Walmart Labs : Ordering of an orchestration flow Ordering, execution

anja
Download Presentation

Graphs in Computer Science

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Graphs in Computer Science Tim Kimmet, VP Platform Team

  2. Graphs: Often hidden behind the scenes … • Common in computer science: • Compilers (Java Compiler, …) • Build Systems (maven) • Some use cases @WalmartLabs: • Ordering of an orchestration flow • Ordering, execution • Agile Management Tools (Rally)

  3. Directed Acyclic Graph (DAG)

  4. Code Demo… • Abstract Data Type (ADT): DAG implemented in Java: • DAG class: key methods • DAG test: usage of DAG class • Eclipse Plugin: DAG Tree View implemented in GeF: • Text Editor: graph text editor • Visual Editor: graph with nodes and edges • Traversal Algorithms: Breadth-First Search (BFS)

  5. Use Case: Find issues in project delivery • Problem: • Rally does not have a good project-to-project dependency graph • Solution: • Graph dependencies, color critical ones in red Rally Server API 3 1 API Client digraph rally{ graph [rankdir = "LR"]; "Walmart_Global_eCommerce" -> "@platform"; "@platform" -> "Application_Foundation"; "@platform" -> "Quality_Engineering"; "@platform" -> "SSO_/_Security"; "@platform" -> "Monitoring_and_Diagnostics"; … DAG 2

More Related