-
Notifications
You must be signed in to change notification settings - Fork 47
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
[RTM after next push] SOCP: Making the noise dependant on the states + controls #809
Conversation
…ee_floating_base_SOCP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 5 of 36 files at r1, 1 of 7 files at r2, 21 of 34 files at r3, 13 of 13 files at r4, all commit messages.
Reviewable status: all files reviewed, 5 unresolved discussions (waiting on @EveCharbie)
bioptim/dynamics/dynamics_functions.py
line 645 at r4 (raw file):
""" q = nlp.get_var_from_states_or_controls("q", states, controls)
add the capability to send algebraic too
bioptim/examples/stochastic_optimal_control/arm_reaching_muscle_driven.py
line 711 at r4 (raw file):
nlp = socp.nlp[0] out = stochastic_forward_dynamics( None,
None?
bioptim/examples/torque_driven_ocp/minimize_maximum_torque_by_extra_parameter.py
line 133 at r4 (raw file):
x_init = InitialGuessList() x_init.add(key="q_roots", initial_guess=[0] * n_root, phase=0) x_init.add(key="q_jointss", initial_guess=[0] * n_tau, phase=0)
Typo? Remove the capability to declare unused variable?
bioptim/models/protocols/biomodel.py
line 88 at r4 (raw file):
return () def biorbd_homogeneous_matrices_in_global(self, q, segment_id, inverse=False) -> tuple:
This should not be in the Protocol
nlp.model: BiorbdModel
bioptim/optimization/non_linear_program.py
line 521 at r4 (raw file):
return self.tf / self.ns * node_idx def get_var_from_states_or_controls(self, key: str, states: MX.sym, controls: MX.sym) -> MX:
Add the capability to send algebraic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 36 of 47 files reviewed, 4 unresolved discussions (waiting on @pariterre)
bioptim/dynamics/dynamics_functions.py
line 645 at r4 (raw file):
Previously, pariterre (Pariterre) wrote…
add the capability to send algebraic too
Done.
bioptim/examples/stochastic_optimal_control/arm_reaching_muscle_driven.py
line 711 at r4 (raw file):
Previously, pariterre (Pariterre) wrote…
None?
Done.
bioptim/models/protocols/biomodel.py
line 88 at r4 (raw file):
Previously, pariterre (Pariterre) wrote…
This should not be in the Protocol
nlp.model: BiorbdModel
Done.
bioptim/optimization/non_linear_program.py
line 521 at r4 (raw file):
Previously, pariterre (Pariterre) wrote…
Add the capability to send algebraic
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 58 of 58 files at r5, all commit messages.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @EveCharbie)
bioptim/gui/plot.py
line 388 at r5 (raw file):
) if variable in nlp.plot else 0
Verify that
tests/shard5/test_global_stochastic_collocation.py
line 384 at r5 (raw file):
# First collocation state is equal to the states at node const = socp.nlp[0].g_internal[1]
constraint
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @pariterre)
bioptim/gui/plot.py
line 388 at r5 (raw file):
Previously, pariterre (Pariterre) wrote…
Verify that
reverted deleted lines
tests/shard5/test_global_stochastic_collocation.py
line 384 at r5 (raw file):
Previously, pariterre (Pariterre) wrote…
constraint
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 2 files at r6, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @EveCharbie)
@pariterre should be fine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 7 of 7 files at r7, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @EveCharbie)
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #809 +/- ##
==========================================
- Coverage 78.90% 78.39% -0.51%
==========================================
Files 139 140 +1
Lines 15721 16081 +360
==========================================
+ Hits 12404 12607 +203
- Misses 3317 3474 +157
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r9, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @EveCharbie)
All Submissions:
New Feature Submissions:
black . -l120 --exclude "external/*"
)?Changes to Core Features:
This change is