Closed josherrickson closed 2 years ago
Currently, many functions return a list. We should make these named lists to ease use and access. This should only go in exported functions, not in the runners.
E.g.,
> MaxClique(s, t, n) [[1]] [1] 3 [[2]] [1] 1 2 3
should really be something like
> MaxClique(s, t, n) $clique_size [1] 3 $clique_members [1] 1 2 3
Currently, many functions return a list. We should make these named lists to ease use and access. This should only go in exported functions, not in the runners.