This commit is contained in:
crinq
2015-01-29 19:35:23 +01:00
parent d10c9edee6
commit 96dcfcd87c
+6 -6
View File
@@ -42,16 +42,16 @@ int main(){
}
s = m.suffix().str();
}
dotfile << "digraph G {" << endl;
dotfile << "rankdir = LR;" << endl;
dotfile << "splines = spline;" << endl;
dotfile << "ratio = 1;" << endl;
//dotfile << "ratio = 1;" << endl;
dotfile << "overlap = false;" << endl;
dotfile << "start = regular;" << endl;
dotfile << "forcelabels = true;" << endl;
for(auto &comp:comps){
dotfile << "subgraph cluster_" << comp.first << "{" << endl;
dotfile << " style = rounded;" << endl;
@@ -61,11 +61,11 @@ int main(){
}
dotfile << "}" << endl;
}
for(auto &link:links){
dotfile << link << endl;
}
dotfile << "}" << endl;
return 0;
}
}