Spaces:
Sleeping
Sleeping
File size: 222 Bytes
34dfc61 | 1 2 3 4 5 6 7 8 9 10 11 | #include "../env/State.h"
#include "../env/Action.h"
class DummyAgent {
public:
Action act(const State& state) {
// Placeholder for initial action logic
return Action(ActionType::OFFER, 100);
}
};
|