Skip to content

Commit b6f0b02

Browse files
committed
Use CLARABEL solver for rocket landing optimization
Switched the solver from ECOS to CLARABEL in the optimization process of the rocket-powered landing module. This change is expected to improve performance and compatibility with specific problem constraints.
1 parent a2c42c3 commit b6f0b02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AerialNavigation/rocket_powered_landing/rocket_powered_landing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
W_NU = 1e5 # virtual control
3333

3434
print(cvxpy.installed_solvers())
35-
solver = 'ECOS'
35+
solver = 'CLARABEL'
3636
verbose_solver = False
3737

3838
show_animation = True

0 commit comments

Comments
 (0)