JuliaSmoothOptimizers / RipQP.jl

MIT License
29 stars 5 forks source link

Initialize vectors with similar #43

Closed geoffroyleconte closed 3 years ago

codecov[bot] commented 3 years ago

Codecov Report

Merging #43 (fb1ee9e) into master (8eb540b) will increase coverage by 0.08%. The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #43      +/-   ##
==========================================
+ Coverage   86.12%   86.21%   +0.08%     
==========================================
  Files          15       15              
  Lines         973      979       +6     
==========================================
+ Hits          838      844       +6     
  Misses        135      135              
Impacted Files Coverage Δ
src/starting_points.jl 95.55% <ø> (ø)
src/data_initialization.jl 92.30% <100.00%> (+0.09%) :arrow_up:
src/iterations/solve_method.jl 100.00% <100.00%> (ø)
src/iterations/solvers/K2LDL.jl 82.44% <100.00%> (+0.13%) :arrow_up:
src/iterations/solvers/K2_5LDL.jl 72.86% <100.00%> (+0.21%) :arrow_up:
src/refinement.jl 95.00% <100.00%> (+0.06%) :arrow_up:
src/scaling.jl 100.00% <100.00%> (ø)
src/utils.jl 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 8eb540b...fb1ee9e. Read the comment docs.

amontoison commented 3 years ago

@geoffroyleconte If you want to keep zeros and ones functions, you can use this : https://github.com/JuliaSmoothOptimizers/Krylov.jl/blob/master/src/krylov_utils.jl#L185-L197 I did them for GPU support.

geoffroyleconte commented 3 years ago

@geoffroyleconte If you want to keep zeros and ones functions, you can use this : https://github.com/JuliaSmoothOptimizers/Krylov.jl/blob/master/src/krylov_utils.jl#L185-L197 I did them for GPU support.

Thanks!