Undirected Graph
Learn how to create an undirected graph using the libgraph package.
We'll cover the following...
Let's create an undirected graph this time:
Press + to interact
Workflow
Here’s the workflow:
Press + to interact
$ iex -S mixiex> g = Graph.new(type: :undirected) |> Graph.add_edge(:a, :b, label: :EX)iex> IO.inspect g, structs: false
Line 1: We start the IEx session.
Line 3: We explicitly set the type as undirected
for undirected graphs.
Line 5: We ...