Program Listing for File exec_estimates_config.hpp

Return to documentation for file (cosm/ta/config/exec_estimates_config.hpp)

#pragma once

/*******************************************************************************
 * Includes
 ******************************************************************************/
#include <map>
#include <string>

#include "rcppsw/math/config/ema_config.hpp"
#include "rcppsw/math/range.hpp"
#include "rcppsw/config/base_config.hpp"
#include "rcppsw/rcppsw.hpp"

/*******************************************************************************
 * Namespaces/Decls
 ******************************************************************************/
namespace cosm::ta::config {

/*******************************************************************************
 * Structure Definitions
 ******************************************************************************/
struct exec_estimates_config final : public rcppsw::config::base_config {
  bool seed_enabled{false};
  rmath::config::ema_config ema{};

  std::map<std::string, rmath::rangez> ranges{};
};

} /* namespace cosm::ta::config */