fix bug with value inserted into ValSet: before, the value inserted into the 'from' field was the ID of the current platform, but this is incorrect as it is circular. To fix, the 'from' field now contains the ID of the previous platform which this platform was found from
This commit is contained in:
@@ -156,7 +156,7 @@ structure IntSet =
|
||||
structure ValSet =
|
||||
MakeBinVec
|
||||
(struct
|
||||
type elem = {distance: int, from: char}
|
||||
type elem = {distance: int, from: int}
|
||||
|
||||
(* l, e and q functions are not actually used in the ValSet
|
||||
* because the IntSet is meant to contain keys while the ValSet
|
||||
|
||||
Reference in New Issue
Block a user