Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New stable version with the add of the Maheve algorithm.
[mapping.git] / src / and / Mapping / Graph.java
index 79efb2f..8f255cd 100644 (file)
@@ -17,7 +17,6 @@ public class Graph implements Serializable
 
        
        private ArrayList<GTask> graph ;
-//     private int nb_task ;
        private int nb_dep_total ;
        
        
@@ -27,7 +26,6 @@ public class Graph implements Serializable
        public Graph()
        {
                graph = new ArrayList<GTask>() ;
-//             nb_task = 0 ;
                nb_dep_total = 0 ;
        }
        
@@ -39,7 +37,6 @@ public class Graph implements Serializable
        public int getNbGTask()
        {
                return graph.size() ;
-//             return nb_task ;
        }
        
        
@@ -70,7 +67,6 @@ public class Graph implements Serializable
                        {
                                graph.add( _lt.get( i ).getNum(), _lt.get( i ) ) ;
                                nb_dep_total += _lt.get( i ).getNbDep() ;
-//                             nb_task ++ ;
                        }
                }
        }