removed links

This commit is contained in:
Rene Hopf
2015-01-29 23:29:56 +01:00
parent a37a0cb981
commit 83b7d9b2c0
-2
View File
@@ -26,7 +26,6 @@ int main(){
map<string, comp_t> comps;
vector<string> links;
ifstream halfile("test.hal", fstream::in);
ofstream dotfile("test.dot", fstream::out);
string s((std::istreambuf_iterator<char>(halfile)), std::istreambuf_iterator<char>());
@@ -50,7 +49,6 @@ int main(){
dotfile << "start = regular;" << endl;
dotfile << "forcelabels = true;" << endl;
for(auto &comp:comps){
dotfile << "subgraph cluster_" << comp.second.name << "{" << endl;
dotfile << " style = rounded;" << endl;