1 // Copyright (c) 2008 Tony Garnock-Jones <tonyg@lshift.net>
2 // Copyright (c) 2008 LShift Ltd. <query@lshift.net>
4 // Permission is hereby granted, free of charge, to any person
5 // obtaining a copy of this software and associated documentation files
6 // (the "Software"), to deal in the Software without restriction,
7 // including without limitation the rights to use, copy, modify, merge,
8 // publish, distribute, sublicense, and/or sell copies of the Software,
9 // and to permit persons to whom the Software is furnished to do so,
10 // subject to the following conditions:
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 _foreach: function(arr, f) {
26 for (var i = 0; i < arr.length; i++) {
31 least_common_ancestor: function(parentsFun, leafId1, leafId2) {
32 /* This is a pretty crude approximation. Since we're working
33 with DAGs, rather than trees, it may not return the very very
34 least common ancestor. */
36 var potentialMatches = {};
38 function augmentPotentialMatches(nodeId) {
39 if (!potentialMatches[nodeId]) {
40 potentialMatches[nodeId] = nodeId;
41 Graph._foreach(parentsFun(nodeId), augmentPotentialMatches);
45 augmentPotentialMatches(leafId2);
47 var searchOrder = [leafId1];
49 function queueForExamination(nodeId) {
50 searchOrder.push(nodeId);
53 while (searchOrder.length) {
54 var candidateId = searchOrder.shift();
55 if (potentialMatches[candidateId]) {
58 Graph._foreach(parentsFun(candidateId), queueForExamination);
62 return null; // no LCA found.