Program Listing for File StrategyPlanner.h

Return to documentation for file (src/partition/refine/pipeline/StrategyPlanner.h)

#ifndef PARTITION_REFINE_PIPELINE_STRATEGYPLANNER_H_
#define PARTITION_REFINE_PIPELINE_STRATEGYPLANNER_H_

#include "refine/core/RefineTypes.h"


class StrategyPlanner {
 public:
  static void setStrategyByString(const string &strategy, StrategyPlan &plan);

  static void setStrategy(int offset, const string &default_choice,
                          const vector<string> &enable_choices,
                          StrategyPlan &plan);
};

#endif