| 224 | } |
| 225 | |
| 226 | std::vector<std::vector<int>> CRoots::get_trajectories(){ |
| 227 | std::vector<std::vector<int>> trajs; |
| 228 | trajs.reserve(this->root_num); |
| 229 | |
| 230 | for(int i = 0; i < this->root_num; ++i){ |
| 231 | trajs.push_back(this->roots[i].get_trajectory()); |
| 232 | } |
| 233 | return trajs; |
| 234 | } |
| 235 | |
| 236 | std::vector<std::vector<int>> CRoots::get_distributions(){ |
| 237 | std::vector<std::vector<int>> distributions; |
nothing calls this directly
no test coverage detected