Define thread safe worker functions for generating new children on the tree

This commit is contained in:
2025-11-27 01:51:41 +00:00
parent 6247f2af49
commit 66c56f2c15

46
src/worker.hpp Normal file
View File

@@ -0,0 +1,46 @@
/* worker.hpp: Definition of "workers" who will generate nodes on the tree
* Created: 2025-11-27
* Author: Aryadev Chavali
* License: See end of file
* Commentary:
*/
#ifndef WORKER_HPP
#define WORKER_HPP
#include <tuple>
#include "state.hpp"
namespace cw::worker
{
using cw::node::NodeAllocator;
using cw::state::State;
// Given `index`, return the indices of its children in the tree. If not
// present already, generate them using the allocator.
std::tuple<u64, u64> generate_children(NodeAllocator &allocator, u64 index);
// Performs a single iteration which consists of the following:
// 1) pop an index off the iteration queue
// 2) generate the children of the node at that index
// 3) push the indices of the children onto the iteration queue
// Each step will block on the relevant mutex for the resource (1,3 will block
// on the queue mutex, 2 will block on the allocator mutex) so is thread safe.
void do_iteration(State &state);
} // namespace cw::worker
#endif
/* Copyright (C) 2025 Aryadev Chavali
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
* details.
* You may distribute and modify this code under the terms of the GNU General
* Public License Version 2, which you should have received a copy of along with
* this program. If not, please go to <https://www.gnu.org/licenses/>.
*/