topological sort has little impact in overall analysis time; time spent sorting actua...
authorjjenista <jjenista>
Wed, 4 Mar 2009 18:14:37 +0000 (18:14 +0000)
committerjjenista <jjenista>
Wed, 4 Mar 2009 18:14:37 +0000 (18:14 +0000)
Robust/src/Analysis/OwnershipAnalysis/OwnershipAnalysis.java

index c555150d17d9d0884392621080689d3bc724718b..97eade686afd5b4e274bec46f41ff219c1fd7ca8 100644 (file)
@@ -445,8 +445,8 @@ public class OwnershipAnalysis {
       }
     }
 
-    sortedMethodContextsToVisit = topologicalSort( methodContextsToVisit );
-    methodContextsToVisit.clear();
+    //sortedMethodContextsToVisit = topologicalSort( methodContextsToVisit );
+    //methodContextsToVisit.clear();
 
     while( !methodContextsToVisit.isEmpty()       ||
           !sortedMethodContextsToVisit.isEmpty()    ) {