vote up 2 vote down star

Task at hand — I have three versions of some code, developed by different coders, one “parent” and two “child”, and need to calculate, which one is closer to the parent one.

Size of code at hand prohibits from manually counting diff's, and I failed to see any aggregate similarity stats in popular diffmerge tools I've tried.

Hao shot web^H^H^H^H^H^H^H acquire the single percent “similarity” number?

Thanks.

flag

2 Answers

vote up 3 vote down check

You could count the lines of the diff. On Linux you would do:

diff -r parent child1 | wc -l

diff -r parent child2 | wc -l

This way you get a rough difference in lines of code.

link|flag
vote up 1 vote down

Perhaps you can use a Copy-Paste detector tool such as http://pmd.sourceforge.net/cpd.html. I haven't used it personally but it seems to be able to generate statistics.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.