Skip to content

Commit a3cfbd4

Browse files
committed
bump
1 parent 12f90c6 commit a3cfbd4

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ModelPredictiveControl"
22
uuid = "61f9bdb8-6ae4-484a-811f-bbf86720c31c"
3-
version = "1.13.0"
3+
version = "1.13.1"
44
authors = ["Francis Gagnon"]
55

66
[deps]

src/general.jl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,6 @@ function lowertriangle_indices(i_vec::Vector{Tuple{Int, Int}})
7676
return [(i,j) for (i,j) in i_vec if i j]
7777
end
7878

79-
"Fill the lower triangular part of A in-place with the corresponding part in B."
80-
function fill_lowertriangle!(A::AbstractMatrix, B::AbstractMatrix)
81-
for j in axes(A, 2), i in axes(A, 1)
82-
(i j) && (A[i, j] = B[i, j])
83-
end
84-
return A
85-
end
86-
8779
"Store the diff. matrix `A` in the vector `v` with list of nonzero indices `i_vec`."
8880
function fill_diffstructure!(
8981
v::AbstractVector, A::AbstractMatrix, i_vec::Vector{Tuple{Int, Int}}

0 commit comments

Comments
 (0)