Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
[] (http://www.projecttalk.io/boards/dirkholzapfel%2Fabuelo?utm_campaign=gh-badge&utm_medium=badge&utm_source=github)
Abuelo is a graph theory library written in Ruby that allows you to build a representation of a graph.
A graph consists of nodes (= vertices, points) and edges (= lines, arcs). The graph may be undirected or directed. For the sake of simplicity Abuelo sticks with the same vocabulary (nodes, edges) for directed and undirected graphs in contrast to theoretical graph theory.
Abuelo supports Ruby >= 2.0.0
graph = Abuelo::Graph.new
node_1 = Abuelo::Node.new('node 1')
node_2 = Abuelo::Node.new('node 2')
node_3 = Abuelo::Node.new('node 3')
edge_1 = Abuelo::Edge.new(node_1, node_2, 42)
edge_2 = Abuelo::Edge.new(node_2, node_3, 23)
graph.add_node(node_1)
.add_node(node_2)
.add_node(node_3)
.add_edge(edge_1)
.add_edge(edge_2)
graph.order # => 3
graph.size # => 2
graph.nodes # => [node_1, node_2, node_3]
graph.has_node?(node_1) # => true
graph.has_node_with_name?('foo') # => false
graph.find_node_by_name('node 1') # => node_1
graph.edges # => [[edge_1, edge_1.symmetric], [edge_2, edge_2.symmetric]]
graph.has_edge?(edge_1) # => true
graph.has_edge?(edge_1.symmetric) # => true
graph.find_edge(node_1, node_2) # => edge_1
graph.find_edge(node_2, node_1) # => edge_1.symmetric
graph.edges_for_node(node_2) # => [edge_1.symmetric, edge_2]
node_1.edges # => [edge_1]
node_1.neighbours # => [node_2]
graph = Abuelo::Graph.new(directed: true)
node_1 = Abuelo::Node.new('node 1')
node_2 = Abuelo::Node.new('node 2')
node_3 = Abuelo::Node.new('node 3')
edge_1 = Abuelo::Edge.new(node_1, node_2, 42)
edge_2 = Abuelo::Edge.new(node_2, node_3, 23)
graph.add_node(node_1)
.add_node(node_2)
.add_node(node_3)
.add_edge(edge_1)
.add_edge(edge_2)
graph.order # => 3
graph.size # => 2
graph.nodes # => [node_1, node_2, node_3]
graph.has_node?(node_1) # => true
graph.has_node_with_name?('foo') # => false
graph.find_node_by_name('node 1') # => node_1
graph.edges # => [edge_1, edge_2]
graph.has_edge?(edge_1) # => true
graph.has_edge?(edge_1.symmetric) # => false
graph.find_edge(node_1, node_2) # => edge_1
graph.find_edge(node_2, node_1) # => nil
graph.edges_for_node(node_2) # => [edge_2]
node_1.edges # => [edge_1]
node_1.neighbours # => [node_2]
The above, object oriented way to build graphs is the recommended way to work with this library. But you can also build a graph with an adjacency matrix. That is a nice shortcut used in some tests and may be a good alternative if you use Abuelo in the console to play around.
A zero indicates there is no edge between the nodes, an Integer indicates that there is an edge with the given weight between the nodes. The nodes are automatically named, starting with "node 1". The above example can be built like this:
Be aware that you have to provide all symmetric edges in an adjacency matrix for an undirected graph - the lib does not add them automatically as it happens with the .add_edge
method.
adjacency_matrix = <<-matrix
0 42 0
42 0 23
0 23 0
matrix
# The above matrix corresponds to this internal representation
#
# | node 1 | node 2 | node 3 |
# ------------------------------------
# node 1 | 0 | 42 | 0 |
# node 2 | 42 | 0 | 23 |
# node 3 | 0 | 23 | 0 |
graph = Abuelo::Graph.new(adjacency_matrix: adjacency_matrix)
node_1 = graph.find_node_by_name('node 1')
node_2 = graph.find_node_by_name('node 2')
graph.find_edge(node_1, node_2).weight # => 42
adjacency_matrix = <<-matrix
0 42 0
0 0 23
0 0 0
matrix
# The above matrix corresponds to this internal representation
#
# | node 1 | node 2 | node 3 |
# ------------------------------------
# node 1 | 0 | 42 | 0 |
# node 2 | 0 | 0 | 23 |
# node 3 | 0 | 0 | 0 |
graph = Abuelo::Graph.new(adjacency_matrix: adjacency_matrix, directed: true)
This is the example from https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm
adjacency_matrix = <<-matrix
0 7 9 0 0 14
7 0 10 15 0 0
9 10 0 11 0 2
0 15 11 0 6 0
0 0 0 6 0 9
14 0 2 0 9 0
matrix
graph = Abuelo::Graph.new(adjacency_matrix: adjacency_matrix)
start_node = graph.find_node_by_name('node 1')
node_5 = graph.find_node_by_name('node 5')
dijkstra = Abuelo::Algorithms::Dijkstra.new(graph, start_node)
dijkstra.shortest_distance_to(node_5) # => 20
dijkstra.shortest_path_to(node_5).map(&:to_s) # => ['node 1', 'node 3', 'node 6', 'node 5']
YARD documentation is available at rubydoc.
Abuelo is a gem which you can install with:
gem install abuelo
In Rails 3+, add the following to your Gemfile
:
gem 'abuelo'
Dirk Holzapfel (@cachezero)
FAQs
Unknown package
We found that abuelo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.