1
0
This repository has been archived on 2024-09-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PathFinding_in_Go/edge.go
2021-03-28 20:25:57 +01:00

10 lines
119 B
Go

package main
type Edge struct {
To *Node
}
func (self *Edge) Cost() int {
return (self.To.Data.Population / 100)
}