gae
play

GaE Graphs Aint Easy Andrew Jones (adj2129) Kevin Zeng (ksz2109) - PowerPoint PPT Presentation

GaE Graphs Aint Easy Andrew Jones (adj2129) Kevin Zeng (ksz2109) Samara Nebel (srn2134) Introduction Graphs Complex data structure Ubiquitous and fundamental Goal: We want to provide the end user a streamlined interface


  1. GaE Graphs Ain’t Easy Andrew Jones (adj2129) Kevin Zeng (ksz2109) Samara Nebel (srn2134)

  2. Introduction Graphs Complex data structure ● Ubiquitous and fundamental ● Goal: ● We want to provide the end user a streamlined interface to easily write programs that read and parse graphs.

  3. Architecture Scanner Parser Semant Codegen Linker Input: source program Input: tokens Input: ast Input: sast Input: LLVM IR and C Library Output: tokens Output: ast Output: sast Output: LLVM IR Output: executable

  4. Data Types 32-bit signed integer int 32-bit floating point number double Boolean - 0 == false, 1 == true bool Base types ASCII character char An array of ASCII characters string A list that can store elements of a single type array Container Variable-size mapping that associates key of type k to value of type v map<k,v> types Weighted and directed graph with nodes of type n and edge weights of type e graph<n,e> A three-tuple consisting of source node, destination node, and edge weight where n edge<n, w> is the node type and w is the edge weight type A group of data elements grouped together under one name as a type definition struct

  5. Keywords func int double bool char string map graph edge struct in if else for while return true false

  6. Operators Integer operators (add, subtract, multiply, divide, mod, increment, decrement) +, -, *, /, %, ++, -- Double operators (add, subtract, multiply, divide, mod) +. , -. , *. , /. , %. Boolean logic operators (or, and, not) ||, &&, ! Relational and equality operators (less than, greater than, less than/equal, greater <, >, <=, >=, ==, != than/equal, equal, not equal) Assignment operators :=, = String operator (concatenation) + Array and map operator (index) [] Array, map, and graph operator (in) in

  7. Variable Declaration and Instantiation Variables must be declared before they are instantiated Container types (array, map, and graph) must be instantiated with either a literal or their respective int x; _init() function x := 0; x = 5; int arr1[]; int arr2[]; NOTE: formally, := is the assignment operator and = is arr1 := [1, 2, 3]; the re-assign operator, but in practice using either arr2 := arr_init(); operator will exhibit the same outcomes. append(arr2, 1);

  8. Control Flow (if, for, while) If: For: While: int x; int i; int x; x := 5; for i := 0; i < 10; i++ { x := 0; if x == 6 { printi(i); while (x != 10) { printi(1); } printi(x); } x++; else { } printi(2); } /* this will print 2 */ /* this will print 0-9 */ /* this will print 0-9 */

  9. Functions A function declaration has the form: Example: func func_name(parameter-list) return-type func average_of_two(int x, int y) int { Parameter list: A series of variable types separated by commas int tmp; (can be empty) tmp := (x + y) / 2; Return type must be specified. return tmp; Inside the function: ● Variables must be declared at the beginning } ● There must be a return statement at the end which returns the corresponding return type Every program must have a main function: func main() int {}

  10. Arrays and Maps Arrays: Maps: string[] arr; map<string, int> my_map; arr := [“hello”, “world”] my_map := [“zero”: 0, “one”: 1]; Types: Key Types: ● Primitives: int, double, string, char, bool ● string, int, char, struct ● Structs ● Edges Value Types: ● Primitives

  11. Array and Map Built-in Functions Arrays: Maps: ● lena(arr) Returns length of the array. ● lenm(my_map) Returns length of the map. ● arr[index] Returns element from the array. ● my_map[key] Returns value corresponding to ● Utilizes the index the stored key-value pair. arr[index] = value operator to change the value stored at the index to ● Utilizes the index my_map[key] = value the new value. operator to change the value corresponding to the ● Appends the value to key. If the key does not exist, this will add a new append(arr, value) the end of the array. key-value pair to the map. ● arr_init() Initializes an empty array. ● map_init() Initializes an empty map. ● el in arr Returns boolean for whether arr ● Returns an array of the getKeys(my_map) contains el keys from the map. ● key in my_map Returns boolean for whether key is a key in my_map

  12. Structs Declared at the beginning of the program in the global Variables of this struct type can then be assigned as scope. Example: follows: struct My_struct { My_struct var; value: int, var:= { value: 1, name: “hello” }; Individual fields can be accessed as well: name: string } prints(var.name); Struct attributes may only be base types, i.e. char, bool, /* this will print “hello” */ int, double, and string.

  13. Edges Edge: a three-tuple of structs, i.e. (src, dst, val) struct Node { name: string } Edge is a generic type: struct Value { ● First type parameter is node type value: int ● Second type parameter is edge value type } … ● Both types MUST be a struct type edge<Node, Value> e; e := ( Each Edge represents one directed edge between the two {name: “src”}, specified nodes with the specified edge value. {name: “dst”}, {value: 10} );

  14. Graphs Graph: a collection of edges struct Int { value: int } Graph is a generic type, with type parameter definitions … and restrictions the same as Edge. graph<Int, Int> g; g := { Nodes are uniquely identified based on struct equality, ({value: 1}, {value: 2}, {value: 10}), ({value: 1}, {value: 3}, {value: 5}), i.e. node1 and node2 refer to the same node iff all their ({value: 1}, {value: 4}, {value: 12}), attributes are the same. ({value: 2}, {value: 3}, {value: 8}), }; At most one edge can exist in a graph with the same source and destination node.

  15. Graph And Edge Built-in Functions Graphs: Edges: ● ● graph_init() getSrc(edge) ○ Initializes an empty graph. Edges can then be ○ Returns source node struct. added to the graph using the addEdge() ● getDst(edge) function. ○ Returns destination node struct. ● ● getNodes(graph) getVal(edge) ○ Returns an array of node structs. ○ Returns edge value struct. ● ● getEdges(graph) setSrc(edge, node_struct) ○ Returns an array of edges. ○ Sets the source node of edge to node_struct . ● ● addEdge(graph, new_edge) setDst(edge, node_struct) ○ Adds edge new_edge to the graph. ○ Sets the destination node of edge to ● node_struct . n in graph ○ Returns boolean for whether n is a node inside ● setVal(edge, node_struct) ○ Sets the edge value of edge to node_struct . graph

  16. Demo

  17. Thank you!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend