mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-15 20:38:23 +01:00
11 lines
349 B
C++
11 lines
349 B
C++
#include <string>
|
|
#include "Control/ControlModule.hpp"
|
|
|
|
namespace poet
|
|
{
|
|
void writeStatsToCSV(const std::vector<SpeciesErrorMetrics> &all_stats,
|
|
const std::vector<std::string> &species_names,
|
|
const std::string &out_dir,
|
|
const std::string &filename);
|
|
} // namespace poet
|