From c8de5c71fd75d0b3d6529703ef09c78f810406ce Mon Sep 17 00:00:00 2001 From: Joshua Fogg Date: Tue, 25 Jun 2024 12:17:28 +0100 Subject: [PATCH] Updated timings Fixing #12 didn't have the positive impact I was expecting speed wise, but still good to have fixed --- examples/1000/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/1000/README.md b/examples/1000/README.md index f920929..bc367e6 100644 --- a/examples/1000/README.md +++ b/examples/1000/README.md @@ -1,7 +1,9 @@ # Timings -This is how long to solve the $n = 1000$ example with each method at various commits. Timings in seconds (all shown to three significant figures) are the average of three runs, repeated five times with the best average taken. The first two solvers are standard non-robust optimization, and the last three are all robust optimization (direct or SQP). +This is how long to solve the $n = 1000$ example with each method at various commits. Timings in seconds (all shown to three significant figures) are the average of three runs, repeated five times with the best average taken. The first two solvers are standard non-robust optimization, and the last three are all robust optimization (conic or SQP). -| Commit | Gurobi (standard) | HiGHS (standard) | Gurobi (direct) | Gurobi (SQP) | HiGHS (SQP) | Total | -| :-----: | ----------------: | ---------------: | --------------: | -----------: | ----------: | ----: | -| 7d866d8 | 0.688 | 0.197 | 2.690 | 24.400 | 1.700 | 492.8 | +| Commit | Gurobi (standard) | HiGHS (standard) | Gurobi (conic) | Gurobi (SQP) | HiGHS (SQP) | Total | +| :-----: | ----------------: | ---------------: | -------------: | -----------: | ----------: | ----: | +| 7d866d8 | 0.688 | 0.197 | 2.690 | 24.400 | 1.700 | 492.8 | +| 90a6040 | 0.690 | 0.204 | 2.770 | 24.600 | 1.700 | 499.9 | +| 92ae275 | 0.676 | 0.204 | 2.750 | 24.600 | 1.680 | 507.3 |