File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
- Version 0.4.0 (): OSQP v0.4.1
1
+ Version 0.5.0 (10 December 2018): OSQP v0.5.0
2
+ ----------------------------------------------
3
+ * Upgraded OSQP to 0.5.0 version
4
+ * Added ` update_time ` info structure
5
+
6
+ Version 0.4.0 (29 October 2018): OSQP v0.4.1
2
7
----------------------------------------------
3
8
* Upgraded OSQP to 0.4.1 version
4
9
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ using Compat.Libdl
10
10
osqp = library_dependency (" osqp" , aliases= [" libosqp" ])
11
11
12
12
# Current version
13
- version = " 0.4.1 "
13
+ version = " 0.5.0 "
14
14
15
15
# Get current operating system
16
16
osqp_platform =
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ struct CInfo
75
75
dua_res:: Cdouble
76
76
setup_time:: Cdouble
77
77
solve_time:: Cdouble
78
+ update_time:: Cdouble
78
79
polish_time:: Cdouble
79
80
run_time:: Cdouble
80
81
rho_updates:: Cc_int
@@ -209,6 +210,7 @@ mutable struct Info
209
210
dua_res:: Float64
210
211
setup_time:: Float64
211
212
solve_time:: Float64
213
+ update_time:: Float64
212
214
polish_time:: Float64
213
215
run_time:: Float64
214
216
rho_updates:: Int64
@@ -227,6 +229,7 @@ function Compat.copyto!(info::Info, cinfo::CInfo)
227
229
info. dua_res = cinfo. dua_res
228
230
info. setup_time = cinfo. setup_time
229
231
info. solve_time = cinfo. solve_time
232
+ info. update_time = cinfo. update_time
230
233
info. polish_time = cinfo. polish_time
231
234
info. run_time = cinfo. run_time
232
235
info. rho_updates = cinfo. rho_updates
You can’t perform that action at this time.
0 commit comments