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

[FIX] OWTreeViewer: Fix trees being displayed differently for same tree object #2067

Merged
merged 4 commits into from
Mar 10, 2017

Commits on Mar 3, 2017

  1. TreeViewer: Fix different trees being displayed for same dataset

    OWTreeViewer was not deterministic in showing trees. This happened
    because the layout was updated w.r.t the graph node edges, which were
    stored in a set object, which is unordered.
    I assume that a set was used because speed is important, so I've
    implemented edges as an ordered dict, to keep the speed benefits as well
    as an ordering.
    pavlin-policar committed Mar 3, 2017
    Configuration menu
    Copy the full SHA
    d9f557b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6504db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    09e2a99 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2017

  1. Configuration menu
    Copy the full SHA
    82a6959 View commit details
    Browse the repository at this point in the history