Merge branch 'master' of github.com:rene-dev/stmbl

This commit is contained in:
crinq
2015-01-29 23:41:51 +01:00
-3
View File
@@ -3,7 +3,6 @@
#include <iostream>
#include <fstream>
#include <regex>
#include <unordered_set>
#include <map>
#include <vector>
@@ -27,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>());
@@ -53,7 +51,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;