Home
last modified time | relevance | path

Searched refs:lu (Results 51 – 75 of 14431) sorted by relevance

12345678910>>...578

/dports/databases/db5/db-5.3.28/src/btree/
H A Dbtree.src39 ARG left db_pgno_t lu
41 ARG right db_pgno_t lu
43 ARG indx u_int32_t lu
44 ARG npgno db_pgno_t lu
46 ARG ppgno db_pgno_t lu
48 ARG pindx u_int32_t lu
56 ARG left db_pgno_t lu
58 ARG right db_pgno_t lu
60 ARG indx u_int32_t lu
74 ARG left db_pgno_t lu
[all …]
/dports/math/R-cran-lpSolve/lpSolve/src/
H A Dlp_LUSOL.c50 INVrec *lu; in bfp_resize() local
52 lu = lp->invB; in bfp_resize()
130 INVrec *lu; in bfp_free() local
132 lu = lp->invB; in bfp_free()
143 FREE(lu); in bfp_free()
151 INVrec *lu; in bfp_nonzeros() local
489 if(lu->col_leave > lu->dimcount-deltarows) in bfp_finishupdate()
491 if(lu->col_enter > lu->dimcount-deltarows) in bfp_finishupdate()
584 INVrec *lu; in bfp_ftran_normal() local
602 INVrec *lu; in bfp_ftran_prepare() local
[all …]
H A Dlp_BFP1.h103 INVrec *lu = lp->invB; in bfp_mustrefactorize() local
105 if(lu->num_pivots > 0) in bfp_mustrefactorize()
106 f = (timeNow()-lu->time_refactstart) / (REAL) lu->num_pivots; in bfp_mustrefactorize()
111 if(lu->force_refact || in bfp_mustrefactorize()
116 else if(lu->timed_refact && (lu->num_pivots > 1) && in bfp_mustrefactorize()
134 lu->num_pivots, lu->time_refactstart, f); in bfp_mustrefactorize()
182 INVrec *lu = lp->invB; in bfp_updaterefactstats() local
185 lu->is_dirty = AUTOMATIC; in bfp_updaterefactstats()
190 lu->user_colcount = 0; in bfp_updaterefactstats()
193 if(lu->force_refact) in bfp_updaterefactstats()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/mat/impls/aij/seq/klu/
H A Dklu.c103 klu_K_free_symbolic(&lu->Symbolic,&lu->Common); in MatDestroy_KLU()
104 klu_K_free_numeric(&lu->Numeric,&lu->Common); in MatDestroy_KLU()
105 ierr = PetscFree2(lu->perm_r,lu->perm_c);CHKERRQ(ierr); in MatDestroy_KLU()
123 status = klu_K_solve(lu->Symbolic,lu->Numeric,A->rmap->n,1,(PetscReal*)xa,&lu->Common); in MatSolveTranspose_KLU()
145 status = klu_K_tsolve(lu->Symbolic,lu->Numeric,A->rmap->n,1,xa,&lu->Common); in MatSolve_KLU()
163 if (lu->flg == SAME_NONZERO_PATTERN && lu->Numeric) { in MatLUFactorNumeric_KLU()
164 klu_K_free_numeric(&lu->Numeric,&lu->Common); in MatLUFactorNumeric_KLU()
166 lu->Numeric = klu_K_factor(ai,aj,(PetscReal*)av,lu->Symbolic,&lu->Common); in MatLUFactorNumeric_KLU()
188 ierr = PetscMalloc2(m,&lu->perm_r,n,&lu->perm_c);CHKERRQ(ierr); in MatLUFactorSymbolic_KLU()
199 lu->Symbolic = klu_K_analyze_given(n,ai,aj,lu->perm_c,lu->perm_r,&lu->Common); in MatLUFactorSymbolic_KLU()
[all …]
/dports/math/eigen3/eigen-3.3.9/test/
H A Dlu.cpp68 FullPivLU<MatrixType> lu; in lu_non_invertible() local
74 lu.compute(m1); in lu_non_invertible()
82 VERIFY_IS_APPROX(lu.permutationP() * m1 * lu.permutationQ(), l*u); in lu_non_invertible()
88 VERIFY(rank == lu.rank()); in lu_non_invertible()
89 VERIFY(cols - lu.rank() == lu.dimensionOfKernel()); in lu_non_invertible()
90 VERIFY(!lu.isInjective()); in lu_non_invertible()
136 FullPivLU<MatrixType> lu; in lu_invertible() local
140 lu.compute(m1); in lu_invertible()
147 VERIFY(lu.isInjective()); in lu_invertible()
152 m2 = lu.solve(m3); in lu_invertible()
[all …]
/dports/math/stanmath/math-4.2.0/lib/eigen_3.3.9/test/
H A Dlu.cpp68 FullPivLU<MatrixType> lu; in lu_non_invertible() local
74 lu.compute(m1); in lu_non_invertible()
82 VERIFY_IS_APPROX(lu.permutationP() * m1 * lu.permutationQ(), l*u); in lu_non_invertible()
88 VERIFY(rank == lu.rank()); in lu_non_invertible()
89 VERIFY(cols - lu.rank() == lu.dimensionOfKernel()); in lu_non_invertible()
90 VERIFY(!lu.isInjective()); in lu_non_invertible()
136 FullPivLU<MatrixType> lu; in lu_invertible() local
140 lu.compute(m1); in lu_invertible()
147 VERIFY(lu.isInjective()); in lu_invertible()
152 m2 = lu.solve(m3); in lu_invertible()
[all …]
/dports/math/libsemigroups/libsemigroups-1.3.7/extern/eigen-3.3.7/test/
H A Dlu.cpp68 FullPivLU<MatrixType> lu; in lu_non_invertible() local
74 lu.compute(m1); in lu_non_invertible()
82 VERIFY_IS_APPROX(lu.permutationP() * m1 * lu.permutationQ(), l*u); in lu_non_invertible()
88 VERIFY(rank == lu.rank()); in lu_non_invertible()
89 VERIFY(cols - lu.rank() == lu.dimensionOfKernel()); in lu_non_invertible()
90 VERIFY(!lu.isInjective()); in lu_non_invertible()
136 FullPivLU<MatrixType> lu; in lu_invertible() local
140 lu.compute(m1); in lu_invertible()
147 VERIFY(lu.isInjective()); in lu_invertible()
152 m2 = lu.solve(m3); in lu_invertible()
[all …]
/dports/misc/opennn/opennn-5.0.5/eigen/test/
H A Dlu.cpp68 FullPivLU<MatrixType> lu; in lu_non_invertible() local
74 lu.compute(m1); in lu_non_invertible()
82 VERIFY_IS_APPROX(lu.permutationP() * m1 * lu.permutationQ(), l*u); in lu_non_invertible()
88 VERIFY(rank == lu.rank()); in lu_non_invertible()
89 VERIFY(cols - lu.rank() == lu.dimensionOfKernel()); in lu_non_invertible()
90 VERIFY(!lu.isInjective()); in lu_non_invertible()
136 FullPivLU<MatrixType> lu; in lu_invertible() local
140 lu.compute(m1); in lu_invertible()
147 VERIFY(lu.isInjective()); in lu_invertible()
152 m2 = lu.solve(m3); in lu_invertible()
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/eigen-3.3.7/test/
H A Dlu.cpp68 FullPivLU<MatrixType> lu; in lu_non_invertible() local
74 lu.compute(m1); in lu_non_invertible()
82 VERIFY_IS_APPROX(lu.permutationP() * m1 * lu.permutationQ(), l*u); in lu_non_invertible()
88 VERIFY(rank == lu.rank()); in lu_non_invertible()
89 VERIFY(cols - lu.rank() == lu.dimensionOfKernel()); in lu_non_invertible()
90 VERIFY(!lu.isInjective()); in lu_non_invertible()
136 FullPivLU<MatrixType> lu; in lu_invertible() local
140 lu.compute(m1); in lu_invertible()
147 VERIFY(lu.isInjective()); in lu_invertible()
152 m2 = lu.solve(m3); in lu_invertible()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/mat/
H A Dlu_test.go26 var lu LU
30 lu.LTo(&l)
31 lu.UTo(&u)
50 lu.lu = NewDense(n, n, nil)
53 lu.lu.Set(i, j, rnd.Float64())
65 lu.pivot[i], lu.pivot[idx] = lu.pivot[idx], lu.pivot[i]
82 lu.RankOne(lu, alpha, x, y)
100 lu.LTo(&L)
101 lu.UTo(&U)
136 var lu LU
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/linear/
H A DLUDecompositionTest.java86 RealMatrix l = lu.getL(); in testPAEqualLU()
87 RealMatrix u = lu.getU(); in testPAEqualLU()
94 l = lu.getL(); in testPAEqualLU()
95 u = lu.getU(); in testPAEqualLU()
96 p = lu.getP(); in testPAEqualLU()
102 l = lu.getL(); in testPAEqualLU()
103 u = lu.getU(); in testPAEqualLU()
104 p = lu.getP(); in testPAEqualLU()
202 LUDecomposition lu = in testSingular() local
214 LUDecomposition lu = in testMatricesValues1() local
[all …]
/dports/math/lp_solve/lp_solve_5.5/bfp/bfp_LUSOL/
H A Dlp_LUSOL.c51 INVrec *lu; in bfp_resize() local
53 lu = lp->invB; in bfp_resize()
131 INVrec *lu; in bfp_free() local
133 lu = lp->invB; in bfp_free()
144 FREE(lu); in bfp_free()
152 INVrec *lu; in bfp_nonzeros() local
490 if(lu->col_leave > lu->dimcount-deltarows) in bfp_finishupdate()
492 if(lu->col_enter > lu->dimcount-deltarows) in bfp_finishupdate()
585 INVrec *lu; in bfp_ftran_normal() local
603 INVrec *lu; in bfp_ftran_prepare() local
[all …]
/dports/databases/db18/db-18.1.40/src/db/
H A Ddb.src37 OP opcode u_int32_t lu
39 ARG pgno db_pgno_t lu
40 ARG indx u_int32_t lu
41 ARG nbytes u_int32_t lu
48 ARG opcode u_int32_t lu
50 ARG pgno db_pgno_t lu
51 ARG indx u_int32_t lu
74 OP opcode u_int32_t lu
76 ARG pgno db_pgno_t lu
88 ARG pgno db_pgno_t lu
[all …]
/dports/databases/db5/db-5.3.28/src/db/
H A Ddb.src37 OP opcode u_int32_t lu
39 ARG pgno db_pgno_t lu
40 ARG indx u_int32_t lu
41 ARG nbytes u_int32_t lu
48 ARG opcode u_int32_t lu
50 ARG pgno db_pgno_t lu
51 ARG indx u_int32_t lu
74 OP opcode u_int32_t lu
76 ARG pgno db_pgno_t lu
88 ARG pgno db_pgno_t lu
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-exactprint-0.6.4/tests/examples/ghc710/
H A DInternals.hs74 unsafeNewArray_ lu = stToIO $ do
92 unsafeNewArray_ lu = stToIO $ do
110 unsafeNewArray_ lu = stToIO $ do
128 unsafeNewArray_ lu = stToIO $ do
146 unsafeNewArray_ lu = stToIO $ do
164 unsafeNewArray_ lu = stToIO $ do
182 unsafeNewArray_ lu = stToIO $ do
200 unsafeNewArray_ lu = stToIO $ do
218 unsafeNewArray_ lu = stToIO $ do
236 unsafeNewArray_ lu = stToIO $ do
[all …]
/dports/lang/ghc/ghc-8.10.7/libraries/array/Data/Array/IO/
H A DInternals.hs68 unsafeNewArray_ lu = stToIO $ do
86 unsafeNewArray_ lu = stToIO $ do
104 unsafeNewArray_ lu = stToIO $ do
122 unsafeNewArray_ lu = stToIO $ do
140 unsafeNewArray_ lu = stToIO $ do
158 unsafeNewArray_ lu = stToIO $ do
176 unsafeNewArray_ lu = stToIO $ do
194 unsafeNewArray_ lu = stToIO $ do
212 unsafeNewArray_ lu = stToIO $ do
230 unsafeNewArray_ lu = stToIO $ do
[all …]
/dports/graphics/colmap/colmap-3.6/lib/PoissonRecon/
H A DMemoryUsage.h96 unsigned long lu; in Usage() local
105lu ,&lu ,&lu ,&lu ,&lu ,&lu ,&lu ,&ld ,&ld ,&ld ,&ld ,&d ,&ld ,&llu ,&vm ,&ld ,&lu ,&lu ,&lu ,&lu in Usage()
/dports/math/geogram/geogram-1.7.7/src/lib/geogram/third_party/PoissonRecon/
H A DMemoryUsage.h96 unsigned long lu; in Usage() local
105lu ,&lu ,&lu ,&lu ,&lu ,&lu ,&lu ,&ld ,&ld ,&ld ,&ld ,&d ,&ld ,&llu ,&vm ,&ld ,&lu ,&lu ,&lu ,&lu in Usage()
/dports/sysutils/dsbdriverd/dsbdriverd-1.0/tests/
H A Dnetif_tests.lua3 lu = require('luaunit')
48 lu.assertTrue(found)
52 lu.assertTrue(found)
56 lu.assertTrue(found)
63 lu.assertNotNil(name)
67 lu.assertNotNil(name)
71 lu.assertNotNil(name)
80 lu.assertNotNil(dev)
84 lu.assertNil(dev)
99 lu.assertTrue(found)
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/minimalbinding/
H A Dlistuser_test.py89 lu = ListUser()
104 lu = ExtListUser()
120 lu = ListUser()
135 lu = ListUser()
167 lu = ListUser()
189 lu = ListUser()
220 lu = ListUser()
237 lu = ListUser()
275 lu = ListUser()
291 lu = ListUser()
[all …]
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/minimalbinding/
H A Dlistuser_test.py89 lu = ListUser()
104 lu = ExtListUser()
120 lu = ListUser()
135 lu = ListUser()
167 lu = ListUser()
189 lu = ListUser()
220 lu = ListUser()
237 lu = ListUser()
275 lu = ListUser()
291 lu = ListUser()
[all …]
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/minimalbinding/
H A Dlistuser_test.py89 lu = ListUser()
104 lu = ExtListUser()
120 lu = ListUser()
135 lu = ListUser()
167 lu = ListUser()
189 lu = ListUser()
220 lu = ListUser()
237 lu = ListUser()
275 lu = ListUser()
291 lu = ListUser()
[all …]
/dports/math/lp_solve/lp_solve_5.5/bfp/
H A Dlp_BFP1.c103 INVrec *lu = lp->invB; in bfp_mustrefactorize() local
105 if(lu->num_pivots > 0) in bfp_mustrefactorize()
106 f = (timeNow()-lu->time_refactstart) / (REAL) lu->num_pivots; in bfp_mustrefactorize()
111 if(lu->force_refact || in bfp_mustrefactorize()
116 else if(lu->timed_refact && (lu->num_pivots > 1) && in bfp_mustrefactorize()
134 lu->num_pivots, lu->time_refactstart, f); in bfp_mustrefactorize()
182 INVrec *lu = lp->invB; in bfp_updaterefactstats() local
185 lu->is_dirty = AUTOMATIC; in bfp_updaterefactstats()
190 lu->user_colcount = 0; in bfp_updaterefactstats()
193 if(lu->force_refact) in bfp_updaterefactstats()
[all …]
/dports/databases/db5/db-5.3.28/src/hash/
H A Dhash.src71 ARG pgno db_pgno_t lu
72 ARG ndx u_int32_t lu
83 ARG pgno db_pgno_t lu
84 ARG ndx u_int32_t lu
120 ARG pgno db_pgno_t lu
140 ARG ndx u_int32_t lu
152 ARG ndx u_int32_t lu
244 ARG num u_int32_t lu
252 ARG num u_int32_t lu
266 ARG old db_pgno_t lu
[all …]
/dports/databases/db18/db-18.1.40/src/hash/
H A Dhash.src71 ARG pgno db_pgno_t lu
72 ARG ndx u_int32_t lu
83 ARG pgno db_pgno_t lu
84 ARG ndx u_int32_t lu
120 ARG pgno db_pgno_t lu
140 ARG ndx u_int32_t lu
152 ARG ndx u_int32_t lu
244 ARG num u_int32_t lu
252 ARG num u_int32_t lu
266 ARG old db_pgno_t lu
[all …]

12345678910>>...578