Skip to content

Commit 8697a5f

Browse files
committed
Add doc string
1 parent b406d3b commit 8697a5f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/linear_eq.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ function gauss_elimination_interval1!(x::AbstractArray, a::AbstractMatrix, b::Ab
144144
a \ b
145145
end
146146

147+
"""
148+
Method to compute a tight hull of the solution set of a regular system of interval linear equations.
149+
Reference - Eldon Hansen and G. William Walster : Global Optimization Using Interval Analysis - Chapter 5 - Section 5.8
150+
"""
147151
function linear_hull(M::AbstractMatrix, r::AbstractArray)
148152

149153
n = size(M, 1)

0 commit comments

Comments
 (0)