Research Article

Minimum Cost Multicast Routing Using Ant Colony Optimization Algorithm

Algorithm 1

Pseudocode of Floyd’s algorithm.
Floyd's Algorithm
Input: : the cost matrix of the network graph
Output:   : the cost matrix of the cost complete graph (CCG)
     : records the next node on the minimum cost route
    from node to node
For     to  
  For     to  
    ;
   If  
      ;
   Else
      ;
   End  If
  End  For
End  For
For     to  
  For     to  
   For     to  
    If     and  
      ;
      ;
    End  If
   End  For
  End  For
End  For