Program Listing for File strict_greedy_allocator.hpp
↰ Return to documentation for file (cosm/ta/strict_greedy_allocator.hpp
)
#pragma once
/*******************************************************************************
* Includes
******************************************************************************/
#include <vector>
#include "rcppsw/common/common.hpp"
#include "rcppsw/er/client.hpp"
#include "rcppsw/math/rng.hpp"
#include "rcppsw/rcppsw.hpp"
/*******************************************************************************
* Namespaces/Decls
******************************************************************************/
namespace cosm::ta {
class polled_task;
/*******************************************************************************
* Class Definitions
******************************************************************************/
class strict_greedy_allocator : public rer::client<strict_greedy_allocator> {
public:
explicit strict_greedy_allocator(rmath::rng* rng)
: ER_CLIENT_INIT("cosm.ta.strict_greedy_allocator"), m_rng(rng) {}
/* Not copy constructable/assignable by default */
strict_greedy_allocator(const strict_greedy_allocator&) = delete;
const strict_greedy_allocator&
operator=(const strict_greedy_allocator&) = delete;
polled_task* operator()(const std::vector<polled_task*>& tasks) const;
private:
/* clang-format off */
rmath::rng* m_rng;
/* clang-format on */
};
} /* namespace cosm::ta */