[#18] Give lines provenance #29
No reviewers
Labels
No labels
blocking
bug
dependencies
duplicate
enhancement
invalid
question
rust
testing
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
mle/subway_map.rs!29
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "18-line-provenance"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #18
Refactors the evaluator so that:
PointIdorLineIdPointCollectionPointCollectionno longer tracks names of points — points are now treated just like any other variable and are stored in the evaluator.This test was previously broken, because
Value::eq_boolwould compare two lines as equal if theirOption<(PointId, PointId)>were the same. Of course when those were bothNone, they would compare equal, rendering this test trivial.