Skip to content

Instantly share code, notes, and snippets.

@ennjoy
Last active August 29, 2021 20:09
Show Gist options
  • Save ennjoy/f2c26886708d481e9af849d8b9c19a7b to your computer and use it in GitHub Desktop.
Save ennjoy/f2c26886708d481e9af849d8b9c19a7b to your computer and use it in GitHub Desktop.
module DAG
record Tip,
vertex : DAG::Vertex,
distance : Int32,
branch_root : (DAG::Vertex | Nil)
class Vertex
alias Name = String
getter name : Name
getter edges : Hash(Name, Vertex)
def initialize(@name, @edges = {} of Name => Vertex)
end
def add(edge_to vertex : Vertex) : Nil
@edges[vertex.name] = vertex
end
def children : Array(Vertex)
@edges.values
end
end
extend self
def tips(
from vertex : Vertex,
visited = Hash(Vertex::Name, Bool).new(false),
distance = Hash(Vertex, Int32).new(0),
tips = Array(DAG::Tip).new,
start : (Vertex | Nil) = nil,
current_branch_root : (Vertex | Nil) = nil
) : Array(DAG::Tip)
# remember the starting vertex
start = vertex if distance.empty?
# mark current vertex as visited
visited[vertex.name] = true
# sort children just to make it easier to test
sorted_children = vertex.children.sort_by { |c| c.name }
# if it has no children it's the tip of a branch
if sorted_children.empty?
tips << DAG::Tip.new(
vertex: vertex,
distance: distance[vertex],
branch_root: current_branch_root
)
else
# it has children so let's continue the traverse
sorted_children.each do |child|
if !visited[child.name]
# we mark the child of the starting vertex as the current root
# of the branch we are exploring
if start == vertex
current_branch_root = child
end
# we calculate the distance of the child
distance[child] = distance[vertex] + 1
tips(
from: child,
visited: visited,
distance: distance,
tips: tips,
start: start,
current_branch_root: current_branch_root
)
end
end
end
tips
end
def tip_of_longest_branch(from vertex : DAG::Vertex) : DAG::Tip
tips = self.tips(from: vertex)
tip_of_longest_branch from: tips
end
def tip_of_longest_branch(from tips : Array(DAG::Tip)) : DAG::Tip
# Tip of longest branch (chain)
tips.max_by { |t| t.distance }
end
end
require "./dag"
module ProbFin
alias BlockHash = String
module Chain
extend self
def dag
@@dag ||= Hash(BlockHash, DAG::Vertex).new
end
def dag=(hash : Hash(BlockHash, DAG::Vertex))
@@dag = hash
end
def orphans
@@orphans ||= Hash(BlockHash, Array(BlockHash)).new(
->(hash : Hash(BlockHash, Array(BlockHash)), key : BlockHash) {
hash[key] = Array(BlockHash).new
}
)
end
end
def self.push(block : BlockHash, parent : BlockHash)
# -- create vertex
new_vertex = DAG::Vertex.new(name: block)
# -- add to dag
ProbFin::Chain.dag[block] = new_vertex
# -- is block an orphan?
if !ProbFin::Chain.dag[parent]?
ProbFin::Chain.orphans[parent] << block
end
# -- edge to self from parent
if ProbFin::Chain.dag[parent]?
ProbFin::Chain.dag[parent].add edge_to: new_vertex
end
# -- block is parent of orphans?
if orphans = ProbFin::Chain.orphans[block]?
orphans.each do |orphan|
ProbFin::Chain.dag[block].add edge_to: ProbFin::Chain.dag[orphan]
end
ProbFin::Chain.orphans.delete(block)
end
end
def self.finalize(
from starting_blockhash : BlockHash,
chain_length_threshold : Int32 = 6,
tip_diff_threshold : Int32 = 2
) : (BlockHash | Nil)
tips = DAG.tips from: ProbFin::Chain.dag[starting_blockhash]
return nil if below_chain_length_threshold? tips: tips, threshold: chain_length_threshold
return nil if below_tip_diff_threshold? tips: tips, threshold: tip_diff_threshold
tolb = tips.max_by { |t| t.distance }
remaining_chain = self.traverse_remaining from: tolb.branch_root # -- there is a mistake
ProbFin::Chain.orphans.each do |_, orphans|
orphans.each do |o|
h = Hash(BlockHash, DAG::Vertex).new
h[o] = ProbFin::Chain.dag[o]
remaining_chain = remaining_chain.merge(h)
end
end
ProbFin::Chain.dag = remaining_chain
tolb.branch_root.as(DAG::Vertex).name
end
protected def self.below_tip_diff_threshold?(
tips : Array(DAG::Tip),
threshold : Int32
) : Bool
tolb = tips.max_by { |t| t.distance }
tips = tips.partition { |t| t == tolb }
tips[1].any? { |t| (tolb.distance - t.distance) <= threshold }
end
protected def self.below_chain_length_threshold?(
tips : Array(DAG::Tip),
threshold : Int32
) : Bool
long_enough = tips.select! { |t| t.distance >= threshold }
return false if !long_enough.empty?
true
end
protected def self.traverse_remaining(
from vertex : DAG::Vertex,
visited = Hash(String, Bool).new,
remaining_dag = Hash(BlockHash, DAG::Vertex).new,
remaining_parents = Hash(BlockHash, Array(BlockHash)).new(
->(hash : Hash(BlockHash, Array(BlockHash)), key : BlockHash) {
hash[key] = Array(BlockHash).new
}
)
) : Hash(BlockHash, DAG::Vertex)
visited[vertex.name] = true
remaining_dag[vertex.name] = vertex
vertex.children.each do |child|
if !visited[child.name]?
traverse_remaining(
from: child,
visited: visited,
remaining_dag: remaining_dag,
remaining_parents: remaining_parents
)
end
end
remaining_dag
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment