You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* split dag_vector_adapter and cast_view
move constructor, operator
added cdag_vertex_impl.hpp
dag vector const
const, at
at
* revise constructComputationalDag
* @brief Constructs a computational DAG from another graph.
28
+
*
29
+
* This function copies the structure and properties of a source graph into a target graph structure.
30
+
* Assumes that the vertices of the source graph are indexed from 0 to N-1. If the target graph is empty, indices are sequentially assigned starting from 0.
31
+
* If the target graph is not empty, new vertices will be added to the target graph and their indices will be sequentially assigned starting from the index N.
32
+
*
33
+
* @tparam Graph_from The type of the source graph. Must satisfy `is_computational_dag`.
34
+
* @tparam Graph_to The type of the target graph. Must satisfy `is_constructable_cdag_vertex`.
0 commit comments