@@ -1302,7 +1302,6 @@ igraph_error_t Rx_igraph_attribute_get_bool_graph_attr(const igraph_t *graph,
13021302igraph_error_t Rx_igraph_attribute_get_string_graph_attr (const igraph_t * graph ,
13031303 const char * name ,
13041304 igraph_strvector_t * value ) {
1305- /* TODO: serialization */
13061305 SEXP gal = VECTOR_ELT (graph -> attr , 1 );
13071306 SEXP ga = Rx_igraph_getListElement (gal , name );
13081307
@@ -1323,7 +1322,6 @@ igraph_error_t Rx_igraph_attribute_get_numeric_vertex_attr(const igraph_t *graph
13231322 const char * name ,
13241323 igraph_vs_t vs ,
13251324 igraph_vector_t * value ) {
1326- /* TODO: serialization */
13271325 SEXP val = VECTOR_ELT (graph -> attr , 2 );
13281326 SEXP va = Rx_igraph_getListElement (val , name );
13291327 igraph_vector_t newvalue ;
@@ -1371,7 +1369,6 @@ igraph_error_t Rx_igraph_attribute_get_bool_vertex_attr(const igraph_t *graph,
13711369 const char * name ,
13721370 igraph_vs_t vs ,
13731371 igraph_vector_bool_t * value ) {
1374- /* TODO: serialization */
13751372 SEXP val = VECTOR_ELT (graph -> attr , 2 );
13761373 SEXP va = Rx_igraph_getListElement (val , name );
13771374 igraph_vector_bool_t newvalue ;
@@ -1410,7 +1407,6 @@ igraph_error_t Rx_igraph_attribute_get_string_vertex_attr(const igraph_t *graph,
14101407 const char * name ,
14111408 igraph_vs_t vs ,
14121409 igraph_strvector_t * value ) {
1413- /* TODO: serialization */
14141410 SEXP val , va ;
14151411
14161412 val = VECTOR_ELT (graph -> attr , 2 );
@@ -1448,7 +1444,6 @@ igraph_error_t Rx_igraph_attribute_get_numeric_edge_attr(const igraph_t *graph,
14481444 const char * name ,
14491445 igraph_es_t es ,
14501446 igraph_vector_t * value ) {
1451- /* TODO: serialization */
14521447 SEXP eal = VECTOR_ELT (graph -> attr , 3 );
14531448 SEXP ea = Rx_igraph_getListElement (eal , name );
14541449 igraph_vector_t newvalue ;
@@ -1496,7 +1491,6 @@ igraph_error_t Rx_igraph_attribute_get_bool_edge_attr(const igraph_t *graph,
14961491 const char * name ,
14971492 igraph_es_t es ,
14981493 igraph_vector_bool_t * value ) {
1499- /* TODO: serialization */
15001494 SEXP eal = VECTOR_ELT (graph -> attr , 3 );
15011495 SEXP ea = Rx_igraph_getListElement (eal , name );
15021496 igraph_vector_bool_t newvalue ;
@@ -1535,7 +1529,6 @@ igraph_error_t Rx_igraph_attribute_get_string_edge_attr(const igraph_t *graph,
15351529 const char * name ,
15361530 igraph_es_t es ,
15371531 igraph_strvector_t * value ) {
1538- /* TODO: serialization */
15391532 SEXP eal = VECTOR_ELT (graph -> attr , 3 );
15401533 SEXP ea = Rx_igraph_getListElement (eal , name );
15411534
0 commit comments