20#ifndef ORES_COMPUTE_GENERATORS_RESULT_GENERATOR_HPP
21#define ORES_COMPUTE_GENERATORS_RESULT_GENERATOR_HPP
24#include <boost/uuid/uuid.hpp>
25#include "ores.compute.api/domain/result.hpp"
26#include "ores.utility/generation/generation_context.hpp"
28namespace ores::compute::generators {
33domain::result generate_synthetic_result(
34 const boost::uuids::uuid& workunit_id,
35 utility::generation::generation_context& ctx);
40std::vector<domain::result>
41generate_synthetic_results(std::size_t n,
42 const boost::uuids::uuid& workunit_id,
43 utility::generation::generation_context& ctx);