Giter Site home page Giter Site logo

Comments (2)

HeavyWombat avatar HeavyWombat commented on May 18, 2024

The behavior is actually intended like that. At least, this was the original idea for dyff, because for the project that sparked this tool, the order of entries in the list was of great importance. The problem is when you have what is called "simple lists" where it is difficult to decide whether the list entry was modified or whether it was actually just moved in the list. So comparing index by index (compare entry one with entry one in the other list, ...) was not an option. The only exeception to that rule was for simple lists with exactly one entry each. In this edge case, it was easy just to say compare the only entry in the list with the only other entry in the other list.

Long story short, I can understand actually both behavior preferences. There are three kind of styles:

  • Only compare list entries if it can be made sure that they can really be compared, e.g. only one entry in simple lists and entries with the same name (or id, or key) in named-entry lists.
  • Progressive style, where in simple lists the list index is assumed to be relevant and lists are compared by index.
  • Content specific style, where the tool would try to guess whether there is a similar entry in the other list at a different index and would compare them. This was always my idea for an improvement, however, this could be very error prone for more complex scenarios.

What I could do is the following: Introduce a command line flag to configure the compare style for lists that are not that easy to compare, mostly simple lists to be honest. The options would be safe (current style), index (second bullet point), or best guess for the content specific comparison.

from dyff.

Self-Perfection avatar Self-Perfection commented on May 18, 2024

Indeed this is not easy, I see it now. I'd hope dyff would find simplest possible change (set of operations) that transforms on input file to another. Turns out this is complicated computer science task. For instance here is paper that proposes tree comparison algorithm and tests it on XML files.

Apparently implementation of my wish is harder than I anticipated.

from dyff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.