Skip to content

Commit 9c9d9d9

Browse files
committed
less output
1 parent 2ebe896 commit 9c9d9d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/rectangular_wing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ llt_solver = Solver(aerodynamic_model_type=:LLT)
3838
vsm_solver = Solver(aerodynamic_model_type=:VSM)
3939

4040
# Step 5: Solve using both methods
41+
results_llt = solve(llt_solver, wa)
4142
@time results_llt = solve(llt_solver, wa)
42-
@time results_llt = solve(llt_solver, wa)
43-
@time results_vsm = solve(vsm_solver, wa)
43+
results_vsm = solve(vsm_solver, wa)
4444
@time results_vsm = solve(vsm_solver, wa)
4545
# time Python: 32.0ms
4646
# time Julia: 1.5ms

0 commit comments

Comments
 (0)