MCPcopy Create free account
hub / github.com/YeWR/EfficientZero / get_trajectories

Method get_trajectories

core/ctree/cnode.cpp:226–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

get_trajectoryMethod · 0.80

Tested by

no test coverage detected