-
Notifications
You must be signed in to change notification settings - Fork 2
User Provided Node #42
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Current search_node for holds the fields as follows:
pad_id id_;
pad_id parent_id_;
cost_t g_;
cost_t f_;
cost_t ub_;
uint8_t status_; // open or closed
uint32_t priority_; // expansion priority
uint32_t search_number_;
static uint32_t refcount_;
It uses getters/setters to refer to these data types and is the class in use for basic search and memory pool like node_pool.
I propose allowing the user to propose the use of their own nodes.
This proposal aligns with #22 and #6 issues, in that we will need a flexible memory allocator, and allowing custom nodes will help with the graph section of warthog.
The allocators (or factory) have great progress over in inxlib.
The following posts will be some proposals.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request