Created
February 13, 2016 04:16
-
-
Save zntfdr/8c1848022a4762377c19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Path: Comparable { | |
let cumulativeWeight: Int | |
let lastNode: Node | |
let previousPath: Path? | |
init(toNode: Node, viaConnection: Connection?=nil, viaPath: Path?=nil) { | |
if let | |
previousPath = viaPath, | |
lastConnection = viaConnection { | |
self.cumulativeWeight = lastConnection.weight + previousPath.cumulativeWeight | |
} else { | |
self.cumulativeWeight = 0 | |
} | |
self.lastNode = toNode | |
self.previousPath = viaPath | |
} | |
} | |
func ==(x: Path, y: Path) -> Bool { | |
return x.cumulativeWeight == y.cumulativeWeight | |
} | |
func <(x: Path, y: Path) -> Bool { | |
return x.cumulativeWeight < y.cumulativeWeight | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment