US20070280199A1 - Shortest path search method "midway" - Google Patents

Shortest path search method "midway" Download PDF

Info

Publication number
US20070280199A1
US20070280199A1 US11/891,504 US89150407A US2007280199A1 US 20070280199 A1 US20070280199 A1 US 20070280199A1 US 89150407 A US89150407 A US 89150407A US 2007280199 A1 US2007280199 A1 US 2007280199A1
Authority
US
United States
Prior art keywords
path
node
cost
tree
backward
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US11/891,504
Inventor
Guangyi Rong
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US11/891,504 priority Critical patent/US20070280199A1/en
Publication of US20070280199A1 publication Critical patent/US20070280199A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/12Shortest path evaluation
    • H04L45/123Evaluation of link metrics
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/12Shortest path evaluation
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/12Shortest path evaluation
    • H04L45/122Shortest path evaluation by minimising distances, e.g. by selecting a route with minimum of number of hops
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/20Hop count for routing purposes, e.g. TTL

Definitions

  • the said invention is applied to searching for a shortest path (with constraints) from a single source node to a single destination node in a flat computer network.
  • the shortest path search function which implements this new method is used by the routing module running in a router of a packet (or cell) switching network or running in a switching node of a circuit switching network.
  • a flat computer network (or each flat layer of a hierarchical network) consists of multiple number of nodes (i.e. dedicated purpose computers) connected by communication links, and forms a certain two dimensional topology. Each communication link is assigned a cost which is determined by considerations of application requirements [1].
  • a packet or cell
  • a circuit is to be built from a source node to a destination node in a network, it is required to find a shortest path among all available paths between the source and the destination. If all links in a network are assigned the same cost, the shortest path is a minimum hop path. If link costs are different, the shortest path is a minimum cost path. In the latter case the number of hops in a minimum cost path may exceed that in a minimum hop path.
  • Dijkstra algorithm The most popular method used by the current art to search for a shortest path is Dijkstra algorithm which may be a classic Dijkstra algorithm or an improved version of Dijkstra algorithm. Dijkstra algorithm has been described in many literatures [1][3], and may be applied in two different cases.
  • Dijkstra algorithm is not efficient enough in case 2, as it has to find a large number of shortest paths which are not required while the purpose is to find only one shortest path from a single source to a single destination.
  • the set up time of a shortest path from a single source to a single destination is a very important parameter, especially from the point of view of path switching on failure or preemption.
  • the rerouting of a lot of connections that were using a failing or preempted link or node may lead to a high number of simultaneous new path set up and create a burst of processing overhead.
  • Midway starts from both ends (i.e. source and destination) and runs shortest path search from both ends simultaneously or alternatively, until a shortest path tree from one end meets a shortest path tree from the other end at a “meet node” on midway (see sheet 1-1), and the concatenated path (source node—meet node—destination node) meets a certain condition.
  • the new algorithm is named “Midway”.
  • Midway algorithm drastically reduces the overhead in search of a shortest path by reducing the number of nodes being searched, and hence it can find a shortest path in much less time.
  • the two shortest path search processes (or threads) from both ends may run in parallel, and shortest path set up time will be further reduced.
  • the implementation of the said new search method should minimize the additional code overhead required by doing shortest path search simultaneously or alternatively from both ends, and should define a new condition other than the condition used by Dijkstra to determine when the search should terminate. The implementation will be described in the detailed description part.
  • Drawing sheet 1-1 shows a big circle which is the searching range of Dijkstra algorithm applied to searching for a shortest path from a single source node to a single destination node. It also shows two small circles which are searching ranges of Midway algorithm. One is the searching range of the search started from the source node while the other is that of the search started from the destination node. The two small circles touch at the meet node where two shortest paths meet.
  • the Dijkstra algorithm overhead is measured by O(P D 2 ) where P D is the number of nodes in the searching range shown by a big circle in sheet 1-1, while the Midway algorithm overhead is measured by O(P M1 2 ) Plus O(P M2 2 ) where P M1 is the number of nodes in small circle I and P M2 is the number of nodes in small circle 2 (sheet 1-1).
  • the number of nodes contained in a searching range depends on the topology of the network and the area of the circle (i.e. square of the radius of the circle), and it grows rapidly with the radius which represents the total number of hops or total path cost of the shortest path.
  • Midway shortest path search algorithm may be implemented in different ways.
  • single processor environment shortest path search from both end nodes is executed in a single task and a single function by alternatively swapping pointers to two separate set of data structures, one for search from source node and the other for search from destination node.
  • multiprocessor environment shortest path search processes from source node and from destination node may be executed in parallel to further reduce shortest path set up time.
  • Midway requires some additional code overhead as it needs to do shortest path search from both source and destination nodes. In order to avoid the additional overhead from outweighing the benefit of Midway algorithm, the implementation should minimize the above mentioned code overhead.
  • Midway algorithm is given in two parts, one for single processor environment and the other for multi-processor environment, and each part is further divided into two separate cases one for minimum cost path search and the other for minimum hop path search.
  • the description illustrates how to do minimum cost or minimum hop search from both the source node and destination node simultaneously by multi-threading or multi-tasking, or alternatively in a single task and a single function, and how to determine a shortest path is found successfully or the path search fails. This also illustrates the essential difference between Dijkstra and Midway algorithms.
  • the least cost leave node either on forward search tree or on backward search tree may or may not lie on a path connecting source node and destination node. If it does, the said connecting path must be equally expensive as or more expensive than the candidate shortest path. If it does not lie on any connecting path, it might reach one of the leave nodes on the opposite search direction tree in the subsequent rounds of search, and the connecting path thus created must be more expensive than that of the candidate shortest path. By exhausting all possible cases it can be concluded that there is no possibility to find a connecting path which is less expensive than the candidate shortest path.
  • Minimum hop path search function runs path search code from source or destination node alternatively depending on the value of search direction.
  • a method based on multi-threading is described in the following. If the operating system does not support multi-threading, multi-tasking is the second choice (in certain real time operating system multi-tasking is as efficient as multi-threading). The method based on multi-tasking should be very similar to that based on multi-threading and its description will not be given. Thread management, scheduling and synchronization (shared resources integrity protection) should be compliant to POSIX standard [5] and certain extensions supported by the operating system in use may also be adopted.
  • the process which runs the routing module code should do the following to create a Parallel Processing Environment. (All thread synchronization mechanisms mutexes, read write locks and condition variables created by routing process are process private objects.)

Abstract

A method of searching for a shortest path from a single source node to a single destination node in a two dimensional computer network. The method is similar to Dijkstra shortest path algorithm (“Dijkstra”) in the way it builds a shortest path tree. However, instead of starting from the source node and searching through to the destination node as Dijkstra does, the method runs a shortest path search from both ends (i.e. source and destination) simultaneously or alternatively, until a shortest path tree from one end meets a shortest path tree from the other end at an intermediate node, and the concatenated path (source node—intermediate node—destination node) satisfies a condition. Conditions other than those used by Dijkstra determine when the search should terminate, and whether the search has succeeded or failed. It has been verified that the new method requires less overhead and time than Dijkstra.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • The present application is a Continuation of and claims benefit of priority from “Shortest Path Search Method “Midway” U.S. patent application Ser. No. 10/269,749, which is incorporated herein by reference in its entirety.
  • STATEMENT REGARDING FEDERALLY SPONSORED RESEARCH OR DEVELOPMENT
  • Not Applicable
  • OTHER REFERENCES
    • [1] Tanenbaum, Andrew S., “Computer Networks”, 3rd ed., p. 349.
    • [2] ibid, p. 352.
    • [3] Dijkstra, E. “A note on two problems in connection with graphs”, Numer. Math., vol. 1, pp. 269, 271, 1959.
    • [4] Aho, Alfred V. et al, “The Design and Analysis of Computer Algorithms”, 1976, pp. 207, 208.
    • [5] Norton, Scott J. et al., Thread Time The Multithreaded Programming Guide, 1997, Hewlett-Packard Company.
    • [6] ibid, pp. 383, 392.
    BACKGROUND OF INVENTION
  • 1. Field of Invention
  • The said invention is applied to searching for a shortest path (with constraints) from a single source node to a single destination node in a flat computer network. The shortest path search function which implements this new method is used by the routing module running in a router of a packet (or cell) switching network or running in a switching node of a circuit switching network.
  • 2. Description of the Related Art
  • A flat computer network (or each flat layer of a hierarchical network) consists of multiple number of nodes (i.e. dedicated purpose computers) connected by communication links, and forms a certain two dimensional topology. Each communication link is assigned a cost which is determined by considerations of application requirements [1]. When a packet (or cell) is to be sent or a circuit is to be built from a source node to a destination node in a network, it is required to find a shortest path among all available paths between the source and the destination. If all links in a network are assigned the same cost, the shortest path is a minimum hop path. If link costs are different, the shortest path is a minimum cost path. In the latter case the number of hops in a minimum cost path may exceed that in a minimum hop path.
  • The most popular method used by the current art to search for a shortest path is Dijkstra algorithm which may be a classic Dijkstra algorithm or an improved version of Dijkstra algorithm. Dijkstra algorithm has been described in many literatures [1][3], and may be applied in two different cases.
      • 1. To find shortest paths from a single source node to all other nodes in a network. Dijkstra algorithm makes a flood search and builds a shortest path tree with the source node as its root, and with all other nodes in the network as branch nodes or leave nodes of the tree. The search will terminate when all nodes in the network are linked up to the tree. The time complexity of Dijkstra algorithm in case 1 is O(PN 2) where PN is the total number of nodes in the network [4]. Dijkstra algorithm is efficient enough when applied in this case.
      • 2. To find a shortest path from a single source node to a single destination node in a network. Dijkstra algorithm works in the same way as it does in case 1, but the search will terminate when the destination node is attached to the tree [2]. In this case Dijkstra algorithm also builds a shortest path tree with the source node as its root and a subset of the nodes in the network as branch nodes or leave nodes of the tree. The destination node is the last leave node being attached to the tree. In the case of searching for a minimum hop path this algorithm creates a minimum hop path tree. In the worst luck case it has to find all the minimum hop paths to all the nodes which are as far away as or less far away than the destination node from the source node (i.e. all the nodes lying in the searching range shown by the big circle in drawing sheet 1-1), even though it is only required to find one path to a single destination node. In the case of searching for a minimum cost path this algorithm builds a minimum cost path tree. In the worst luck case it has to find all the minimum cost paths from the source to all the nodes which are at the same cost away as or less cost away than the destination node from the source node (i.e. all the nodes lying in the big searching range circle shown by drawing sheet 1-1). In other words the problem of finding a shortest path (minimum hop or minimum cost path) from a single source to a single destination by Dijkstra algorithm is equivalent to the problem of finding all shortest paths from a single source node to all the nodes in a sub-network lying within the boundary of the big circle in sheet 1-1. The center of the big circle is the source node and the radius is the number of hops or the cost of the path from the source to the destination. Bear in mind that sheet 1-1 is a topology map rather than a geographic map. All hops or all equal cost paths are displayed by equal length straight lines, although they are not equal in length geographically. Hence, all nodes which are at the same hops away or at the same path cost away from the source node lie on the circumference of a circle. The time complexity of Dijkstra algorithm in case 2 is O(PD 2) where PD is the total number of nodes in the sub-network which includes all nodes in the big circle shown by sheet 1-1 [4].
  • Obviously Dijkstra algorithm is not efficient enough in case 2, as it has to find a large number of shortest paths which are not required while the purpose is to find only one shortest path from a single source to a single destination.
  • In a large high speed network the set up time of a shortest path from a single source to a single destination is a very important parameter, especially from the point of view of path switching on failure or preemption. The rerouting of a lot of connections that were using a failing or preempted link or node may lead to a high number of simultaneous new path set up and create a burst of processing overhead. In order to avoid disrupting the connections at the end user level in the above situation it is highly desirable to reduce both the overhead of a shortest path search algorithm and the shortest path set up time.
  • SUMMARY OF THE INVENTION
  • To make shortest path search more efficient and faster, a new search method “Midway” is invented. Instead, of starting from the source node and searching all the way through to the destination node as the way Dijkstra algorithm works, Midway starts from both ends (i.e. source and destination) and runs shortest path search from both ends simultaneously or alternatively, until a shortest path tree from one end meets a shortest path tree from the other end at a “meet node” on midway (see sheet 1-1), and the concatenated path (source node—meet node—destination node) meets a certain condition. Hence the new algorithm is named “Midway”. In comparison with Dijkstra, Midway algorithm drastically reduces the overhead in search of a shortest path by reducing the number of nodes being searched, and hence it can find a shortest path in much less time. In multiprocessor environment the two shortest path search processes (or threads) from both ends may run in parallel, and shortest path set up time will be further reduced. The implementation of the said new search method should minimize the additional code overhead required by doing shortest path search simultaneously or alternatively from both ends, and should define a new condition other than the condition used by Dijkstra to determine when the search should terminate. The implementation will be described in the detailed description part.
  • BRIEF DESCRIPTION OF THE DRAWING
  • Drawing sheet 1-1 shows a big circle which is the searching range of Dijkstra algorithm applied to searching for a shortest path from a single source node to a single destination node. It also shows two small circles which are searching ranges of Midway algorithm. One is the searching range of the search started from the source node while the other is that of the search started from the destination node. The two small circles touch at the meet node where two shortest paths meet.
  • DETAILED DESCRIPTION OF THE INVENTION
  • Comparison of Overhead (i.e. Complexity) between Midway and Dijkstra Algorithms
  • To find a shortest path from a source node to a single destination node, the Dijkstra algorithm overhead is measured by O(PD 2) where PD is the number of nodes in the searching range shown by a big circle in sheet 1-1, while the Midway algorithm overhead is measured by O(PM1 2) Plus O(PM2 2) where PM1 is the number of nodes in small circle I and PM2 is the number of nodes in small circle 2 (sheet 1-1). The number of nodes contained in a searching range (depicted by a circle) depends on the topology of the network and the area of the circle (i.e. square of the radius of the circle), and it grows rapidly with the radius which represents the total number of hops or total path cost of the shortest path. The diagram in sheet 1-1 shows that the meet node is in the middle of the shortest path, the small circle 1 radius approximately equals to the small circle 2 radius and equal to one half of the big circle radius. For a rough estimate, assume the network nodes are evenly distributed in the circle, so the number of nodes in a circle is proportional to the square of the radius of the circle. Hence it can be concluded that
    P M1 =P M2P D
    and
    O(P M1 2)+O(P M2 2)=2×O( 1/16P D 2)
    which means that overhead of Midway algorithm is approximately ⅛th of that of Dijkstra algorithm. However, the above conclusion is just a rough estimate, and the actual reduction of overhead provided by Midway algorithm heavily depends on the network topology. The reduction of overhead by Midway algorithm is supported by simulation test results of the code implementing Midway algorithm.
    Detailed Description of Midway Algorithm Implementation
  • Midway shortest path search algorithm may be implemented in different ways. In single processor environment shortest path search from both end nodes is executed in a single task and a single function by alternatively swapping pointers to two separate set of data structures, one for search from source node and the other for search from destination node. In multiprocessor environment shortest path search processes from source node and from destination node may be executed in parallel to further reduce shortest path set up time. In comparison to Dijkstra algorithm Midway requires some additional code overhead as it needs to do shortest path search from both source and destination nodes. In order to avoid the additional overhead from outweighing the benefit of Midway algorithm, the implementation should minimize the above mentioned code overhead. Detailed description of Midway algorithm is given in two parts, one for single processor environment and the other for multi-processor environment, and each part is further divided into two separate cases one for minimum cost path search and the other for minimum hop path search. The description illustrates how to do minimum cost or minimum hop search from both the source node and destination node simultaneously by multi-threading or multi-tasking, or alternatively in a single task and a single function, and how to determine a shortest path is found successfully or the path search fails. This also illustrates the essential difference between Dijkstra and Midway algorithms.
  • All sanity checks, check of link capabilities and other link parameters against path requirements (constraints), randomizing the order of nodes to be searched for link load balancing purpose, and other considerations required in practical application are omitted for clarity purpose.
  • Assumptions Made:
      • 1. The network is an undirected graph which means that if a link cost is assigned to a link between two nodes, the cost is same in both directions.
      • 2. Link cost is always a positive value.
      • 3. Valid node numbers are 1, 2, 3, . . . , MAXNODES.
        Note: Midway algorithm also applies to directed graph network. In this case to build the backward search tree (see p. 8) the inward link cost should be used instead of using the outward link cost.
        Definitions:
  • In order to make the description of the algorithm more readable the following terms are defined. (words in Italic font are defined terms)
      • Network topology map—an array (struct nodeInfo netMap[MAXNODES+1]) wherein MAXNODES equals to total number of nodes in the network, and its indexes are node numbers of nodes in the network (see header file midway.h). Each array element is a structure (struct nodeInfo) which contains two fields, number of neighbor nodes and a list of neighbor nodes. Each element of neighbor node list (struct neighborNode) contains fields of neighbor node number and link cost. (It may also contain fields of link capabilities, link state (blocked or not) or other link parameters which may be required in practical application, but they are not included here.) The network topology map structure should be updated by routing module periodically.
      • Shortest path—a minimum cost path or a minimum hop path as the case may be.
      • Forward search direction—search started from source node.
      • Backward search direction—search started from destination node.
      • Forward search tree—a shortest path search tree with source node as its root.
      • Backward search tree—a shortest path search tree with destination node as its root.
      • Current search direction tree—if current search direction is forward, it isforward search tree, otherwise it is backward search tree.
      • Opposite search direction tree—if current search direction is forward, it is backward search tree, otherwise it isforward search tree.
      • Searching node—a node from which to search for a shortest path by looking at all its neighbor nodes.
      • Neighbor node—a node which has a direct link to a searching node.
      • Searched node—the neighbor node which is currently being processed.
      • Node path cost—the total cost of the links in the path which connects this node to the root of the tree. (for minimum cost path only)
      • Node path hops—the total number of hops in the path which connects this node to the root of the tree.
      • Total path cost—the total cost of the links in a path which connects the source node to the destination node. (for minimum cost path only)
      • Total path hops—the total number of hops in a path which connects the source node to the destination node.
      • Path cost—may be used to denote node path cost or total path cost according to the context. (for minimum cost path only)
      • Path hops—may be used to denote node path hops or total path hops according to the context.
      • Path parameters—embodies path cost and path hops.
      • Path A is more expensive than path B—if path cost of A is greater than path cost of B or if path hops of A is greater than path hops of B when the two path costs are equal. (for minimum cost path only)
      • Path A is less expensive than path B—if path cost of A is less than path cost of B or if path hops of A is less than path hops of B when the two path costs are equal. (for minimum cost path only)
      • Path A is equally expensive as path B—if path cost of A is equal to path cost of B and path hops of A is equal to path hops of B. (for minimum cost path only)
      • Least cost leave node is a leave node whose path to the root node is not more expensive than the path of any other leave node to the root. (for minimum cost path only)
      • Leave node list—the leave nodes of the shortest path tree in each search direction are linked up in a double linked list which is sorted by the values of node path cost and node path hops of each leave node. The Least cost leave node is at the head of the linked list. (for minimum cost path only)
      • least cost branch is defined as the branch starting from the root node to the least cost leave node. (for minimum cost path only)
      • Candidate shortest path—a path that connects source node to destination node, and it is not more expensive than any other connecting paths found so far. (for minimum cost path only)
        Single Processor Environment
        Midway Minimum Cost Path Search Algorithm for SINGLE PROCESSOR SYSTEM
        Function Name Midway_min_cost_sp
        Description: To find a minimum cost path from a single source node to a single destination node. Search is processed from source node or destination node alternatively. This function creates two minimum cost path trees, one starts from source node as root, and the other starts from the destination node. A minimum cost path is found when the minimum cost path from the source node meets that from the destination and the concatenated path meets a certain condition.
        Input:
    • 1. Network topology map.
    • 2. source node and destination node.
    • 3. path requirement (path constraints) information should also be provided in practical application, but it is omitted here.
      Output:
    • 1. The Minimum Cost Path
    • 2. Total number of hops in the path
    • 3. Total cost of the path.
      The output information is only valid when return is SUCCESS.
      Called by: routing module.
      Return: SUCCESS or FAILURE;
      Algorithm of Function Midway_min_cost_sp:
      • 1. Initialize two identical sets of data structures. One set for forward search, and the other for backward search. (see attached header file “midway.h”.)
      • Both the forward search tree structure and the backward search tree structure are created as a global two dimensional array defined as struct nodeTempInfo tree[2][MAXNODES+1] wherein MAXNODES equals to the total number of nodes in the network, and tree[0][j] is forforward search direction, tree[1][j] for backward search direction. The second index “j” in tree[i][j] is the node number of each node in the network. Each element of the array is a structure (struct nodeTempInfo) which contains fields of parent node number, node path cost and node path hops. Initialize the forward search tree structure by setting source node as its root as well as its only leave node, that is to set fields of tree[0][srcNode].parentNode equal to source node, node path cost and node path hops equal to “0”. Initialize the backward search tree structure by setting destination node as its root as well as its only leave node, that is to set fields of tree[1][destNode].parentNode equal to destination node, node path cost and node path hops equal to “0”. For the rest elements in the array tree[i][j] initialize parent node to “0”, and node path cost as well as node path hops to INFINITY which is a very large number.
      • Initialize a global two dimensional array leave node list which is defined as struct node leaveCost[2][MAXNODES+1] to hold all leave nodes of the two search trees wherein leaveCost[0][j] is for leave nodes on forward search tree, and leaveCost[l][j] for those on backward search tree. The second index “j” in leaveCost[i][i] is the node number of each node in the network. Each element leaveCost[i][j] is a structure (struct node) which contains fields of prev and next. “prev” is the node ahead of node j in the sorted list, and “next” is the node following node j in the sorted list. Both forward and backward leave node lists are sorted lists with the least cost leave node at the head of each list. Initialize forward leave node list (leaveCost[0][ ]) by setting source node as the only leave node in the list, and initialize backward leave node list (leaveCost[1][ ]) by setting destination node as the only leave node in the list.
      • Declare a global data structure “struct meet_node meetNode”, with fields “node” to hold the meet node number, “total_path_cost” to hold the total path cost of the candidate shortest path, and “total_path_hops” to hold total path hops of the candidate path. Initialize node equal to “0”, “total_path_cost” and “total_path hops” to INFINITY.
      • 2. Initialize global variable “Direction” equal to FORWARD (i.e. to start search from the source node first).
      • 3. Entry of loop to build minimum cost path tree from source or destination node. Set pointers pointing to the appropriate set of data structures tree[ ][ ] and leaveCost[ ][ ] depending on search direction being FORWARD or BACKWARD.
      • 4. Set searching node equal to the head node in the leave node list (i.e. the least cost leave node on the current search direction tree). First time entering this loop searching node is the root node of the said tree.
      • 5. Pick the first neighbor node in neighbor node list of the searching node, and set the said neighbor node as searched node.
      • 6. Entry of loop to Search all neighbor nodes of the searching node. If the searched node is the parent node of searching node on the current search direction tree, skip this node and go to step 17, otherwise go to next step.
      • 7. Calculate new node path cost by adding node path cost of the searching node and the link cost from searching node to the searched node. Calculate new node path hops by adding 1 to node path hops of searching node.
      • 8. If the said searched node is already a leave on the current search direction tree go to next step, otherwise go to step 10.
      • 9. The searched node is already on the current search direction tree. Compare current node path parameters of the searched node with new path parameters. If current searched node path is more expensive than new path go to next step, otherwise leave the said searched node as is and go to step 17.
      • 10. Now process the searched node. Initialize or update its path parameters by setting searched node path cost equal to new node path cost, and searched node path hops equal to new node path hops.
      • 11. If the searched node is also a node on the opposite search direction tree (i.e. this is the new meet node of a new path linking the source node and destination node), go to next step, otherwise go to step 15.
      • 12. The new path linking the two end nodes as mentioned in step 11 is given by concatenating the path from the source node to the new meet node and the path from the destination node to the new meet node. Calculate the new total path cost by adding the node path cost of the new meet node on the current search direction tree and its node path cost on the opposite search direction tree. Calculate the new total path hops by adding the node path hops of the new meet node on the current search direction tree and its node path hops on the opposite search direction tree. If there is no existing candidate shortest path, go to step 14; otherwise go to next step.
      • 13. If there exists a candidate shortest path, compare the new path parameters with candidate path parameters. If candidate path is more expensive than new path, go to step 14; otherwise leave the existing candidate shortest path as is and go to step 15.
      • 14. Set the new path as the candidate shortest path by setting meetNode.node equal to the new meet node, meetNode.total_path_cost equal to new total path cost and meetNode.total_path_hops equal to new total path hops.
      • 15. If the searched node is already on the current search direction tree, go to next step; otherwise attach it to the said tree as a new leave node by attaching it to the link from the searching node (i.e. set its parent node equal to searching node), and insert it into the leave node list at an appropriate position sorted by its node path cost and node path hops, then go to step 17.
      • 16. As the searched node is already on the current search direction tree, remove it from the said tree and attach it back to the tree by linking it to the searching node. In addition to that since its node path cost and node path hops on the current search direction tree have been reduced in step 10, readjust its position in the leave node list if its node path is less expensive than the node path of the leave node preceding it in the said list.
      • 17. Get next neighbor node of the searching node. If there is no more next neighbor node go to next step; otherwise set searched node equal to next neighbor node and loop back to step 6.
      • 18. All neighbor nodes of the searching node have been processed, so remove the searching node from the leave node list. The next searching node should be the head node in the updated leave node list (i.e. the least cost leave node on the updated current search direction tree). If next searching node is a valid node number, go to next step. If next searching node is not a valid node number, it means that the search process has exhausted all nodes in the network. In this case if there exists a candidate shortest path, it is the wanted minimum cost path and return SUCCESS; otherwise return FAILURE because it means that source node and destination node are not connected.
      • 19. Reaching this step the next searching node is valid. If meetNode.node equals “0”, go to step 20; otherwise meetNode.node is valid which means there exists a candidate shortest path. Then check the candidate shortest path to determine if it satisfies the condition of a qualified minimum cost path. First calculate the total path cost of a virtual minimum cost path by adding the path cost of the least cost branch on the forward search tree and the path cost of the least cost branch on the backward search tree, and also calculate the total path hops of a virtual minimum cost path by adding the path hops of the two least cost branches on the two above mentioned trees. Next compare the path parameters (i.e. path cost and path hops) of the virtual minimum cost path with those of the candidate shortest path to check the qualification condition whether the candidate shortest path is not more expensive than the virtual minimum cost path. If the above stated condition is TRUE, the candidate shortest path is identified to be the qualified minimum cost path, search is done, and return SUCCESS; otherwise go to next step.
      • 20. Reaching this step there is no candidate shortest path or the condition stated in step 19 is not TRUE, and the next searching node is valid, switch search direction (i.e. switch search direction from FORWARD to BACKWARD or vice versa) and loop back to step 3 to continue search.
        PROOF of the condition defined in step 19 to determine if a qualified minimum cost path is found:
  • When the condition defined in step 19 is true, the least cost leave node either on forward search tree or on backward search tree may or may not lie on a path connecting source node and destination node. If it does, the said connecting path must be equally expensive as or more expensive than the candidate shortest path. If it does not lie on any connecting path, it might reach one of the leave nodes on the opposite search direction tree in the subsequent rounds of search, and the connecting path thus created must be more expensive than that of the candidate shortest path. By exhausting all possible cases it can be concluded that there is no possibility to find a connecting path which is less expensive than the candidate shortest path.
  • Midway Minimum Hop Path Search Algorithm for SINGLE PROCESSOR SYSTEM
  • Function Name Midway_min_hop_sp
  • Description: To find a minimum hop path from a single source node to a single destination node. Minimum hop path search function runs path search code from source or destination node alternatively depending on the value of search direction.
  • Conditions to determine a minimum hop path being found in forward search direction:
      • 1. forward search tree meets destination node, or
      • 2. forward search tree meets backward search tree at a meet node.
        Conditions to determine a minimum hop path being found in backward search direction:
      • 1. backward search tree meets source node, or
      • 2. backward search tree meets forward search tree at a meet node.
        Input:
      • 1. network topology map.
      • 2. source node, destination node.
      • 3. requirements of link capabilities should also be provided in practical application, but omitted here.
        Output:
      • 1. the minimum hop path.
      • 2. the total number of hops in the path.
        The returned information is valid only if return value is SUCCESS.
        Called by: routing module.
        Return: SUCCESS or FAILURE
        Algorithm of Function Midway_min_hop_sp:
      • 1. Create and Initialize two identical sets of data structures, one set for forward direction search and the other for backward direction search. (see header file midway.h)
      • The data structures and the initialization of the forward search tree and the backward search tree are exactly the same as those described in step 1 of algorithm Midway_min cost_sp.
      • For each search direction create two identical lists, one is searching node list to hold all searching nodes in each search direction and the other is searched node list to hold the nodes being searched by the searching node. Initialize source node as the only searching node in the forward searching node list (i.e. leaveHop0[0][0].node=source node; leaveHop0[0][0].next=NULL;), and initialize destination node as the only searching node in the backward searching node list (i.e. leaveHop0[1][0].node=destination node; leaveHop0[1][0].next=NULL;). leaveHop0[ ][ ] and leaveHop1 [ ][ ] serve to hold the searching node list and searched node list alternatively. (see arrays leaveHop0[ ][ ], leaveHop1 [ ][ ] in midway.h).
      • Initialize global variables “hops[0]” and “hops[1]” to “0” where “hops[0]” is used to control the swapping of pointers to searching node list and searched node list in the forward search direction, while “hops[1]” is used for the same purpose in the backward search direction.
      • Set global variable Direction equal to FORWARD (i.e. to start search from the source node first).
      • 2. Entry of the loop to build minimum hop path trees in forward or backward search direction alternatively. Set pointers pointing to appropriate set of data structures tree[ ][ ], leaveHop0[ ][ ] and leaveHop1[ ][ ] depending on current search direction being FORWARD or BACKWARD. If this is not the first time entering this loop, swap the pointers to searching node list and searched node list, so the searched nodes in the previous round become searching nodes in the current round, and the searching node list used in the previous round is cleared and ready to hold the searched nodes in the current round.
      • 3. If searching node list is empty return FAILURE which means that source node and destination node are not connected, otherwise set searching node equal to the first node in searching node list, and go to next step.
      • 4. Entry of the loop to process all nodes in the searching node list. Set searched node equal to the first neighbor node in the neighbor node list of the current searching node.
      • 5. Entry of the loop to search all neighbor nodes of a searching node. If the searched node is already on the current search direction tree, skip this node and go to step 10, otherwise go to next step.
      • 6. Process the searched node. Attach it on the current search direction tree by linking it to the searching node:
  • Tree [Direction][searched_node].parentNode=searching_node; and update field “pathhops” of searched node:
    tree[Direction][searched_node].pathHops =
    tree[Direction][searching_node].pathHops + 1;
      • 7. If searched node equals target node (in forward search direction target node is destination node, and in backward search direction target node is source node) or if searched node is a leave node on the opposite search direction tree, this means that the searched node is the meet node on the wanted minimum hop path and go to next step; otherwise go to step 9.
      • 8. The minimum hop path found in step 7 is given by concatenating the path from the source node to the meet node and the path from the meet node to the destination node, and the total path hops of the said minimum hop path is given by adding the node path hops of the meet node in forward search direction and that of the meet node in backward search direction. Return SUCCESS.
      • 9. Attach searched node to the tail of the searched node list, and go to next step.
      • 10. If the neighbor node list of the searching node is exhausted, go to next step; otherwise set searched node equal to the next neighbor node of the searching node, and loop back to step 5.
      • 11. All neighbor nodes of the current searching node have been searched. Check the searching node list. If searching node list is exhausted, go to next step; otherwise set searching node equal to next node in the searching node list, and loop back to step 4.
      • 12. Current searching node list is exhausted, switch search direction (switch search direction from FORWARD to BACKWARD or vice versa), increase hops[Direction] by 1, and loop back to step 2.
  • End of Single Processor part
  • Multi-Processor Environment
  • In multi-processor environment it is possible to take advantage of the power of parallel processing provided by multi-threading or multi-tasking to further reduce shortest path set up time. A method based on multi-threading is described in the following. If the operating system does not support multi-threading, multi-tasking is the second choice (in certain real time operating system multi-tasking is as efficient as multi-threading). The method based on multi-tasking should be very similar to that based on multi-threading and its description will not be given. Thread management, scheduling and synchronization (shared resources integrity protection) should be compliant to POSIX standard [5] and certain extensions supported by the operating system in use may also be adopted.
  • The process which runs the routing module code should do the following to create a Parallel Processing Environment. (All thread synchronization mechanisms mutexes, read write locks and condition variables created by routing process are process private objects.)
      • 1. The Boss-Worker parallel programming model is applied to implement the shortest path search algorithm [6]. The initial thread of routing process creates a boss thread to run the main shortest path function, and creates two worker threads to run the forward and backward shortest path search functions.
      • 2. The worker thread creation function pthread_create( ) passes a thread argument “int Direction” to the created thread. Direction is assigned FORWARD to one worker thread and BACKWARD to the other one. The worker thread with Direction FORWARD will create a forward search tree rooted at source node (i.e. the host node), while the worker thread with Direction BACKWARD will create a backward search tree rooted at the destination node.
      • 3. Set system scheduling contention scope for the two worker threads equal to PTHREAD_SCOPE_SYSTEM to bind them to two kernel threads in a one to one map, and make sure they will run on two distinct processors to guarantee parallelism.
      • 4. As shortest path searching is a real time job, the scheduling policy of the two worker threads should be SCHED_FIFO and their priority should be set to very high priority, so that they will be scheduled to run as soon as they get work and will not be preempted before the work is done. (If 3 and 4 are not supported by the operating system, other scheduling policy may be considered, but performance will be degraded.)
      • 5. Create mutexes or read write locks to protect following shared data or data structures (see header file midway.h).
      • “struct nodeTempInfo tree[2][MAXNODES+1]” in whichforward search tree and backward search tree are created. (for both minimum cost and minimum hop path)
      • “struct meet_node meetNode” (for minimum cost path)
      • “unsigned short meetNode” (for minimum hop path)
      • 6. Initialize condition variables condForward, condBackward and condBoss and declare condition predicates searchForward, searchBackward and searchDone to coordinate synchronization between boss thread and worker threads. Each condition predicate should be protected by its associated mutex.
      • 7. Define two user defined signal types SIGUSR1 and SIGUSR2 for inter-thread communication between two worker threads running in parallel to search for a shortest path from two opposite ends (source and destination). When one thread has found a shortest path, it will send a signal to the other thread notifying it to stop search. SIGUSR1 is to be sent to forward search worker thread by backward search worker thread, and SIGUSR2 is to be sent in the other way round. All threads in routing process should block the two user defined signal types except the two said worker threads. The forward search worker thread should accept SIGUSR1 and the backward search work thread should accept SIGUSR2. Install two signal handlers in signal structures (struct sigaction act1, act2;). Set act1.sa_handler equal to function pointer sig_handler1 and act2.sa_handler equal to function pointer sig_handler2. Algorithm of Signal handlers will be given following the description for function Min_cost_search.
      • 8. Declare global array flagDone[2]. It is initialized to all zeros by function Midway_min_cost_mp or Midway_min_hop_mp. When flagDone[0] is set to “1” (TRUE), it is to notify forward search thread to stop search. When flagDone[1] is set to “1” (TRUE), it is to notify backward search thread to stop search. Array flagDone[2] is not a shared object. “flagDone[i]” is updated by sig_handler.
      • 9. Whenever the boss thread gets a job request to find a shortest path from the source node (i.e. the host node) to a destination node, it runs function Midway_min_cost_mp for minimum cost path or function Midway_min_hop_mp for minimum hop path. Either function being called will initialize working data structures and global variables in the process heap space to be used by the two worker threads and wake up the worker threads by signaling a condition variable.
      • 10. The two worker threads need to access the structure of network topology map. As the access is “read only”, it doesn't need thread synchronization. The boss thread is responsible for updating the network topology map, but the structure should be kept frozen while shortest path search is in progress, so there is no concurrent access conflict in this structure.
        Midway Minimum Cost Path Search Algorithm for MULTI-PROCESSOR SYSTEM
  • The algorithm of boss thread function Midway_min_cost_mp and that of worker thread function Min_cost_search are described below.
  • Function Name: Midway_min_cost_mp
  • Description: To find a minimum cost path from a single source node to a single destination node. This function activates two worker threads running simultaneously to create two minimum cost path trees, one starts from source node as root, and the other starts from the destination node as root. A minimum cost path is found when two minimum cost paths meet and the concatenated path meets a certain condition.
  • Input:
    • 1. Network topology map.
    • 2. source node and destination node.
    • 3. path requirement information (path constraints) should also be provided in practical application, but it is omitted here.
      Output:
    • 1. The minimum cost path, total number of hops in the path and total cost of the path.
    • 2. or SEARCH FAILED.
      Running in boss thread.
      Algorithm of Function Midway_min_cost_mp:
      • 1. Wait on job queue. The job request is either to update structure Network topology map (higher priority) or to find a shortest path. Whenever the boss thread gets a job request to find a shortest path (minimum cost path) from the source node (i.e. the host node) to a destination node, it will first initialize the following working data structures and global variables in the process heap space to be used by the two worker threads.
      • The data structures and initialization of forward search tree and backward search tree in array tree[ ][ ] are same as those described in step 1 of function Midway_min_cost_sp (p. 11). As they are shared objects and may subject to concurrent access, each must be protected by its own mutex or a read write lock.
      • The data structure and initialization of leave node lists in array leaveCost[ ][ ] are same as those described in step 1 of function Midway_min_cost_sp (p. 11). As they are not shared objects, there is no need to consider thread synchronization.
      • Structure “struct meet_node meetNode” is same as that described in Midway_min_cost_sp (p. 12). It is a shared object and should be protected by a mutex or read write lock.
      • Initialize condition variables condForward, condBackward and condBoss and condition predicates searchForward, searchBackward and searchDone. Each condition predicate should be protected by its own associated mutex.
      • Zero out array flagDone[2]. This array is not a shared object.
      • Declare a shared variable “int retVal” to indicate function Min_cost_search return value is SUCCESS or FAILURE. It should be protected by a mutex.
      • Thread synchronization should be applied to access shared data and data structures. The lock and unlock operations will not be explicitly stated in the description of the algorithm to make the description more readable, but they should be implemented in the code.
      • 2. Wake up forward search thread by setting predicate searchForward equal to TRUE and signaling condition variable condForward, and wake up backward search thread by setting predicate searchBackward equal to TRUE and signaling condBackward.
      • 3. Wait on condition variable condBoss, till the shortest path is found by the worker threads.
      • 4. When one of the worker threads succeeds in finding a shortest path or fails, it will set return value “retVal” to SUCCESS or FAILURE, set predicate searchDone equal to TRUE and signal condBoss to wake up boss thread. The boss thread being activated will continue to run and go to step 5.
      • 5. Check shared variable “retVal”. If it is SUCCESS, present the shortest path in the format of a list of nodes and the total path cost and total path hops of the path to the job requesting module, otherwise notify requesting module SEARCH FAILED. The way to get the result shortest path is to concatenate the path from the source node to the meet node by tracing back from tree[FORWARD][meet node] all the way to tree[FORWARD][source node] and the path from the meet node to the destination node by tracing back from tree[BACKWARD][meet node] all the way to tree[BACKWARD][destination node] where meet node is given by meetNode.node. “total path cost” and “total path hops” are given by meetNode.total_path cost and meetNode.total_path_hops. Loop back to step 1.
        Function Name Min_cost_search
        Description: It creates a shortest path tree rooted at the source or destination node as the case may be. A minimum cost path is found when the shortest path tree created by it meets that from the opposite end node and the concatenated path meets a certain condition.
        Input
    • 1. Network topology map.
    • 2. source node and destination node.
    • 3. path requirement information (path constraints) should also be provided in practical application, but it is omitted here.
      Output:
    • 1. The Minimum Cost Path
    • 2. Total number of hops in the path and total cost of the path
    • 3. return variable “retVal” SUCCESS or FAILURE
      The output information is only valid when shared variable “retVal” is SUCCESS.
      Activated by function Midway_min_cost_mp.
      Running in worker thread.
      Algorithm of Function Min_cost_search:
      • 1. Entry of loop to wait for work i.e. to wait on condition variable condForward or condBackward depending on argument Direction being FORWARD or BACKWARD which is passed to it by thread creation function.
      • 2. When boss thread function Midway_min_cost_Mp signals the said condition variable, the worker thread is scheduled to run, and go to next step.
      • 3. Set pointers pointing to the appropriate set of data structures tree[ ][ ] and leaveCost[ ][ ] of each thread depending on argument “Direction” being FORWARD or BACKWARD. In forward search direction the root node of the forward search tree is the given source node, and destination node is the given destination node, while in backward search direction the root of the backward search tree is the given destination node, and the destination node is the given source node.
      • 4. Steps 4 through 17 are exactly the same as the corresponding steps in algorithm of Function Midway_min_cost_sp (see pp 12, 14).
      • 18. Reaching this step all neighbor nodes of the searching node have been processed, so remove the searching node from the leave node list. Now check if the other worker thread has sent any signal by reading flagDone[Direction]. If the value is TRUE, it means that search should stop, break out of the loop started at step 4, and loop back to step 1, otherwise continue search. The next searching node should be the least cost leave node on the updated current search direction tree. If the next searching node is a valid node number, go to next step; otherwise go to step 20.
      • 19. Reaching this step the next searching node is valid. If meetNode.node equals “0” which means there is no candidate shortest path, go to step 21; otherwise meetNode.node is valid which means there exists a candidate shortest path. Then check the candidate shortest path to determine if it satisfies the condition of a qualified minimum cost path. This condition is exactly the same as that described in step 19 of function Midway_min_cost_sp (see p. 14). If the above stated condition is TRUE, search is done, set shared variable “retVal” to SUCCESS, send a signal to the other worker thread to notify it to stop, set predicate searchDone to TRUE and signal condBoss to wake up boss thread, break out of the loop started at step 4, and loop back to step 1. If the qualified minimum cost path condition check fails, go to step 21.
      • 20. Reaching this step there is no valid searching node number left. If there exists a candidate shortest path, it is the wanted shortest path and set shared variable “retVal” to SUCCESS, otherwise set “retVal” to FAILURE, as the latter condition means the source node and destination node are not connected. In both cases signal the other worker thread to stop, set predicate searchDone to TRUE, signal condBoss to wake up boss thread, break out of the loop started from step 4 and loop back to step 1.
      • 21. Reaching this step either candidate shortest path doesn't exist, or the condition stated in step 19 is not TRUE and the next searching node is valid, so loop back to step 4 to continue search.
        PROOF of the condition stated in step 19 is the same as the proof given in function
        Midway_min_cost_sp. (see p. 14)
        Function Name: sig_handler1
        Description: To handle the signal of type SIGUSR1 being sent to forward search worker thread to notify the said thread to stop search.
        Algorithm of Function sig_handler1
  • 1. set flagDone[0] equal to TRUE.
  • 2. return;
  • Function Name: sig_handler2
  • Description: To handle the signal of type SIGUSR2 being sent to backward search worker thread to notify the said thread to stop search.
  • Algorithm of Function sig_handler2
  • 1. set flagDone[1] equal to TRUE.
  • 2. return;
  • Midway Minimum Hop Path Search Algorithm for MULTI-PROCESSOR SYSTEM
  • Function Name Midway_min_hop_mp
  • Description: To find a minimum hop path from a single source node to a single destination node. This function activates two worker threads running simultaneously to create two minimum hop path trees, one starts from source node as root, and the other starts from the destination node as root.
  • Conditions to determine a minimum hop path being found in forward search direction:
      • 1. forward search tree meets destination node, or
      • 2. forward search tree meets backward search tree at a meet node.
        Conditions to determine a minimum hop path being found in backward search direction:
      • 1. backward search tree meets source node, or
      • 2. backward search tree meets forward search tree at a meet node.
        Input:
      • 1. network topology map.
      • 2. source node, destination node.
      • 3. requirements of link capabilities (path constraints) should also be provided in practical application, but omitted here.
        Output:
      • 1. the minimum hop path and the total number of hops in the path.
      • 2. or SEARCH FAILED.
        Running in boss thread.
        Algorithm of Function Midway_min_hop_mp:
      • 1. Wait on job request queue. The job request is either to update structure Network topology map (higher priority) or to find a shortest path. Whenever the boss thread gets a job request to find a shortest path (minimum hop path) from the source node (i.e. the host node) to a destination node, it will first initialize the following working data structures (two identical sets of data structures, one set for forward search direction and the other for backward search direction), and global variables in the process heap space to be used by the two worker threads.
      • Initialization of the forward search tree and the backward search tree in array tree[ ][ ] and thread synchronization mechanism are exactly the same as those described in step 1 of algorithm Midway_min_cost_mp (see p. 21).
      • Initialize searching node list and searched node list (leaveHop0[ ][ ] and leaveHop1[ ][ ]) in the same way as described in the corresponding bullet of step 1 in algorithm Midway_min_hop_sp (see p. 16). The two arrays are not shared objects
      • Initialize global variables “hops[0]” and “hops[1]” in the same way as described in the corresponding bullet of step 1 in algorithm Midway_min_hop_sp (see p. 16). Array hops[2] is not a shared object.
      • Initialize global variable “unsigned short meetNode” to “0” which is a shared object and should be protected by a mutex or a read write lock.
      • Initialize global variable “unsigned short totPathHops” equal to “INFINITY”. It is not a shared object.
      • Initialize condition variables condForward, condBackward and condBoss which are not shared objects. Initialize condition predicates searchForward, searchBackward and searchDone which are shared objects and should be protected by their associated mutexes. Both condition variables and condition predicates are used to coordinate synchronization between boss thread and its two worker threads.
      • Declare a shared variable “int retVal” to indicate function Min_hop_search return value is SUCCESS or FAILURE. It should be protected by a mutex.
      • Zero out global array flagDone[2]. This array is not a shared object.
      • Thread synchronization should be applied to access shared data and data structures. The lock and unlock operations will not be explicitly stated in the description of the algorithm to make the description more readable, but they should be implemented in the code.
      • 2. Wake up forward search thread by setting predicate searchForward to TRUE and signaling condition variable condForward, and wake up backward search thread by setting predicate searchBackward to TRUE and signaling condBackward.
      • 3. Wait on condition variable condBoss, till the shortest path is found by the worker threads.
      • 4. When one of the worker threads succeeds in finding a shortest path or fails, it will set its return value to SUCCESS or FAILURE, set predicate searchDone to TRUE and signal condBoss to wake up boss thread. The boss thread will go to next step.
  • 5. Check the return value “retVal”. If it is SUCCESS, present the shortest path in the format of a list of nodes and the total path hops of the shortest path to the job requesting module; otherwise notify requesting module SEARCH FAILED, and then loop back to step 1. The way to get the result shortest path is the same as that described in step 5 of algorithm Midway_min_cost_mp (p. 22). “total path hops” is given by adding the node path hops of the meet node on the forward search tree and that on the backward search tree:
    totPathHops = tree[FORWARD][meetNode].pathHops +
          tree[BACKWARD][meetNode].pathHops; (see midway.h)

    Function Name Min_hop_search
    Description: It creates a shortest path tree rooted at the source or destination node as the case may be. A minimum hop path is found when the shortest path tree created by it meets that from the opposite end node.
    Input
      • 1. Network topology map.
      • 2. source node and destination node.
      • 3. path requirement information (path constraints) should also be provided in practical application, but it is omitted here.
        Output:
      • 1. the meet node number and minimum hop path.
      • 2. return variable “retVal” SUCCESS or FAILURE.
        The output information is only valid when shared variable retVal is SUCCESS.
        Activated by function Midway_min_hop_mp.
        Running in worker thread.
  • Algorithm of Function Min_hop_search:
      • 1. Entry of loop to wait for work. Wait on condition variable condForward or condBackward depending on argument Direction being FORWARD or BACKWARD which is passed to it by thread creation function. When boss thread function Midway_min_hop_mp signals the said condition variable, the worker thread is activated. It should set predicate searchForward or searchBackward to FALSE, set pointers pointing to appropriate set of data structures tree[ ][ ], leaveHop0[ ][ ] and leaveHop1[ ][ ] depending on search direction being FORWARD or BACKWARD, and go to next step.
      • 2. Entry of loop to build minimum hop path tree in forward or backward search direction. If this is not the first time entering this loop, swap the pointers to searching node list and searched node list, so the searched nodes in the previous round become searching nodes in the current round, and the searching node list used in the previous round is cleared and ready to hold the searched nodes in the current round.
      • 3. If searching node list is empty, it means that source node and destination node are not connected, set return value “retVal” to FAILURE, send signal to notify the other worker thread to stop, set condition predicate “searchDone” to TRUE and signal condBoss to wake up boss thread, break out of the loop started from step 2, and loop back to step 1. If searching node list is not empty set searching node equal to the first element in searching node list, and go to next step.
      • 4. Steps 4 through 7 are exactly the same as the corresponding steps in algorithm Midway_min_hop_sp (see p. 17).
      • 8. Reaching this step the minimum hop path is found. Now first check if the other worker thread has sent any signal by reading flagDone[Direction]. If the value is TRUE, it means that this is a notification to stop search, break out of the loop started from step 2, and loop back to step 1; otherwise report search done by doing the following: Set shared variable meetNode equal to the meet node defined in step 7. Set return value “retVal” equal to SUCCESS. Send a signal to the other worker thread to notify it to stop search. Set condition predicate searchDone to TRUE and signal condition variable condBoss to wake up boss thread. Break out of the loop started at step 2, and loop back to step 1.
      • 9. Attach searched node to the tail of the searched node list, and go to next step.
      • 10. If the neighbor node list of the searching node is exhausted, go to next step, otherwise set searched node equal to the next neighbor node of the searching node, and loop back to step 5.
      • 11. All neighbor nodes of the current searching node have been searched. Now check if the other worker thread has sent any signal by reading flagDone[Direction]. If the value is TRUE, it means that this is a notification to stop search, break out of the loop started from step 2, and loop back to step 1; otherwise continue to search. Check the searching node list. If searching node list is exhausted, go to next step, otherwise set searching node equal to next node in the searching node list, and loop back to step 4.
      • 12. Current searching node list is exhausted, increase hops[Direction] by 1, and loop back to step 2. Notice that hops[Direction] is only used to control swapping of the pointers to searching node list and searched node list.
  • End of Multi-Processor part
    /********************** midway.h ********************/
    #define MAXNODES 250 /* maximum number of nodes allowed in a network */
    #define MAXNEIGHBORS 8 /* maximum number of neighbor nodes of a node */
    #define FORWARD 0
    #define BACKWARD 1
    #define INFINITY_COST 0xffff
    #define INFINITY_HOPS 0xff
    #define SUCCESS   1
    #define FAILURE   −1
    typedef struct nodeTempInfo
    {
     unsigned short parentNode;   /* parent node in the shortest path tree */
     unsigned short pathCost; /* total path cost from the node to root */
     unsigned char pathHops; /* total path hops from the node to root */
    } NODE_TEMP_INFO;
    typedef struct neighborNode
    {
     unsigned short node; /* neighbor node number */
     unsigned short linkCost;  /* link cost to this neighbor node */
    } NEIGHBOR_NODE;
    typedef struct nodeInfo
    {
     unsigned short nbors;   /* number of neighbor nodes */
     NEIGHBOR_NODE  neighbors[MAXNEIGHBORS];
    } NODE_INFO;
    NODE_INFO   netMap[MAXNODES + 1];  /* array index = node number */
    NODE_TEMP_INFO  tree[2][MAXNODES + 1];  /* second array index = node
    number */
    /*********************************
    tree[0] for forward search tree,
    tree[1] for backward search tree.
    **********************************/
    int    Direction, oppositeDirection; /* FORWARD or BACKWARD */
    unsigned short srcNode, destNode;
    #ifdef MINCOST
    /******** For minimum cost path only ***************/
    typedef struct meet_node
    {
     unsigned short node;
     unsigned short tot_path_cost;
     unsigned short tot_path_hops;
    } MEET_NODE;
    MEET_NODEmeetNode;
    typedef struct node
    {
     unsgned short prev; /* index of next node in the array */
     unsgned short next; /* index of previous node in the array */
    } NODE;
    NODE leaveCost[2][MAXNODES + 1]; /* second array index = node number */
    /****************************************
    leaveCost[0][ ] for forward search
    leaveCost[1][ ] for backward search
    *****************************************/
    #endif
    #ifdef MINHOP
    /********* For minimum hop path only ***************/
    typedef struct node
    {
     unsigned short node; /* node number */
     struct node  *next;  /* pointer to next node in the array */
    } NODE;
    NODE    leaveHop_0[2][MAXNODES + 1];
    NODE    leaveHop_1[2][MAXNODES + 1];
    /***********************************************
    leaveHop_0[0][MAXNODES + 1] for forward search
    leaveHop_0[1][MAXNODES + 1] for backward search
    leaveHop_1[0][MAXNODES + 1] for forward search
    leaveHop_1[1][MAXNODES + 1] for backward search
    ************************************************/
    unsigned char hops[2];
    unsigned short totPathHops, meetNode;
    #endif
    /***********************************************
    structures used by multi-threading are omitted.
    They are compliant to POSIX standard.
    ************************************************/
    /*** END ***/

Claims (7)

1-4. (canceled)
5. A method of determining a minimum hop path extending though a network of linked nodes, the linked nodes comprising a source node and a destination node, the method comprising:
building a forward tree having a root node comprising the source node and a plurality of forward tree branches, each forward tree branch comprising a portion of the linked nodes, the portion of the linked nodes of each forward tree branch comprising a node linked to the source node;
building a backward tree having a root node comprising the destination node, and a plurality of backward tree branches, each backward tree branch comprising a portion of the linked nodes, the portion of the linked nodes of each backward tree branch comprising a node linked to the destination node;
determining whether one of the forward tree branches has a node in common with one of the backward tree branches the backward tree; and
determining the minimum hop path comprises the forward tree branch comprising the common node and the backward tree branch comprising the common node.
6. A method of determining a minimum cost path extending though a network of nodes comprising a source node and a destination node, each of the nodes of the network being linked to at least one other node of the network by a link having a link cost, the method comprising:
creating a forward tree comprising the source node and a portion of the nodes of the network, the portion of nodes being arranged into a plurality of forward tree branches, each node of each of the forward tree branches being connected to at least one other node of the respective forward tree branch, each forward tree branch being connected to the source node by a node linked to the source node in the network, each forward tree branch comprising at least one end node and a forward path for each end node from the end node to the source node traversing at least one link of the network;
creating a backward tree comprising the destination node and a portion of the nodes of the network, the portion of nodes being arranged into a plurality of backward tree branches, each node of each of the backward tree branches being connected to at least one other node of the respective backward tree branch, each backward tree branch being connected to the destination node by a node linked to the destination node in the network, each backward tree branch comprising at least one end node and a backward path for each end node from the end node to the destination node traversing at least one link of the network;
determining one of the forward tree branches has an end node in common with one of the backward tree branches;
identifying a concatenated path comprising the forward path from the common end node to the source node and the backward path from the common end node to the destination node; and
determining the minimum cost path is the concatenated path.
7. The method of claim 31, wherein each backward path of the backward tree branches comprises a path cost equaling the sum of the link costs of the links traversed by the backward path, and each forward path of the forward tree branches comprises a path cost equaling the sum of the link costs of the links traversed by the forward path, the method further comprising:
selecting a search tree comprising one of the forward and backward search trees;
identifying a least cost node of the search tree, the least cost node comprising the end node of the plurality of branches of the search tree having the lowest path cost; and
building the least cost branch, the least cost branch comprising the branch having the least cost node, wherein building the least cost branch comprises adding a new end node to the least cost branch, the new end node added being a node linked to the least cost node in the network.
8. The method of claim 31, wherein each backward path of the backward tree branches comprises a path cost equaling the sum of the link costs of the links traversed by the backward path, each forward path of the forward tree branches comprises a path cost equaling the sum of the link costs of the links traversed by the forward path, and determining the minimum cost path is the concatenated path comprises determining the concatenated path is not more expensive than a virtual minimum path, the method further comprising:
creating the virtual minimum cost path by adding the path cost of the end node of the forward tree branches having the lowest path cost to the path cost of the end node of the backward tree branches having the lowest path cost.
9. The method of claim 33, wherein determining the concatenated path is not more expensive than a virtual minimum path comprises:
determining the total path cost of the concatenated path;
determining the total path cost of the virtual minimum path; and
if the total path cost of the concatenated path is less than the total path cost of the virtual minimum path, determining the concatenated path is not more expensive than a virtual minimum path.
10. The method of claim 33, wherein determining the concatenated path is not more expensive than a virtual minimum path comprises:
determining the total path cost of the concatenated path;
determining the number of total path hops of the concatenated path;
determining the total path cost of the virtual minimum path;
determining the number of total path hops of the virtual minimum path; and
if the total path cost of the concatenated path is equal to the total path cost of the virtual minimum path and the number of total path hops of the concatenated path is less than or equal to the number of total path hops of the virtual minimum path, determining the concatenated path is not more expensive than a virtual minimum path.
US11/891,504 2002-10-10 2007-08-24 Shortest path search method "midway" Abandoned US20070280199A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/891,504 US20070280199A1 (en) 2002-10-10 2007-08-24 Shortest path search method "midway"

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/269,749 US7280481B2 (en) 2002-10-10 2002-10-10 Shortest path search method “Midway”
US11/891,504 US20070280199A1 (en) 2002-10-10 2007-08-24 Shortest path search method "midway"

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/269,749 Continuation US7280481B2 (en) 2002-10-10 2002-10-10 Shortest path search method “Midway”

