...

/

Undirected Graph

Undirected Graph

Learn how to create an undirected graph using the libgraph package.

Let's create an undirected graph this time:

Press + to interact
Undirected graph
Undirected graph

Workflow

Here’s the workflow:

Press + to interact
$ iex -S mix
iex> 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 ...