Research Article

Novel Applications of Intuitionistic Fuzzy Digraphs in Decision Support Systems

Algorithm 4

IF digraph in travel time.
(1)void fuzzyShortestPath(){
(2) = Intuitionistic fuzzy set of crossings;
(3) = count( );
(4) = Empty intuitionistic fuzzy set of roads;
(5) for (int ; ++) {
(6)  for (int ; ++) {
(7)   if ( is adjacent to ) {
(8)     ;
(9)     ;
(10)    }
(11)   }
(12)  }
(13)   = Intuitionistic fuzzy set of edges;
(14)   = Intuitionistic fuzzy relation (Adjacency matrix of );
(15)   = Weighted relation (adjacency matrix of ;
(16)   = count( );
(17)  for (int ++) {
(18)    ;
(19)    = Adjacent from Node of ;
(20)    = Adjacent to Node of ;
(21)    ;
(22)  }
(23)  print ;
(24)  Calculate Optimal path using ;
(25) }