Publications (1)

Publication Number Publication Date
US20070280199A1 true US20070280199A1 (en) 2007-12-06

Family

ID=32068864

Family Applications (2)

Application Number Title Priority Date Filing Date
US10/269,749 Expired - Fee Related US7280481B2 (en) 2002-10-10 2002-10-10 Shortest path search method “Midway”
US11/891,504 Abandoned US20070280199A1 (en) 2002-10-10 2007-08-24 Shortest path search method "midway"

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US10/269,749 Expired - Fee Related US7280481B2 (en) 2002-10-10 2002-10-10 Shortest path search method “Midway”

Country Status (1)

Country Link
US (2) US7280481B2 (en)

Cited By (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060198321A1 (en) * 2005-03-04 2006-09-07 Nadeau Thomas D System and methods for network reachability detection
US20060256728A1 (en) * 2003-03-11 2006-11-16 Hui Li Method and network-side faciluty for determning a patti in a radio communications system
US20090003223A1 (en) * 2007-06-29 2009-01-01 Mccallum Gavin Discovering configured tunnels between nodes on a path in a data communications network
US20090154360A1 (en) * 2007-12-18 2009-06-18 Michael Asher Employing parallel processing for routing calls
US20090265268A1 (en) * 2008-04-17 2009-10-22 International Business Machines Corporation Method and system for match making in virtual currency exchange
US20090279437A1 (en) * 2008-05-12 2009-11-12 Microsoft Corporation Locality-based routing table generation
US20100039939A1 (en) * 2007-11-26 2010-02-18 Huawei Technologies Co., Ltd. Method and system for obtaining path information, path computation element
WO2011022708A1 (en) * 2009-08-20 2011-02-24 Lumexis Corp. Serial networking fiber optic inflight entertainment system network configuration
US7912934B1 (en) 2006-01-09 2011-03-22 Cisco Technology, Inc. Methods and apparatus for scheduling network probes
US20110170428A1 (en) * 2010-01-14 2011-07-14 Oracle International Corporation Network buffer
US7983174B1 (en) 2005-12-19 2011-07-19 Cisco Technology, Inc. Method and apparatus for diagnosing a fault in a network path
US8184974B2 (en) 2006-09-11 2012-05-22 Lumexis Corporation Fiber-to-the-seat (FTTS) fiber distribution system
US20130054834A1 (en) * 2011-08-31 2013-02-28 Fujitsu Limited Route search device, route search method, and route search program
US8424045B2 (en) 2009-08-14 2013-04-16 Lumexis Corporation Video display unit docking assembly for fiber-to-the-screen inflight entertainment system
US8659990B2 (en) 2009-08-06 2014-02-25 Lumexis Corporation Serial networking fiber-to-the-seat inflight entertainment system
US20140229429A1 (en) * 2013-02-11 2014-08-14 International Business Machines Corporation Database management delete efficiency
US20140307559A1 (en) * 2007-12-26 2014-10-16 Rockstar Consortium Us Lp Tie-breaking in shortest path determination
US9008073B1 (en) * 2012-12-07 2015-04-14 Maxim Integrated Products, Inc. Routing for power line communication systems
US9229969B2 (en) 2013-03-11 2016-01-05 International Business Machines Corporation Management of searches in a database system
US9378234B2 (en) 2013-03-11 2016-06-28 International Business Machines Corporation Management of updates in a database system
CN106980741A (en) * 2017-05-05 2017-07-25 桂林电子科技大学 A kind of method for searching path towards breakout cable self routing
WO2019157232A1 (en) * 2018-02-07 2019-08-15 Baton Systems, Inc. Exotic currency settlement systems and methods

Families Citing this family (59)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6697334B1 (en) * 2000-01-18 2004-02-24 At&T Corp. Method for designing a network
US7539697B1 (en) 2002-08-08 2009-05-26 Spoke Software Creation and maintenance of social relationship network graphs
KR100450407B1 (en) * 2002-08-28 2004-09-30 한국전자통신연구원 A Multi QoS Path Computation Method
US6940832B2 (en) * 2003-01-17 2005-09-06 The Research Foundation Of The City University Of New York Routing method for mobile infrastructureless network
US20050283753A1 (en) * 2003-08-07 2005-12-22 Denise Ho Alert triggers and event management in a relationship system
DE102004061636A1 (en) * 2004-12-17 2006-07-06 Eads Deutschland Gmbh Method for determining optimized tracks of a vehicle intended for implementation in a computer system, and system for determining optimized target tracks
US20060215666A1 (en) * 2005-03-23 2006-09-28 Shepherd Frederick B Methods and devices for routing traffic using randomized load balancing
JP4585467B2 (en) * 2006-02-23 2010-11-24 富士通株式会社 Return route search device, circuit design device, return route search program, and circuit design program
US8254263B2 (en) * 2006-04-25 2012-08-28 Rockstar Bidco, LP Method and apparatus for simplifying the computation of alternate network paths
US7574686B1 (en) * 2006-08-11 2009-08-11 Cadence Design Systems, Inc. Method and system for implementing deterministic multi-processing
US7751332B2 (en) * 2006-10-25 2010-07-06 Samsung Electronics Co., Ltd. Data routing method and apparatus
US8457005B2 (en) * 2006-11-08 2013-06-04 Trellisware Technologies, Inc. Method and system for establishing cooperative routing in wireless networks
US8588126B2 (en) * 2006-11-08 2013-11-19 Trellisware Technologies, Inc. Methods and apparatus for network communication via barrage relay onto an independent medium allocation
US7831386B2 (en) * 2006-11-17 2010-11-09 Ian Cummings Loop-based route finding and navigation
US20080180445A1 (en) * 2007-01-29 2008-07-31 Mark Peskin Output Management Systems And Methods
US7756038B2 (en) * 2007-09-27 2010-07-13 Cisco Technology, Inc. Service advertisement framework (SAF) in a communications network
US8789060B1 (en) 2007-12-27 2014-07-22 Cadence Design Systems, Inc. Deterministic, parallel execution with overlapping regions
KR101421145B1 (en) * 2008-01-09 2014-07-18 삼성전자주식회사 Method for gateway selecting to optimize network capacity gateway in wireless mesh networks
US9049145B2 (en) * 2008-06-18 2015-06-02 Futurewei Technologies, Inc. Method and apparatus for calculating MPLS traffic engineering paths
JP5140161B2 (en) * 2008-11-19 2013-02-06 日本電信電話株式会社 COMPUTER DEVICE, ROUTE CALCULATION METHOD, AND PROGRAM
US20120036155A1 (en) * 2009-04-03 2012-02-09 Netcycler Oy On-line searching systems
US8417618B2 (en) 2009-09-03 2013-04-09 Chicago Mercantile Exchange Inc. Utilizing a trigger order with multiple counterparties in implied market trading
US8266030B2 (en) 2009-09-15 2012-09-11 Chicago Mercantile Exchange Inc. Transformation of a multi-leg security definition for calculation of implied orders in an electronic trading system
US8255305B2 (en) 2009-09-15 2012-08-28 Chicago Mercantile Exchange Inc. Ratio spreads for contracts of different sizes in implied market trading
US8229838B2 (en) 2009-10-14 2012-07-24 Chicago Mercantile Exchange, Inc. Leg pricer
US9065743B2 (en) * 2009-12-24 2015-06-23 At&T Intellectual Property I, L.P. Determining connectivity in a failed network
US8543648B1 (en) * 2010-12-13 2013-09-24 Imdb.Com, Inc. Efficiently finding collaborations on a network
US9231851B2 (en) * 2011-01-31 2016-01-05 Futurewei Technologies, Inc. System and method for computing point-to-point label switched path crossing multiple domains
US8233397B1 (en) 2011-02-28 2012-07-31 The United States Of America As Represented By The Director, National Security Agency Device for and method of making element appear in shortest network path by minimal decrements and increments
US8818712B2 (en) 2011-03-28 2014-08-26 Raytheon Company Maritime path determination
US8700612B2 (en) * 2011-08-23 2014-04-15 Contextu, Inc. Knowledge matrix utilizing systematic contextual links
CN102413050B (en) * 2011-11-24 2014-06-25 中国联合网络通信集团有限公司 Optical fiber scheduling method and device
US8861506B2 (en) 2011-12-27 2014-10-14 Apple Inc. Shortest path determination for large graphs
US9014202B2 (en) 2013-02-14 2015-04-21 Cisco Technology, Inc. Least disruptive AF assignments in TRILL LAN adjacencies
US9467365B2 (en) * 2013-02-14 2016-10-11 Cisco Technology, Inc. Mechanism and framework for finding optimal multicast tree roots without the knowledge of traffic sources and receivers for fabricpath and TRILL
US9667528B2 (en) * 2014-03-31 2017-05-30 Vmware, Inc. Fast lookup and update of current hop limit
US8942727B1 (en) 2014-04-11 2015-01-27 ACR Development, Inc. User Location Tracking
US9413707B2 (en) 2014-04-11 2016-08-09 ACR Development, Inc. Automated user task management
US20160019644A1 (en) * 2014-07-18 2016-01-21 Chicago Mercantile Exchange Inc. Size-based allocation prioritization
US9813301B2 (en) * 2014-08-20 2017-11-07 Nec Corporation Optimization framework for multi-tenant data centers
CN105094940B (en) * 2015-07-23 2018-05-25 天津橙子科技有限公司 For the CSS selector shortest path inverse-checking method of HTMLElement
US10270679B2 (en) 2015-07-24 2019-04-23 International Business Machines Corporation Determining connections between nodes in a network
US10389640B2 (en) 2015-07-24 2019-08-20 International Business Machines Corporation Determining connections of a network between source and target nodes in a database
US10660069B2 (en) * 2015-11-13 2020-05-19 Nippon Telegraph And Telephone Corporation Resource allocation device and resource allocation method
CN107566268B (en) * 2016-06-30 2021-08-17 中兴通讯股份有限公司 Method and device for acquiring Ethernet path
CN106059861B (en) * 2016-07-26 2023-10-24 河南工程学院 System and method for constructing minimum dynamic aggregation tree of Internet of things in distributed mode
CN107453990B (en) * 2017-09-15 2020-04-17 山西大学 Intra-domain route protection method based on key node
CN110322019A (en) * 2018-03-29 2019-10-11 日本电气株式会社 For handling the method, system and storage medium of data set
US11526483B2 (en) * 2018-03-30 2022-12-13 Intel Corporation Storage architectures for graph analysis applications
CN110858820A (en) * 2018-08-22 2020-03-03 中兴通讯股份有限公司 Service operation method and device, storage medium and electronic device
US11308109B2 (en) * 2018-10-12 2022-04-19 International Business Machines Corporation Transfer between different combinations of source and destination nodes
CN110967015B (en) * 2019-11-20 2021-11-12 中国人民解放军国防科技大学 Path planning method and system
CN111641557B (en) * 2020-06-02 2023-04-28 西安电子科技大学 Minimum cost path backup method for delay tolerant network
US11743169B2 (en) * 2021-01-20 2023-08-29 Ciena Corporation Path computation systems and methods for concurrent bi-directional k-optimal paths
US11409709B1 (en) * 2021-03-26 2022-08-09 Nasuni Corporation Cloud-native global file system with file accelerator
CN113075479B (en) * 2021-03-26 2022-11-25 中国人民解放军海军航空大学航空作战勤务学院 Path search algorithm for low-frequency signal connection
CN113347083B (en) * 2021-05-31 2022-09-23 北京字跳网络技术有限公司 Network path determination and switching method, device, equipment, medium and program product
US11348064B1 (en) * 2021-08-12 2022-05-31 Airspace Technologies, Inc. System and methods for alternate path generation
US11748696B2 (en) 2021-08-12 2023-09-05 Airspace Technologies, Inc. System and methods for alternate path generation

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4597076A (en) * 1983-10-08 1986-06-24 International Standard Electric Corporation Data transmission system
US4905233A (en) * 1987-11-23 1990-02-27 Harris Corporation Multiple path routing mechanism for packet communications network
US5596719A (en) * 1993-06-28 1997-01-21 Lucent Technologies Inc. Method and apparatus for routing and link metric assignment in shortest path networks
US6400681B1 (en) * 1996-06-20 2002-06-04 Cisco Technology, Inc. Method and system for minimizing the connection set up time in high speed packet switching networks
US6522630B1 (en) * 1999-05-07 2003-02-18 Alcatel Explicit routing method
US6990075B2 (en) * 2000-02-12 2006-01-24 Mrl Laboratories, Llc Scalable unidirectional routing with zone routing protocol extensions for mobile AD-HOC networks

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6813272B1 (en) * 1999-06-23 2004-11-02 Korea Telecommunication Authority QoS-based routing method

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4597076A (en) * 1983-10-08 1986-06-24 International Standard Electric Corporation Data transmission system
US4905233A (en) * 1987-11-23 1990-02-27 Harris Corporation Multiple path routing mechanism for packet communications network
US5596719A (en) * 1993-06-28 1997-01-21 Lucent Technologies Inc. Method and apparatus for routing and link metric assignment in shortest path networks
US6400681B1 (en) * 1996-06-20 2002-06-04 Cisco Technology, Inc. Method and system for minimizing the connection set up time in high speed packet switching networks
US6522630B1 (en) * 1999-05-07 2003-02-18 Alcatel Explicit routing method
US6990075B2 (en) * 2000-02-12 2006-01-24 Mrl Laboratories, Llc Scalable unidirectional routing with zone routing protocol extensions for mobile AD-HOC networks

Cited By (38)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060256728A1 (en) * 2003-03-11 2006-11-16 Hui Li Method and network-side faciluty for determning a patti in a radio communications system
US7990888B2 (en) 2005-03-04 2011-08-02 Cisco Technology, Inc. System and methods for network reachability detection
US20060198321A1 (en) * 2005-03-04 2006-09-07 Nadeau Thomas D System and methods for network reachability detection
US7983174B1 (en) 2005-12-19 2011-07-19 Cisco Technology, Inc. Method and apparatus for diagnosing a fault in a network path
US7912934B1 (en) 2006-01-09 2011-03-22 Cisco Technology, Inc. Methods and apparatus for scheduling network probes
US8184974B2 (en) 2006-09-11 2012-05-22 Lumexis Corporation Fiber-to-the-seat (FTTS) fiber distribution system
US20090003223A1 (en) * 2007-06-29 2009-01-01 Mccallum Gavin Discovering configured tunnels between nodes on a path in a data communications network
US8111627B2 (en) * 2007-06-29 2012-02-07 Cisco Technology, Inc. Discovering configured tunnels between nodes on a path in a data communications network
US20100039939A1 (en) * 2007-11-26 2010-02-18 Huawei Technologies Co., Ltd. Method and system for obtaining path information, path computation element
US8165107B2 (en) * 2007-11-26 2012-04-24 Huawei Technologies Co., Ltd. Method and system for obtaining path information, path computation element
US7860012B2 (en) * 2007-12-18 2010-12-28 Michael Asher Employing parallel processing for routing calls
US20090154360A1 (en) * 2007-12-18 2009-06-18 Michael Asher Employing parallel processing for routing calls
US20140307559A1 (en) * 2007-12-26 2014-10-16 Rockstar Consortium Us Lp Tie-breaking in shortest path determination
US20090265268A1 (en) * 2008-04-17 2009-10-22 International Business Machines Corporation Method and system for match making in virtual currency exchange
US20090279437A1 (en) * 2008-05-12 2009-11-12 Microsoft Corporation Locality-based routing table generation
US7995504B2 (en) * 2008-05-12 2011-08-09 Microsoft Corporation Locality-based routing table generation
US9118547B2 (en) 2009-08-06 2015-08-25 Lumexis Corporation Serial networking fiber-to-the-seat inflight entertainment system
US8659990B2 (en) 2009-08-06 2014-02-25 Lumexis Corporation Serial networking fiber-to-the-seat inflight entertainment system
US9532082B2 (en) 2009-08-06 2016-12-27 Lumexis Corporation Serial networking fiber-to-the-seat inflight entertainment system
US8424045B2 (en) 2009-08-14 2013-04-16 Lumexis Corporation Video display unit docking assembly for fiber-to-the-screen inflight entertainment system
US9344351B2 (en) 2009-08-20 2016-05-17 Lumexis Corporation Inflight entertainment system network configurations
US9036487B2 (en) 2009-08-20 2015-05-19 Lumexis Corporation Serial networking fiber optic inflight entertainment system network configuration
WO2011022708A1 (en) * 2009-08-20 2011-02-24 Lumexis Corp. Serial networking fiber optic inflight entertainment system network configuration
US8416698B2 (en) 2009-08-20 2013-04-09 Lumexis Corporation Serial networking fiber optic inflight entertainment system network configuration
US20110170428A1 (en) * 2010-01-14 2011-07-14 Oracle International Corporation Network buffer
US8605608B2 (en) * 2010-01-14 2013-12-10 Oracle International Corporation Network buffer
US20130054834A1 (en) * 2011-08-31 2013-02-28 Fujitsu Limited Route search device, route search method, and route search program
US9008073B1 (en) * 2012-12-07 2015-04-14 Maxim Integrated Products, Inc. Routing for power line communication systems
US20140229429A1 (en) * 2013-02-11 2014-08-14 International Business Machines Corporation Database management delete efficiency
US20140229427A1 (en) * 2013-02-11 2014-08-14 International Business Machines Corporation Database management delete efficiency
US9229960B2 (en) * 2013-02-11 2016-01-05 International Business Machines Corporation Database management delete efficiency
US9229961B2 (en) * 2013-02-11 2016-01-05 International Business Machines Corporation Database management delete efficiency
US9229969B2 (en) 2013-03-11 2016-01-05 International Business Machines Corporation Management of searches in a database system
US9378234B2 (en) 2013-03-11 2016-06-28 International Business Machines Corporation Management of updates in a database system
US9378235B2 (en) 2013-03-11 2016-06-28 International Business Machines Corporation Management of updates in a database system
US9229968B2 (en) 2013-03-11 2016-01-05 Intenational Business Machines Corporation Management of searches in a database system
CN106980741A (en) * 2017-05-05 2017-07-25 桂林电子科技大学 A kind of method for searching path towards breakout cable self routing
WO2019157232A1 (en) * 2018-02-07 2019-08-15 Baton Systems, Inc. Exotic currency settlement systems and methods

Also Published As

Publication number Publication date
US20040073702A1 (en) 2004-04-15
US7280481B2 (en) 2007-10-09

Similar Documents

Publication Publication Date Title
US20070280199A1 (en) Shortest path search method "midway"
US7853639B2 (en) Performing process migration with allreduce operations
US8417778B2 (en) Collective acceleration unit tree flow control and retransmit
US7793158B2 (en) Providing reliability of communication between supernodes of a multi-tiered full-graph interconnect architecture
CN101459600B (en) Tracking network contention
US8108545B2 (en) Packet coalescing in virtual channels of a data processing system in a multi-tiered full-graph interconnect architecture
US7958183B2 (en) Performing collective operations using software setup and partial software execution at leaf nodes in a multi-tiered full-graph interconnect architecture
US6918063B2 (en) System and method for fault tolerance in multi-node system
US20090064140A1 (en) System and Method for Providing a Fully Non-Blocking Switch in a Supernode of a Multi-Tiered Full-Graph Interconnect Architecture
US20090063815A1 (en) System and Method for Providing Full Hardware Support of Collective Operations in a Multi-Tiered Full-Graph Interconnect Architecture
Chang et al. A fault tolerant algorithm for distributed mutual exclusion
US6065063A (en) Deadlock avoidance method in a computer network
Flocchini et al. Ping pong in dangerous graphs: Optimal black hole search with pebbles
CA2204518A1 (en) Multicomputer system and method
Cidon et al. New models and algorithms for future networks
Flocchini et al. Ping pong in dangerous graphs: Optimal black hole search with pure tokens
Fernandes et al. Embedding rings in recursive networks
Kim et al. Robustness in large-scale random networks
Guerriero et al. Parallel asynchronous algorithms for the K shortest paths problem
Petit Fast self-stabilizing depth-first token circulation
US20170262316A1 (en) Allocation of resources
Zhong et al. Application-specific deadlock free wormhole routing on multicomputers
EP0791194A1 (en) Multicomputer system and method
Kim et al. Operationally enhanced folded hypercubes
Karaata A stabilizing algorithm for finding biconnected components

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION