Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: dao tree simulator #2

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sim/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/gnolang/genesis/sim

go 1.22.5
107 changes: 107 additions & 0 deletions sim/sim.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
package main

import (
"fmt"
"math/big"
)

type Node struct {
Name string
Children []*Edge
Parents []*Edge
}

type Edge struct {
From *Node
To *Node
Power *big.Rat // max 1/2 delegation
Frozen bool
}

func (n *Node) Delegate(to *Node, power *big.Rat) {
// check capacity
sum := new(big.Rat).Set(power)
for _, child := range n.Children {
sum.Add(sum, child.Power)
}
if sum.Cmp(big.NewRat(1, 2)) > 0 {
panic("cannot delegate more than 1/2 of total power")
}

edge := &Edge{
From: n,
To: to,
Power: power,
Frozen: false,
}
n.Children = append(n.Children, edge)
to.Parents = append(to.Parents, edge)
}

func (n *Node) Power() *big.Rat {
if len(n.Parents) == 0 {
return big.NewRat(1, 1) // root node has full power
}

power := big.NewRat(0, 1)
for _, parent := range n.Parents {
parentPower := new(big.Rat).Mul(parent.Power, parent.From.Power())
power.Add(power, parentPower)
}
return power
}

func (n *Node) String() string {
return n.stringRec("")
}

func (e *Edge) stringRec(prefix string) string {
output := fmt.Sprintf("%s|-%s- %s (Aggregated Power: %s)\n", prefix, e.Power.FloatString(2), e.To.Name, e.To.Power())
output += e.To.stringRec(prefix + " ")
return output
}

func (n *Node) stringRec(prefix string) string {
output := ""
if n.Parents == nil {
output += fmt.Sprintf("%s*%s*\n", prefix, n.Name)
}
for _, child := range n.Children {
output += child.stringRec(prefix + " ")
}
return output
}

func main() {
var (
root = &Node{Name: "root"}
alice = &Node{Name: "alice"}
bob = &Node{Name: "bob"}
charly = &Node{Name: "charly"}
dave = &Node{Name: "Dave"}
erin = &Node{Name: "Erin"}
frank = &Node{Name: "Frank"}
grace = &Node{Name: "Grace"}
heidi = &Node{Name: "Heidi"}
ivan = &Node{Name: "Ivan"}
)

// root & top level members
root.Delegate(alice, big.NewRat(1, 1000))
root.Delegate(bob, big.NewRat(1, 1000))
for _, topLevel := range root.Children {
topLevel.Power = big.NewRat(1, 1)
}

// DAO members
alice.Delegate(charly, big.NewRat(1, 2))
bob.Delegate(frank, big.NewRat(1, 2))
charly.Delegate(dave, big.NewRat(1, 4))
charly.Delegate(erin, big.NewRat(1, 4))
dave.Delegate(grace, big.NewRat(1, 4))
dave.Delegate(heidi, big.NewRat(1, 4))
grace.Delegate(heidi, big.NewRat(1, 2))
heidi.Delegate(ivan, big.NewRat(1, 2))

fmt.Println(root)
}