ppforest2 v0.1.0
Projection Pursuit Decision Trees and Random Forests
Loading...
Searching...
No Matches
BenchmarkParams.hpp
Go to the documentation of this file.
1
5#pragma once
6
7#include <string>
8#include <vector>
9
10namespace ppforest2::cli {
13 std::string scenarios_path;
14 std::string baseline_path;
15 std::vector<std::string> outputs;
16 std::string format = "table";
17 };
18}
Command-line interface: argument parsing, subcommands, and benchmark/evaluation orchestration.
Definition Benchmark.hpp:25
Benchmark-specific options.
Definition BenchmarkParams.hpp:12
std::string scenarios_path
Definition BenchmarkParams.hpp:13
std::vector< std::string > outputs
Definition BenchmarkParams.hpp:15
std::string format
Definition BenchmarkParams.hpp:16
std::string baseline_path
Definition BenchmarkParams.hpp:14