From 27d400bb3b9c86eaab9ede029c8d060dd35e77eb Mon Sep 17 00:00:00 2001 From: Rahul Prabhu Date: Sun, 21 Jul 2019 18:18:33 +0530 Subject: [PATCH] Changed nextState to next state. --- .../environment/continuous_double_pole_cart.hpp | 2 +- .../reinforcement_learning/environment/double_pole_cart.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/reinforcement_learning/environment/continuous_double_pole_cart.hpp b/src/mlpack/methods/reinforcement_learning/environment/continuous_double_pole_cart.hpp index 777734e219..046e6a2619 100644 --- a/src/mlpack/methods/reinforcement_learning/environment/continuous_double_pole_cart.hpp +++ b/src/mlpack/methods/reinforcement_learning/environment/continuous_double_pole_cart.hpp @@ -183,7 +183,7 @@ class ContinuousDoublePoleCart /** * This is the ordinary differential equations required for estimation of - * nextState through RK4 method. + * next state through RK4 method. * * @param state The current state. * @param action The action taken. diff --git a/src/mlpack/methods/reinforcement_learning/environment/double_pole_cart.hpp b/src/mlpack/methods/reinforcement_learning/environment/double_pole_cart.hpp index c5a8e810aa..4909daa91f 100755 --- a/src/mlpack/methods/reinforcement_learning/environment/double_pole_cart.hpp +++ b/src/mlpack/methods/reinforcement_learning/environment/double_pole_cart.hpp @@ -183,7 +183,7 @@ class DoublePoleCart /** * This is the ordinary differential equations required for estimation of - * nextState through RK4 method. + * next state through RK4 method. * * @param state The current state. * @param action The action taken.