• Home
  • Raw
  • Download

Lines Matching refs:uv

30   VectorType model(const VectorType& uv, VectorType& x)  in model()
35 eigen_assert(uv.size()%2 == 0); in model()
36 eigen_assert(uv.size() == n); in model()
40 VectorBlock<const VectorType> u(uv, 0, half); in model()
41 VectorBlock<const VectorType> v(uv, half, half); in model()
56 int operator()(const VectorType& uv, VectorType& fvec) in operator ()()
61 eigen_assert(uv.size()%2 == 0); in operator ()()
62 eigen_assert(uv.size() == n); in operator ()()
65 VectorBlock<const VectorType> u(uv, 0, half); in operator ()()
66 VectorBlock<const VectorType> v(uv, half, half); in operator ()()
78 int df(const VectorType& uv, JacobianType& fjac) in df()
82 eigen_assert(n == uv.size()); in df()
86 VectorBlock<const VectorType> u(uv, 0, half); in df()
87 VectorBlock<const VectorType> v(uv, half, half); in df()
102 int test_minimizeLM(FunctorType& functor, VectorType& uv) in test_minimizeLM() argument
107 info = lm.minimize(uv); in test_minimizeLM()
115 int test_lmder(FunctorType& functor, VectorType& uv) in test_lmder() argument
120 info = lm.lmder1(uv); in test_lmder()
128 int test_minimizeSteps(FunctorType& functor, VectorType& uv) in test_minimizeSteps() argument
132 info = lm.minimizeInit(uv); in test_minimizeSteps()
137 info = lm.minimizeOneStep(uv); in test_minimizeSteps()
153 VectorType uv(inputs),uv_ref(inputs); in test_denseLM_T() local
166 VectorBlock<VectorType> u(uv, 0, inputs/2); in test_denseLM_T()
167 VectorBlock<VectorType> v(uv, inputs/2, inputs/2); in test_denseLM_T()
173 test_minimizeLM(dense_gaussian, uv); in test_denseLM_T()
177 test_lmder(dense_gaussian, uv); in test_denseLM_T()
181 test_minimizeSteps(dense_gaussian, uv); in test_denseLM_T()