mirror of
https://github.com/rene-dev/stmbl.git
synced 2026-09-25 17:40:40 +08:00
-ratio
This commit is contained in:
+6
-6
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user