20 #ifndef HG_CONVERTOR_H
21 #define HG_CONVERTOR_H
23 #include "../basic_types/Scenario.h"
24 #include "../io/GraphDrawer.h"
54 virtual void run()
override;
58 virtual void initialize(unordered_map<string,string>& parameters)
override;
PictureFormat
This enumeration specifies all supported picture formats.
Definition: GraphDrawer.h:44
~GXLtoPicConverter()
Destroys this instance of GXLConverter.
Definition: GXLtoPicConverter.cpp:54
This Scenario takes a GXL file and converts the encoded Hypergraphs first to a 'dot' file and then to...
Definition: GXLtoPicConverter.h:35
io::GraphDrawer::PictureFormat exportFormat
Stores the format in which the loaded graphs will be ultimately converted.
Definition: GXLtoPicConverter.h:68
virtual void run() override
Runs this Scenario, first generating a 'dot' file for each input graph and then converting each to th...
Definition: GXLtoPicConverter.cpp:80
virtual void initialize(unordered_map< string, string > ¶meters) override
Initializes the scenario with the given mapping, where the keys are parameter names.
Definition: GXLtoPicConverter.cpp:56
GXLtoPicConverter()
Generates a new instance of GXLConverter.
Definition: GXLtoPicConverter.cpp:38
A scenario is a subprogram using a set of input parameters to execute some algorithms, producing desired output.
Definition: Scenario.h:36
bool compact
If set to true, only one file containing all graphs will be generated, instead of one file per graph...
Definition: GXLtoPicConverter.h:73
string filename
Stores the filename of the given GXL file (without extension).
Definition: GXLtoPicConverter.h:63