Skip to content

Commit e4fc5b6

Browse files
authored
Merge pull request #36 from oxfordcontrol/update_time
Updates for Release 0.5.0
2 parents 1748fc0 + b1ffcd7 commit e4fc5b6

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Diff for: CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
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
27
----------------------------------------------
38
* Upgraded OSQP to 0.4.1 version
49

Diff for: deps/build.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using Compat.Libdl
1010
osqp = library_dependency("osqp", aliases=["libosqp"])
1111

1212
# Current version
13-
version = "0.4.1"
13+
version = "0.5.0"
1414

1515
# Get current operating system
1616
osqp_platform =

Diff for: src/types.jl

+3
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ struct CInfo
7575
dua_res::Cdouble
7676
setup_time::Cdouble
7777
solve_time::Cdouble
78+
update_time::Cdouble
7879
polish_time::Cdouble
7980
run_time::Cdouble
8081
rho_updates::Cc_int
@@ -209,6 +210,7 @@ mutable struct Info
209210
dua_res::Float64
210211
setup_time::Float64
211212
solve_time::Float64
213+
update_time::Float64
212214
polish_time::Float64
213215
run_time::Float64
214216
rho_updates::Int64
@@ -227,6 +229,7 @@ function Compat.copyto!(info::Info, cinfo::CInfo)
227229
info.dua_res = cinfo.dua_res
228230
info.setup_time = cinfo.setup_time
229231
info.solve_time = cinfo.solve_time
232+
info.update_time = cinfo.update_time
230233
info.polish_time = cinfo.polish_time
231234
info.run_time = cinfo.run_time
232235
info.rho_updates = cinfo.rho_updates

0 commit comments

Comments
 (0)