Remove weights from the weighted graph (#47)

Summary:
This is an experiment. There are a couple diffferent meanings of
“weight” in play: most prominently, weights assigned by plugins versus
those suitable for comparison among other arbitrary weights. We’re not
sure what the right thing is to put in the actual graph object, so we’re
going to think about this a bit more before adding the field back in.

wchargin-branch: remove-weights
This commit is contained in:
William Chargin 2018-03-01 00:45:52 -08:00 committed by GitHub
parent 43450f18b1
commit 66243a16c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ export type Edge<T> = {
address: Address,
src: Address,
dst: Address,
weight: number,
payload: T,
};