Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial implicit/truncated backward modes #29

Merged
merged 14 commits into from
Jan 19, 2022
Prev Previous commit
remove erroneous update
  • Loading branch information
bamos committed Jan 19, 2022
commit f58345f606377df1ce6a053646e07b98746abb05
1 change: 0 additions & 1 deletion theseus/optimizer/nonlinear/nonlinear_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ def retract_and_update_variables(
delta = step_size * delta
for var in self.linear_solver.linearization.ordering:
new_var = var.retract(delta[:, var_idx : var_idx + var.dof()])
var.update(new_var.data, batch_ignore_mask=converged_indices)
if force_update:
var.update(new_var.data)
else:
Expand Down