浏览代码
* Clarification in the Heuristic() documentation The `Heuristic()` method will not be able to write to the action array if the action array passed as argument is reassigned in the method. For example, doing : ```csharp public override void Heuristic(float[] actionsOut) { actionOut = new float[2]; actionOut[0] = 1.0f; } ``` Will not create the action [1, 0] but [0, 0] as the `actionOut` variable was reassigned. * adding to the Agent xml doc/MLA-1734-demo-provider
GitHub
5 年前
当前提交
b7eb8b6d