Yukun J
Yukun J
### Procgen Integration @**author**: Yukun J @**date**: Apr 18, 2022 @**brief**: After getting a bit familiar with both the EnvPool and Procgen code bases, make the first draft of Procgen...
## Description Continued Procgen integration progress with @LeoGuo98 together. A few things: 1. [globalGameRegistry](https://github.com/openai/procgen/blob/master/procgen/src/game-registry.cpp#L3) somehow doesn't successfully register each game while bazel build & compile. Temporary solution is just write...
假设原来有类似这样一个会产生很高递归栈的函数: ```CPP int fib(int n) { if (n
Thanks to Cppers on reddit [here](https://www.reddit.com/r/cpp/comments/10vrv4i/seeking_improve_advice_on_my_c_network_library/). Currently the `Looper` use `std::map` to keep track of which connection's lifecycle is under its monitoring. ```CPP /** * This Looper acts as the...
The following is the cope snippet for the `Connection::Send()` which outwrites all the data stored in the `Buffer`, it will stay in this function loop until all data has been...