20 #ifndef RULEPREPARERTEST_H_
21 #define RULEPREPARERTEST_H_
23 #include "../basic_types/Scenario.h"
24 #include "../analysis/RulePreparer.h"
25 #include "../graphs/GTS.h"
50 virtual void run()
override;
54 virtual void initialize(unordered_map<string,string>& parameters)
override;
shared_ptr< RulePreparer > RulePreparer_sp
Alias for a shared pointer of a RulePreparer.
Definition: RulePreparer.h:105
string filename
Stores the filename and path of the GTS loaded.
Definition: RulePreparerTest.h:61
graphs::GTS_sp gts
Stores the loaded GTS.
Definition: RulePreparerTest.h:66
RulePreparerTest()
Generates a new RulePreparerTest object.
Definition: RulePreparerTest.cpp:45
virtual void initialize(unordered_map< string, string > ¶meters) override
Initializes the scenario with the given mapping, where the keys are parameter names.
Definition: RulePreparerTest.cpp:77
This scenario tests the rule preparation functionality.
Definition: RulePreparerTest.h:33
analysis::RulePreparer_sp rulePreparer
Stores the RulePreparer used for preparation.
Definition: RulePreparerTest.h:71
virtual ~RulePreparerTest()
Destroys this RulePreparerTest object.
Definition: RulePreparerTest.cpp:59
virtual void run() override
Prepares the rule set previously given with and without optimization and stores the results as XMl fi...
Definition: RulePreparerTest.cpp:61
A scenario is a subprogram using a set of input parameters to execute some algorithms, producing desired output.
Definition: Scenario.h:36
shared_ptr< GTS > GTS_sp
Alias for a shared pointer to a GTS object.
Definition: GTS.h:164