Skip to content

Commit f22e80c

Browse files
committed
remove timestep_power
1 parent f80eb0f commit f22e80c

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

mjpc/planners/sample_gradient/planner.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ void SampleGradientPlanner::Initialize(mjModel* model, const Task& task) {
4747
// task
4848
this->task = &task;
4949

50-
// rollout parameters
51-
timestep_power = 1.0;
52-
5350
// exploration noise
5451
noise_exploration = GetNumberOrDefault(0.1, model, "sampling_exploration");
5552

mjpc/planners/sample_gradient/planner.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,6 @@ class SampleGradientPlanner : public Planner {
122122
// order of indices of rolled out trajectories, ordered by total return
123123
std::vector<int> trajectory_order;
124124

125-
// rollout parameters
126-
double timestep_power;
127-
128125
// zero-mean Gaussian noise standard deviation
129126
double noise_exploration;
130127
std::vector<double> noise;

0 commit comments

Comments
 (0)