ppforest2 v0.1.0
Projection Pursuit Decision Trees and Random Forests
Loading...
Searching...
No Matches
Evaluate.hpp
Go to the documentation of this file.
1
6#pragma once
7
8#include "cli/CLIOptions.hpp"
9
10namespace CLI {
11 class App;
12}
13
14namespace ppforest2::cli {
16 void setup_evaluate(CLI::App& app, Params& params);
17
20
25 int run_evaluate(Params& params);
26}
CLI argument parsing, validation, and configuration for ppforest2.
Definition Benchmark.hpp:21
Command-line interface: argument parsing, subcommands, and benchmark/evaluation orchestration.
Definition Benchmark.hpp:25
@ evaluate
Definition CLIOptions.hpp:25
int run_evaluate(Params &params)
Run the evaluate subcommand.
void add_evaluate_options(CLI::App *sub, EvaluateParams &evaluate)
Add evaluate/convergence options shared by evaluate and benchmark.
void setup_evaluate(CLI::App &app, Params &params)
Register evaluate subcommand options on app.
Evaluate and convergence options (shared by evaluate + benchmark).
Definition EvaluateParams.hpp:45
All CLI options and runtime parameters.
Definition CLIOptions.hpp:33