Skip to content
Snippets Groups Projects
Commit b28b52ff authored by beginner1010's avatar beginner1010
Browse files

Folder MCE is updated

parent 925b8839
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ public class CN {
//}
LinkedHashMap<Integer, Integer> D = new LinkedHashMap<Integer, Integer>();
for(int u : g.AdjList.keySet()){
for(int u : g.vertices){
D.put(u, g.AdjList.get(u).size());
}
......
......@@ -41,7 +41,7 @@ public class TTT {
K = new TreeSet<Integer>();
CLQ = new HashSet<BitSet>();
clqcnt = 1;
for (int v : G.AdjList.keySet()) {
for (int v : G.vertices) {
CAND.add(v);
}
expand(K, CAND, FINI);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment