Nachiket18
Nachiket18
The algorithm implementation needs use of data structure for mapping subsets to a number. I noticed that igraph has hashtable designed for string, can similar data structure be created for...
Thanks for coming back on this. Yes, I went through hashtable.c code and it's implemented using tries and vectors. So, what our algorithm is trying to do is , we...
@ntamas - Thanks. We will start with `std::map`
Thanks @szhorvat . We will create a pull request soon as we have done some work with respect to coding. Will do a internal review and basic testing and create...
Thanks @szhorvat . We have created a draft pull request Steiner Tree calculation #1809 . I have a doubt about some issues with implementation. What I am trying to do...
> This is a good starting point. I closed the other PR (the comments won't disappear). > > The next step now is to fix all the errors that prevent...
Thanks @szhorvat I made the changes that you had suggested. Could you review the issue that is caused at IGRAPH_ASSERT macro? For next steps, I have something that I would...
@szhorvat - Thanks for the suggestions. I made some silly mistakes in the test case file. sorry about that. For building the code I'm using the following commands - $...
@szhorvat - I made the changes that you had suggested. I was able to build the code using the instructions from the official documentation. However, during the target check there...
@szhorvat - Thanks. I made the changes that were causing segmentation fault, changed the data type to 'igraph_vector_int_t' for steiner_terminals and also updated the test case. The test case is...