NO-OP: comments and cleanup

This commit is contained in:
Robin Gareus 2022-06-15 14:16:16 +02:00
parent 471330a292
commit d037dff213
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 5 additions and 11 deletions

View File

@ -610,22 +610,15 @@ GraphChain::GraphChain (GraphNodeList const& nodelist, GraphEdges const& edges)
*/
_n_terminal_nodes = 0;
/* This will become a list of nodes that are not fed by another node, ie
* those at the `input' end.
*/
_init_trigger_list.clear ();
_nodes_rt.clear ();
/* copy nodelist to _nodes_rt, prepare GraphNodes for this graph */
for (auto const& ri : nodelist) {
RCUWriter<GraphActivision::ActivationMap> wa (ri->_activation_set);
RCUWriter<GraphActivision::RefCntMap> wr (ri->_init_refcount);
for (auto const& ni : nodelist) {
RCUWriter<GraphActivision::ActivationMap> wa (ni->_activation_set);
RCUWriter<GraphActivision::RefCntMap> wr (ni->_init_refcount);
boost::shared_ptr<GraphActivision::ActivationMap> ma (wa.get_copy ());
boost::shared_ptr<GraphActivision::RefCntMap> mr (wr.get_copy ());
(*mr)[this] = 0;
(*ma)[this].clear ();
_nodes_rt.push_back (ri);
_nodes_rt.push_back (ni);
}
/* now add refs for the connections. */

View File

@ -2213,6 +2213,7 @@ Session::resort_routes_using (boost::shared_ptr<RouteList> r)
bool ok = true;
if (rechain_process_graph (gnl)) {
/* Update routelist for single-threaded processing, use topologically sorted nodelist */
r->clear ();
for (auto const& nd : gnl) {
r->push_back (boost::dynamic_pointer_cast<Route> (nd));