<ahref="lu__factorization_8h.html">Go to the documentation of this file.</a><divclass="fragment"><divclass="line"><aid="l00001"name="l00001"></a><spanclass="lineno"> 1</span><spanclass="comment">// Copyright 2010-2021 Google LLC</span></div>
<divclass="line"><aid="l00002"name="l00002"></a><spanclass="lineno"> 2</span><spanclass="comment">// Licensed under the Apache License, Version 2.0 (the "License");</span></div>
<divclass="line"><aid="l00003"name="l00003"></a><spanclass="lineno"> 3</span><spanclass="comment">// you may not use this file except in compliance with the License.</span></div>
<divclass="line"><aid="l00004"name="l00004"></a><spanclass="lineno"> 4</span><spanclass="comment">// You may obtain a copy of the License at</span></div>
<divclass="line"><aid="l00008"name="l00008"></a><spanclass="lineno"> 8</span><spanclass="comment">// Unless required by applicable law or agreed to in writing, software</span></div>
<divclass="line"><aid="l00009"name="l00009"></a><spanclass="lineno"> 9</span><spanclass="comment">// distributed under the License is distributed on an "AS IS" BASIS,</span></div>
<divclass="line"><aid="l00010"name="l00010"></a><spanclass="lineno"> 10</span><spanclass="comment">// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></div>
<divclass="line"><aid="l00011"name="l00011"></a><spanclass="lineno"> 11</span><spanclass="comment">// See the License for the specific language governing permissions and</span></div>
<divclass="line"><aid="l00012"name="l00012"></a><spanclass="lineno"> 12</span><spanclass="comment">// limitations under the License.</span></div>
<divclass="line"><aid="l00030"name="l00030"></a><spanclass="lineno"> 30</span><spanclass="comment">// An LU-Factorization class encapsulating the LU factorization data and</span></div>
<divclass="line"><aid="l00031"name="l00031"></a><spanclass="lineno"> 31</span><spanclass="comment">// algorithms. The actual algorithm is in markowitz.h and .cc. This class holds</span></div>
<divclass="line"><aid="l00032"name="l00032"></a><spanclass="lineno"> 32</span><spanclass="comment">// all the Solve() functions that deal with the permutations and the L and U</span></div>
<divclass="line"><aid="l00033"name="l00033"></a><spanclass="lineno"> 33</span><spanclass="comment">// factors once they are computed.</span></div>
<divclass="line"><aid="l00038"name="l00038"></a><spanclass="lineno"> 38</span><spanclass="comment">// Returns true if the LuFactorization is a factorization of the identity</span></div>
<divclass="line"><aid="l00039"name="l00039"></a><spanclass="lineno"> 39</span><spanclass="comment">// matrix. In this state, all the Solve() functions will work for any</span></div>
<divclass="line"><aid="l00043"name="l00043"></a><spanclass="lineno"> 43</span><spanclass="comment">// Clears internal data structure and reset this class to the factorization</span></div>
<divclass="line"><aid="l00044"name="l00044"></a><spanclass="lineno"> 44</span><spanclass="comment">// of an identity matrix.</span></div>
<divclass="line"><aid="l00047"name="l00047"></a><spanclass="lineno"> 47</span><spanclass="comment">// Computes an LU-decomposition for a given matrix B. If for some reason,</span></div>
<divclass="line"><aid="l00048"name="l00048"></a><spanclass="lineno"> 48</span><spanclass="comment">// there was an error, then the factorization is reset to the one of the</span></div>
<divclass="line"><aid="l00049"name="l00049"></a><spanclass="lineno"> 49</span><spanclass="comment">// identity matrix, and an error is reported.</span></div>
<divclass="line"><aid="l00051"name="l00051"></a><spanclass="lineno"> 51</span><spanclass="comment">// Note(user): Since a client must use the result, there is little chance of</span></div>
<divclass="line"><aid="l00052"name="l00052"></a><spanclass="lineno"> 52</span><spanclass="comment">// it being confused by this revert to identity factorization behavior. The</span></div>
<divclass="line"><aid="l00053"name="l00053"></a><spanclass="lineno"> 53</span><spanclass="comment">// reason behind it is that this way, calling any public function of this</span></div>
<divclass="line"><aid="l00054"name="l00054"></a><spanclass="lineno"> 54</span><spanclass="comment">// class will never cause a crash of the program.</span></div>
<divclass="line"><aid="l00058"name="l00058"></a><spanclass="lineno"> 58</span><spanclass="comment">// Given a set of columns, find a maximum linearly independent subset that can</span></div>
<divclass="line"><aid="l00059"name="l00059"></a><spanclass="lineno"> 59</span><spanclass="comment">// be factorized in a stable way, and complete it into a square matrix using</span></div>
<divclass="line"><aid="l00060"name="l00060"></a><spanclass="lineno"> 60</span><spanclass="comment">// slack columns. The initial set can have less, more or the same number of</span></div>
<divclass="line"><aid="l00061"name="l00061"></a><spanclass="lineno"> 61</span><spanclass="comment">// columns as the number of rows.</span></div>
<divclass="line"><aid="l00065"name="l00065"></a><spanclass="lineno"> 65</span><spanclass="comment">// Returns the column permutation used by the LU factorization.</span></div>
<divclass="line"><aid="l00068"name="l00068"></a><spanclass="lineno"> 68</span><spanclass="comment">// Sets the column permutation to the identity permutation. The idea is that</span></div>
<divclass="line"><aid="l00069"name="l00069"></a><spanclass="lineno"> 69</span><spanclass="comment">// the column permutation can be incorporated in the basis RowToColMapping,</span></div>
<divclass="line"><aid="l00070"name="l00070"></a><spanclass="lineno"> 70</span><spanclass="comment">// and once this is done, then a client can call this and effectively remove</span></div>
<divclass="line"><aid="l00071"name="l00071"></a><spanclass="lineno"> 71</span><spanclass="comment">// the need for a column permutation on each solve.</span></div>
<divclass="line"><aid="l00077"name="l00077"></a><spanclass="lineno"> 77</span><spanclass="comment">// Solves 'B.x = b', x initially contains b, and is replaced by 'B^{-1}.b'.</span></div>
<divclass="line"><aid="l00078"name="l00078"></a><spanclass="lineno"> 78</span><spanclass="comment">// Since P.B.Q^{-1} = L.U, we have B = P^{-1}.L.U.Q.</span></div>
<divclass="line"><aid="l00079"name="l00079"></a><spanclass="lineno"> 79</span><spanclass="comment">// 1/ Solve P^{-1}.y = b for y by computing y = P.b,</span></div>
<divclass="line"><aid="l00080"name="l00080"></a><spanclass="lineno"> 80</span><spanclass="comment">// 2/ solve L.z = y for z,</span></div>
<divclass="line"><aid="l00081"name="l00081"></a><spanclass="lineno"> 81</span><spanclass="comment">// 3/ solve U.t = z for t,</span></div>
<divclass="line"><aid="l00082"name="l00082"></a><spanclass="lineno"> 82</span><spanclass="comment">// 4/ finally solve Q.x = t, by computing x = Q^{-1}.t.</span></div>
<divclass="line"><aid="l00085"name="l00085"></a><spanclass="lineno"> 85</span><spanclass="comment">// Solves 'y.B = r', y initially contains r, and is replaced by r.B^{-1}.</span></div>
<divclass="line"><aid="l00086"name="l00086"></a><spanclass="lineno"> 86</span><spanclass="comment">// Internally, it takes x = y^T, b = r^T and solves B^T.x = b.</span></div>
<divclass="line"><aid="l00087"name="l00087"></a><spanclass="lineno"> 87</span><spanclass="comment">// We have P.B.Q^{-1} = P.B.Q^T = L.U, thus (L.U)^T = Q.B^T.P^T.</span></div>
<divclass="line"><aid="l00089"name="l00089"></a><spanclass="lineno"> 89</span><spanclass="comment">// The procedure is thus:</span></div>
<divclass="line"><aid="l00090"name="l00090"></a><spanclass="lineno"> 90</span><spanclass="comment">// 1/ Solve Q^{-1}.y = b for y, by computing y = Q.b,</span></div>
<divclass="line"><aid="l00091"name="l00091"></a><spanclass="lineno"> 91</span><spanclass="comment">// 2/ solve U^T.z = y for z,</span></div>
<divclass="line"><aid="l00092"name="l00092"></a><spanclass="lineno"> 92</span><spanclass="comment">// 3/ solve L^T.t = z for t,</span></div>
<divclass="line"><aid="l00093"name="l00093"></a><spanclass="lineno"> 93</span><spanclass="comment">// 4/ finally, solve P.x = t for x by computing x = P^{-1}.t.</span></div>
<divclass="line"><aid="l00096"name="l00096"></a><spanclass="lineno"> 96</span><spanclass="comment">// More fine-grained right/left solve functions that may exploit the initial</span></div>
<divclass="line"><aid="l00097"name="l00097"></a><spanclass="lineno"> 97</span><spanclass="comment">// non-zeros of the input vector if non-empty. Note that a solve involving L</span></div>
<divclass="line"><aid="l00098"name="l00098"></a><spanclass="lineno"> 98</span><spanclass="comment">// actually solves P^{-1}.L and a solve involving U actually solves U.Q. To</span></div>
<divclass="line"><aid="l00099"name="l00099"></a><spanclass="lineno"> 99</span><spanclass="comment">// solve a system with the initial matrix B, one needs to call:</span></div>
<divclass="line"><aid="l00100"name="l00100"></a><spanclass="lineno"> 100</span><spanclass="comment">// - RightSolveL() and then RightSolveU() for a right solve (B.x = initial x).</span></div>
<divclass="line"><aid="l00101"name="l00101"></a><spanclass="lineno"> 101</span><spanclass="comment">// - LeftSolveU() and then LeftSolveL() for a left solve (y.B = initial y).</span></div>
<divclass="line"><aid="l00106"name="l00106"></a><spanclass="lineno"> 106</span><spanclass="comment">// Specialized version of LeftSolveL() that may exploit the initial non_zeros</span></div>
<divclass="line"><aid="l00107"name="l00107"></a><spanclass="lineno"> 107</span><spanclass="comment">// of y if it is non empty. Moreover, if result_before_permutation is not</span></div>
<divclass="line"><aid="l00108"name="l00108"></a><spanclass="lineno"> 108</span><spanclass="comment">// NULL, it might be filled with the result just before row_perm_ is applied</span></div>
<divclass="line"><aid="l00109"name="l00109"></a><spanclass="lineno"> 109</span><spanclass="comment">// to it and true is returned. If result_before_permutation is not filled,</span></div>
<divclass="line"><aid="l00110"name="l00110"></a><spanclass="lineno"> 110</span><spanclass="comment">// then false is returned.</span></div>
<divclass="line"><aid="l00115"name="l00115"></a><spanclass="lineno"> 115</span><spanclass="comment">// Specialized version of RightSolveLWithNonZeros() that takes a SparseColumn</span></div>
<divclass="line"><aid="l00116"name="l00116"></a><spanclass="lineno"> 116</span><spanclass="comment">// or a ScatteredColumn as input. non_zeros will either be cleared or set to</span></div>
<divclass="line"><aid="l00117"name="l00117"></a><spanclass="lineno"> 117</span><spanclass="comment">// the non zeros of the result. Important: the output x must be of the correct</span></div>
<divclass="line"><aid="l00118"name="l00118"></a><spanclass="lineno"> 118</span><spanclass="comment">// size and all zero.</span></div>
<divclass="line"><aid="l00123"name="l00123"></a><spanclass="lineno"> 123</span><spanclass="comment">// Specialized version of RightSolveLWithNonZeros() where x is originally</span></div>
<divclass="line"><aid="l00124"name="l00124"></a><spanclass="lineno"> 124</span><spanclass="comment">// equal to 'a' permuted by row_perm_. Note that 'a' is only used for DCHECK.</span></div>
<divclass="line"><aid="l00128"name="l00128"></a><spanclass="lineno"> 128</span><spanclass="comment">// Specialized version of LeftSolveU() for an unit right-hand side.</span></div>
<divclass="line"><aid="l00129"name="l00129"></a><spanclass="lineno"> 129</span><spanclass="comment">// non_zeros will either be cleared or set to the non zeros of the results.</span></div>
<divclass="line"><aid="l00130"name="l00130"></a><spanclass="lineno"> 130</span><spanclass="comment">// It also returns the value of col permuted by Q (which is the position</span></div>
<divclass="line"><aid="l00131"name="l00131"></a><spanclass="lineno"> 131</span><spanclass="comment">// of the unit-vector rhs in the solve system: y.U = rhs).</span></div>
<divclass="line"><aid="l00132"name="l00132"></a><spanclass="lineno"> 132</span><spanclass="comment">// Important: the output y must be of the correct size and all zero.</span></div>
<divclass="line"><aid="l00135"name="l00135"></a><spanclass="lineno"> 135</span><spanclass="comment">// Returns the given column of U.</span></div>
<divclass="line"><aid="l00136"name="l00136"></a><spanclass="lineno"> 136</span><spanclass="comment">// It will only be valid until the next call to GetColumnOfU().</span></div>
<divclass="line"><aid="l00142"name="l00142"></a><spanclass="lineno"> 142</span><spanclass="comment">// Returns the norm of (B^T)^{-1}.e_row where e is an unit vector.</span></div>
<divclass="line"><aid="l00145"name="l00145"></a><spanclass="lineno"> 145</span><spanclass="comment">// The fill-in of the LU-factorization is defined as the sum of the number</span></div>
<divclass="line"><aid="l00146"name="l00146"></a><spanclass="lineno"> 146</span><spanclass="comment">// of entries of both the lower- and upper-triangular matrices L and U minus</span></div>
<divclass="line"><aid="l00147"name="l00147"></a><spanclass="lineno"> 147</span><spanclass="comment">// the number of entries in the initial matrix B.</span></div>
<divclass="line"><aid="l00149"name="l00149"></a><spanclass="lineno"> 149</span><spanclass="comment">// This returns the number of entries in lower + upper as the percentage of</span></div>
<divclass="line"><aid="l00150"name="l00150"></a><spanclass="lineno"> 150</span><spanclass="comment">// the number of entries in B.</span></div>
<divclass="line"><aid="l00153"name="l00153"></a><spanclass="lineno"> 153</span><spanclass="comment">// Returns the number of entries in L + U.</span></div>
<divclass="line"><aid="l00154"name="l00154"></a><spanclass="lineno"> 154</span><spanclass="comment">// If the factorization is the identity, this returns 0.</span></div>
<divclass="line"><aid="l00157"name="l00157"></a><spanclass="lineno"> 157</span><spanclass="comment">// Computes the determinant of the input matrix B.</span></div>
<divclass="line"><aid="l00159"name="l00159"></a><spanclass="lineno"> 159</span><spanclass="comment">// det(L) = 1 since L is a lower-triangular matrix with 1 on the diagonal.</span></div>
<divclass="line"><aid="l00160"name="l00160"></a><spanclass="lineno"> 160</span><spanclass="comment">// det(P) = +1 or -1 (by definition it is the sign of the permutation P)</span></div>
<divclass="line"><aid="l00161"name="l00161"></a><spanclass="lineno"> 161</span><spanclass="comment">// det(Q^{-1}) = +1 or -1 (the sign of the permutation Q^{-1})</span></div>
<divclass="line"><aid="l00162"name="l00162"></a><spanclass="lineno"> 162</span><spanclass="comment">// Finally det(U) = product of the diagonal elements of U, since U is an</span></div>
<divclass="line"><aid="l00168"name="l00168"></a><spanclass="lineno"> 168</span><spanclass="comment">// Computes the 1-norm of the inverse of the input matrix B.</span></div>
<divclass="line"><aid="l00169"name="l00169"></a><spanclass="lineno"> 169</span><spanclass="comment">// For this we iteratively solve B.x = e_j, where e_j is the jth unit vector.</span></div>
<divclass="line"><aid="l00170"name="l00170"></a><spanclass="lineno"> 170</span><spanclass="comment">// The result of this computation is the jth column of B^-1.</span></div>
<divclass="line"><aid="l00171"name="l00171"></a><spanclass="lineno"> 171</span><spanclass="comment">// The 1-norm |B| is defined as max_j sum_i |a_ij|</span></div>
<divclass="line"><aid="l00175"name="l00175"></a><spanclass="lineno"> 175</span><spanclass="comment">// Computes the infinity-norm of the inverse of the input matrix B.</span></div>
<divclass="line"><aid="l00176"name="l00176"></a><spanclass="lineno"> 176</span><spanclass="comment">// The infinity-norm |B| is defined as max_i sum_j |a_ij|</span></div>
<divclass="line"><aid="l00180"name="l00180"></a><spanclass="lineno"> 180</span><spanclass="comment">// Computes the condition number of the input matrix B.</span></div>
<divclass="line"><aid="l00181"name="l00181"></a><spanclass="lineno"> 181</span><spanclass="comment">// For a given norm, this is the matrix norm times the norm of its inverse.</span></div>
<divclass="line"><aid="l00183"name="l00183"></a><spanclass="lineno"> 183</span><spanclass="comment">// Note that because the LuFactorization class does not keep the</span></div>
<divclass="line"><aid="l00184"name="l00184"></a><spanclass="lineno"> 184</span><spanclass="comment">// non-factorized matrix in memory, it needs to be passed to these functions.</span></div>
<divclass="line"><aid="l00185"name="l00185"></a><spanclass="lineno"> 185</span><spanclass="comment">// It is up to the client to pass exactly the same matrix as the one used</span></div>
<divclass="line"><aid="l00186"name="l00186"></a><spanclass="lineno"> 186</span><spanclass="comment">// for ComputeFactorization().</span></div>
<divclass="line"><aid="l00188"name="l00188"></a><spanclass="lineno"> 188</span><spanclass="comment">// TODO(user): separate this from LuFactorization.</span></div>
<divclass="line"><aid="l00201"name="l00201"></a><spanclass="lineno"> 201</span><spanclass="comment">// Returns a string containing the statistics for this class.</span></div>
<divclass="line"><aid="l00206"name="l00206"></a><spanclass="lineno"> 206</span><spanclass="comment">// This is only used for testing and in debug mode.</span></div>
<divclass="line"><aid="l00207"name="l00207"></a><spanclass="lineno"> 207</span><spanclass="comment">// TODO(user): avoid the matrix conversion by multiplying TriangularMatrix</span></div>
<divclass="line"><aid="l00216"name="l00216"></a><spanclass="lineno"> 216</span><spanclass="comment">// Returns the deterministic time of the last factorization.</span></div>
<divclass="line"><aid="l00236"name="l00236"></a><spanclass="lineno"> 236</span><spanclass="comment">// Internal function used in the left solve functions.</span></div>
<divclass="line"><aid="l00239"name="l00239"></a><spanclass="lineno"> 239</span><spanclass="comment">// Internal function used in the right solve functions</span></div>
<divclass="line"><aid="l00246"name="l00246"></a><spanclass="lineno"> 246</span><spanclass="comment">// transpose_lower_ is only needed when we compute dual norms.</span></div>
<divclass="line"><aid="l00249"name="l00249"></a><spanclass="lineno"> 249</span><spanclass="comment">// Computes R = P.B.Q^{-1} - L.U and returns false if the largest magnitude of</span></div>
<divclass="line"><aid="l00250"name="l00250"></a><spanclass="lineno"> 250</span><spanclass="comment">// the coefficients of P.B.Q^{-1} - L.U is greater than tolerance.</span></div>
<divclass="line"><aid="l00254"name="l00254"></a><spanclass="lineno"> 254</span><spanclass="comment">// Special case where we have nothing to do. This happens at the beginning</span></div>
<divclass="line"><aid="l00255"name="l00255"></a><spanclass="lineno"> 255</span><spanclass="comment">// when we start the problem with an all-slack basis and gives a good speedup</span></div>
<divclass="line"><aid="l00256"name="l00256"></a><spanclass="lineno"> 256</span><spanclass="comment">// on really easy problems. It is initially true and set to true each time we</span></div>
<divclass="line"><aid="l00257"name="l00257"></a><spanclass="lineno"> 257</span><spanclass="comment">// call Clear(). We set it to false if a call to ComputeFactorization()</span></div>
<divclass="line"><aid="l00261"name="l00261"></a><spanclass="lineno"> 261</span><spanclass="comment">// The triangular factor L and U (and its transpose).</span></div>
<divclass="line"><aid="l00266"name="l00266"></a><spanclass="lineno"> 266</span><spanclass="comment">// The transpose of lower_. It is just used by DualEdgeSquaredNorm()</span></div>
<divclass="line"><aid="l00267"name="l00267"></a><spanclass="lineno"> 267</span><spanclass="comment">// and mutable so it can be lazily initialized.</span></div>
<divclass="line"><aid="l00270"name="l00270"></a><spanclass="lineno"> 270</span><spanclass="comment">// The column permutation Q and its inverse Q^{-1} in P.B.Q^{-1} = L.U.</span></div>
<divclass="line"><aid="l00274"name="l00274"></a><spanclass="lineno"> 274</span><spanclass="comment">// The row permutation P and its inverse P^{-1} in P.B.Q^{-1} = L.U.</span></div>
<divclass="line"><aid="l00278"name="l00278"></a><spanclass="lineno"> 278</span><spanclass="comment">// Temporary storage used by LeftSolve()/RightSolve().</span></div>
<divclass="line"><aid="l00281"name="l00281"></a><spanclass="lineno"> 281</span><spanclass="comment">// Temporary storage used by GetColumnOfU().</span></div>
<divclass="line"><aid="l00284"name="l00284"></a><spanclass="lineno"> 284</span><spanclass="comment">// Same as dense_column_scratchpad_ but this vector is always reset to zero by</span></div>
<divclass="line"><aid="l00285"name="l00285"></a><spanclass="lineno"> 285</span><spanclass="comment">// the functions that use it. non_zero_rows_ is used to track the</span></div>
<divclass="line"><aid="l00286"name="l00286"></a><spanclass="lineno"> 286</span><spanclass="comment">// non_zero_rows_ position of dense_column_scratchpad_.</span></div>
<divclass="line"><aid="l00290"name="l00290"></a><spanclass="lineno"> 290</span><spanclass="comment">// Statistics, mutable so const functions can still update it.</span></div>
<divclass="line"><aid="l00293"name="l00293"></a><spanclass="lineno"> 293</span><spanclass="comment">// Proto holding all the parameters of this algorithm.</span></div>
<divclass="line"><aid="l00296"name="l00296"></a><spanclass="lineno"> 296</span><spanclass="comment">// The class doing the Markowitz LU factorization.</span></div>
<divclass="ttc"id="aclassoperations__research_1_1glop_1_1_lu_factorization_html_a41e666f39c778c69ade38b4db0c223ec"><divclass="ttname"><ahref="classoperations__research_1_1glop_1_1_lu_factorization.html#a41e666f39c778c69ade38b4db0c223ec">operations_research::glop::LuFactorization::inverse_col_perm</a></div><divclass="ttdeci">const ColumnPermutation & inverse_col_perm() const</div><divclass="ttdef"><b>Definition:</b><ahref="lu__factorization_8h_source.html#l00221">lu_factorization.h:221</a></div></div>
<divclass="ttc"id="aclassoperations__research_1_1glop_1_1_lu_factorization_html_a5a3deeb8998f541c08d96dc079591a54"><divclass="ttname"><ahref="classoperations__research_1_1glop_1_1_lu_factorization.html#a5a3deeb8998f541c08d96dc079591a54">operations_research::glop::LuFactorization::GetColumnPermutation</a></div><divclass="ttdeci">const ColumnPermutation & GetColumnPermutation() const</div><divclass="ttdef"><b>Definition:</b><ahref="lu__factorization_8h_source.html#l00066">lu_factorization.h:66</a></div></div>
<divclass="ttc"id="aclassoperations__research_1_1glop_1_1_lu_factorization_html_ace58a4f9d6a147c3455ff8dc029537c4"><divclass="ttname"><ahref="classoperations__research_1_1glop_1_1_lu_factorization.html#ace58a4f9d6a147c3455ff8dc029537c4">operations_research::glop::LuFactorization::ComputeFactorization</a></div><divclass="ttdeci">ABSL_MUST_USE_RESULT Status ComputeFactorization(const CompactSparseMatrixView &compact_matrix)</div><divclass="ttdef"><b>Definition:</b><ahref="lu__factorization_8cc_source.html#l00044">lu_factorization.cc:44</a></div></div>
<divclass="ttc"id="aclassoperations__research_1_1glop_1_1_lu_factorization_html_af2e901d9cdc8f3f36f5b54ef1455c712"><divclass="ttname"><ahref="classoperations__research_1_1glop_1_1_lu_factorization.html#af2e901d9cdc8f3f36f5b54ef1455c712">operations_research::glop::LuFactorization::row_perm</a></div><divclass="ttdeci">const RowPermutation & row_perm() const</div><divclass="ttdef"><b>Definition:</b><ahref="lu__factorization_8h_source.html#l00220">lu_factorization.h:220</a></div></div>
<divclass="ttc"id="anamespaceoperations__research_html"><divclass="ttname"><ahref="namespaceoperations__research.html">operations_research</a></div><divclass="ttdoc">Collection of objects used to extend the Constraint Solver library.</div><divclass="ttdef"><b>Definition:</b><ahref="dense__doubly__linked__list_8h_source.html#l00021">dense_doubly_linked_list.h:21</a></div></div>