mirror of
https://github.com/rene-dev/stmbl.git
synced 2026-09-25 09:15:44 +08:00
Merge branch 'master' of github.com:rene-dev/stmbl
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user