Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graph isolation fix #591

Merged
merged 2 commits into from
Sep 7, 2023
Merged

Graph isolation fix #591

merged 2 commits into from
Sep 7, 2023

Commits on Sep 6, 2023

  1. [write-fonts] Deterministic graph packing

    This replaces HashMap & HashSet with BTreeMap and BTreeSet in various
    places where we iterate over the collection. This ensures that our
    behaviour is never dependent on insertion order.
    cmyr committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    12af289 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. [write-fonts] Fix double-counting some graph nodes

    This was a subtle bug in our packing code, where under certain
    conditions we would double count inbound edges to certain nodes, causing
    us not to duplicate them when we should have.
    cmyr committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    261b3f3 View commit details
    Browse the repository at this point in the history