Skip to content
Snippets Groups Projects
Commit 34e2b3f3 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Share the output block arrays instead of the input array elements in

diff3.

Rev: lib/modules/Array.pmod:1.24
parent 780fe246
No related branches found
No related tags found
No related merge requests found
...@@ -258,14 +258,11 @@ array(array(array)) diff3 (array a, array b, array c) ...@@ -258,14 +258,11 @@ array(array(array)) diff3 (array a, array b, array c)
ca[sizeof (c)] = cb[sizeof (c)] = eoa; ca[sizeof (c)] = cb[sizeof (c)] = eoa;
for (int i = 0, j = 0; j < sizeof (seq_ab); i++) for (int i = 0, j = 0; j < sizeof (seq_ab); i++)
if (equal (a[i], b[seq_ab[j]])) if (a[i] == b[seq_ab[j]]) ab[i] = seq_ab[j], ba[seq_ab[j]] = i, j++;
a[i] = b[seq_ab[j]], ab[i] = seq_ab[j], ba[seq_ab[j]] = i, j++;
for (int i = 0, j = 0; j < sizeof (seq_bc); i++) for (int i = 0, j = 0; j < sizeof (seq_bc); i++)
if (equal (b[i], c[seq_bc[j]])) if (b[i] == c[seq_bc[j]]) bc[i] = seq_bc[j], cb[seq_bc[j]] = i, j++;
b[i] = c[seq_bc[j]], bc[i] = seq_bc[j], cb[seq_bc[j]] = i, j++;
for (int i = 0, j = 0; j < sizeof (seq_ca); i++) for (int i = 0, j = 0; j < sizeof (seq_ca); i++)
if (equal (c[i], a[seq_ca[j]])) if (c[i] == a[seq_ca[j]]) ca[i] = seq_ca[j], ac[seq_ca[j]] = i, j++;
c[i] = a[seq_ca[j]], ca[i] = seq_ca[j], ac[seq_ca[j]] = i, j++;
array(array) ares = ({}), bres = ({}), cres = ({}); array(array) ares = ({}), bres = ({}), cres = ({});
int ai = 0, bi = 0, ci = 0; int ai = 0, bi = 0, ci = 0;
...@@ -277,6 +274,11 @@ array(array(array)) diff3 (array a, array b, array c) ...@@ -277,6 +274,11 @@ array(array(array)) diff3 (array a, array b, array c)
int cpart = (cb[ci] == -1 && 4) | (ca[ci] == -1 && 1); int cpart = (cb[ci] == -1 && 4) | (ca[ci] == -1 && 1);
int newpart = apart | bpart | cpart; int newpart = apart | bpart | cpart;
//werror ("a %3d %3d %3d %3d\n", ai, ac[ai], ab[ai], apart);
//werror ("b %3d %3d %3d %3d\n", bi, ba[bi], bc[bi], bpart);
//werror ("c %3d %3d %3d %3d\n", ci, cb[ci], ca[ci], cpart);
//werror ("part %d %d\n", part, newpart);
if ((apart ^ bpart ^ cpart) == 7 && !(apart & bpart & cpart) && if ((apart ^ bpart ^ cpart) == 7 && !(apart & bpart & cpart) &&
apart && bpart && cpart) { apart && bpart && cpart) {
// Solve cyclically interlocking equivalences by arbitrary // Solve cyclically interlocking equivalences by arbitrary
...@@ -289,30 +291,28 @@ array(array(array)) diff3 (array a, array b, array c) ...@@ -289,30 +291,28 @@ array(array(array)) diff3 (array a, array b, array c)
if ((part & newpart) == newpart) { if ((part & newpart) == newpart) {
// If the previous block had the same equivalence partition or // If the previous block had the same equivalence partition or
// was a three-part conflict, we should tack any singleton // was a three-part conflict, we should tack any singleton
// equivalences we have onto it and mark them so they aren't // equivalences we have onto it.
// used again below. if (apart == 3) ares[-1] += ({a[ai++]});
if (apart == 3) ares[-1] += ({a[ai++]}), apart = 8; if (bpart == 6) bres[-1] += ({b[bi++]});
if (bpart == 6) bres[-1] += ({b[bi++]}), bpart = 8; if (cpart == 5) cres[-1] += ({c[ci++]});
if (cpart == 5) cres[-1] += ({c[ci++]}), cpart = 8;
} }
if (newpart == part) { if (newpart != part) {
// The previous block had exactly the same equivalence // Start a new block if the equivalence partition doesn't match
// partition, so tack anything else onto it too, but mask // the previous block.
// singleton equivalences this time.
if ((part & 3) == apart && apart != 3) ares[-1] += ({a[ai++]});
if ((part & 6) == bpart && bpart != 6) bres[-1] += ({b[bi++]});
if ((part & 5) == cpart && cpart != 5) cres[-1] += ({c[ci++]});
}
else {
// Start a new block. Wait with singleton equivalences (this may
// cause an extra iteration, but the necessary conditions to
// prevent that are tricky).
part = newpart; part = newpart;
ares += ({(part & 3) == apart && apart != 3 ? ({a[ai++]}) : ({})}); ares += ({({})}), bres += ({({})}), cres += ({({})});
bres += ({(part & 6) == bpart && bpart != 6 ? ({b[bi++]}) : ({})});
cres += ({(part & 5) == cpart && cpart != 5 ? ({c[ci++]}) : ({})});
} }
// Add any composite equivalences. Wait with the singletons (this
// may cause an extra iteration, but the necessary conditions to
// prevent that are tricky).
if (!part) ares[-1] = bres[-1] = cres[-1] += ({a[ai++]}), bi++, ci++;
else if (part == 3 && bpart && cpart) bres[-1] = cres[-1] += ({b[bi++]}), ci++;
else if (part == 6 && cpart && apart) cres[-1] = ares[-1] += ({c[ci++]}), ai++;
else if (part == 5 && apart && bpart) ares[-1] = bres[-1] += ({a[ai++]}), bi++;
//werror ("%O\n", ({ares[-1], bres[-1], cres[-1]}));
} }
return ({ares, bres, cres}); return ({ares, bres, cres});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment