实例介绍
win10+vs2017编译很久终于成功的Ceres库,最终版用ceres-solver-1.14.0,Eigen3.3.7等,里面也有Eigen3.3.8,3.2.10等版本以及我编译参考的文档链接,和如何配置的环境.
【实例截图】
【核心代码】
4744300845398787970.zip
├── Ceres
│ ├── bin
│ │ ├── ceres-debug.dll
│ │ └── ceres.dll
│ ├── CMake
│ │ ├── CeresConfig.cmake
│ │ ├── CeresConfigVersion.cmake
│ │ ├── CeresTargets.cmake
│ │ ├── CeresTargets-debug.cmake
│ │ ├── CeresTargets-release.cmake
│ │ ├── FindEigen.cmake
│ │ ├── FindGflags.cmake
│ │ └── FindGlog.cmake
│ ├── include
│ │ └── ceres
│ │ ├── autodiff_cost_function.h
│ │ ├── autodiff_local_parameterization.h
│ │ ├── c_api.h
│ │ ├── ceres.h
│ │ ├── conditioned_cost_function.h
│ │ ├── context.h
│ │ ├── cost_function.h
│ │ ├── cost_function_to_functor.h
│ │ ├── covariance.h
│ │ ├── crs_matrix.h
│ │ ├── cubic_interpolation.h
│ │ ├── dynamic_autodiff_cost_function.h
│ │ ├── dynamic_cost_function.h
│ │ ├── dynamic_cost_function_to_functor.h
│ │ ├── dynamic_numeric_diff_cost_function.h
│ │ ├── evaluation_callback.h
│ │ ├── fpclassify.h
│ │ ├── gradient_checker.h
│ │ ├── gradient_problem.h
│ │ ├── gradient_problem_solver.h
│ │ ├── internal
│ │ │ ├── autodiff.h
│ │ │ ├── config.h
│ │ │ ├── disable_warnings.h
│ │ │ ├── eigen.h
│ │ │ ├── fixed_array.h
│ │ │ ├── macros.h
│ │ │ ├── manual_constructor.h
│ │ │ ├── numeric_diff.h
│ │ │ ├── port.h
│ │ │ ├── reenable_warnings.h
│ │ │ ├── scoped_ptr.h
│ │ │ └── variadic_evaluate.h
│ │ ├── iteration_callback.h
│ │ ├── jet.h
│ │ ├── local_parameterization.h
│ │ ├── loss_function.h
│ │ ├── normal_prior.h
│ │ ├── numeric_diff_cost_function.h
│ │ ├── numeric_diff_options.h
│ │ ├── ordered_groups.h
│ │ ├── problem.h
│ │ ├── rotation.h
│ │ ├── sized_cost_function.h
│ │ ├── solver.h
│ │ ├── tiny_solver_autodiff_function.h
│ │ ├── tiny_solver_cost_function_adapter.h
│ │ ├── tiny_solver.h
│ │ ├── types.h
│ │ └── version.h
│ └── lib
│ ├── ceres-debug.lib
│ └── ceres.lib
├── Ceres环境配置.txt
├── CMake编译
│ └── Ceres
│ ├── ceres-solver-1.14.0
│ │ ├── ceres-solver-1.14.0
│ │ │ ├── bazel
│ │ │ │ ├── ceres.bzl
│ │ │ │ └── eigen.BUILD
│ │ │ ├── BUILD
│ │ │ ├── cmake
│ │ │ │ ├── AddCeresCXX11RequirementsToTarget.cmake
│ │ │ │ ├── AddGerritCommitHook.cmake
│ │ │ │ ├── AppendTargetProperty.cmake
│ │ │ │ ├── CeresCompileOptionsToComponents.cmake
│ │ │ │ ├── CeresConfig.cmake.in
│ │ │ │ ├── CeresConfigVersion.cmake.in
│ │ │ │ ├── CheckIfUnderscorePrefixedBesselFunctionsExist.cmake
│ │ │ │ ├── config.h.in
│ │ │ │ ├── CreateCeresConfig.cmake
│ │ │ │ ├── FindCXSparse.cmake
│ │ │ │ ├── FindCXX11MathFunctions.cmake
│ │ │ │ ├── FindEigen.cmake
│ │ │ │ ├── FindGflags.cmake
│ │ │ │ ├── FindGlog.cmake
│ │ │ │ ├── FindSharedPtr.cmake
│ │ │ │ ├── FindSphinx.cmake
│ │ │ │ ├── FindSuiteSparse.cmake
│ │ │ │ ├── FindTBB.cmake
│ │ │ │ ├── FindUnorderedMap.cmake
│ │ │ │ ├── iOS.cmake
│ │ │ │ ├── ReadCeresVersionFromSource.cmake
│ │ │ │ ├── uninstall.cmake.in
│ │ │ │ └── UpdateCacheVariable.cmake
│ │ │ ├── CMakeLists.txt
│ │ │ ├── config
│ │ │ │ └── ceres
│ │ │ │ └── internal
│ │ │ │ └── config.h
│ │ │ ├── data
│ │ │ │ ├── 2x2.foe
│ │ │ │ ├── 3x3.foe
│ │ │ │ ├── 5x5.foe
│ │ │ │ ├── ceres_noisy.pgm
│ │ │ │ ├── libmv-ba-problems
│ │ │ │ │ ├── problem_01.bin
│ │ │ │ │ ├── problem_02.bin
│ │ │ │ │ ├── problem_03.bin
│ │ │ │ │ └── Readme.txt
│ │ │ │ ├── nist
│ │ │ │ │ ├── Bennett5.dat
│ │ │ │ │ ├── BoxBOD.dat
│ │ │ │ │ ├── Chwirut1.dat
│ │ │ │ │ ├── Chwirut2.dat
│ │ │ │ │ ├── DanWood.dat
│ │ │ │ │ ├── Eckerle4.dat
│ │ │ │ │ ├── ENSO.dat
│ │ │ │ │ ├── Gauss1.dat
│ │ │ │ │ ├── Gauss2.dat
│ │ │ │ │ ├── Gauss3.dat
│ │ │ │ │ ├── Hahn1.dat
│ │ │ │ │ ├── Kirby2.dat
│ │ │ │ │ ├── Lanczos1.dat
│ │ │ │ │ ├── Lanczos2.dat
│ │ │ │ │ ├── Lanczos3.dat
│ │ │ │ │ ├── MGH09.dat
│ │ │ │ │ ├── MGH10.dat
│ │ │ │ │ ├── MGH17.dat
│ │ │ │ │ ├── Misra1a.dat
│ │ │ │ │ ├── Misra1b.dat
│ │ │ │ │ ├── Misra1c.dat
│ │ │ │ │ ├── Misra1d.dat
│ │ │ │ │ ├── Nelson.dat
│ │ │ │ │ ├── Rat42.dat
│ │ │ │ │ ├── Rat43.dat
│ │ │ │ │ ├── Roszman1.dat
│ │ │ │ │ └── Thurber.dat
│ │ │ │ ├── problem-16-22106-pre.txt
│ │ │ │ └── README.foe
│ │ │ ├── docs
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ └── source
│ │ │ │ ├── analytical_derivatives.rst
│ │ │ │ ├── automatic_derivatives.rst
│ │ │ │ ├── bibliography.rst
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── conf.py
│ │ │ │ ├── contributing.rst
│ │ │ │ ├── derivatives.rst
│ │ │ │ ├── faqs.rst
│ │ │ │ ├── features.rst
│ │ │ │ ├── forward_central_error.png
│ │ │ │ ├── forward_central_ridders_error.png
│ │ │ │ ├── gradient_solver.rst
│ │ │ │ ├── gradient_tutorial.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── installation.rst
│ │ │ │ ├── interfacing_with_autodiff.rst
│ │ │ │ ├── least_squares_fit.png
│ │ │ │ ├── license.rst
│ │ │ │ ├── loss.png
│ │ │ │ ├── manhattan_olson_3500_result.png
│ │ │ │ ├── modeling_faqs.rst
│ │ │ │ ├── nnls_covariance.rst
│ │ │ │ ├── nnls_modeling.rst
│ │ │ │ ├── nnls_solving.rst
│ │ │ │ ├── nnls_tutorial.rst
│ │ │ │ ├── non_robust_least_squares_fit.png
│ │ │ │ ├── numerical_derivatives.rst
│ │ │ │ ├── pose_graph_3d_ex.png
│ │ │ │ ├── robust_least_squares_fit.png
│ │ │ │ ├── slam2d.png
│ │ │ │ ├── solving_faqs.rst
│ │ │ │ ├── spivak_notation.rst
│ │ │ │ ├── _templates
│ │ │ │ │ └── layout.html
│ │ │ │ ├── tutorial.rst
│ │ │ │ ├── users.rst
│ │ │ │ └── version_history.rst
│ │ │ ├── examples
│ │ │ │ ├── bal_problem.cc
│ │ │ │ ├── bal_problem.h
│ │ │ │ ├── BUILD
│ │ │ │ ├── bundle_adjuster.cc
│ │ │ │ ├── circle_fit.cc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── curve_fitting.c
│ │ │ │ ├── curve_fitting.cc
│ │ │ │ ├── denoising.cc
│ │ │ │ ├── ellipse_approximation.cc
│ │ │ │ ├── fields_of_experts.cc
│ │ │ │ ├── fields_of_experts.h
│ │ │ │ ├── helloworld_analytic_diff.cc
│ │ │ │ ├── helloworld.cc
│ │ │ │ ├── helloworld_numeric_diff.cc
│ │ │ │ ├── libmv_bundle_adjuster.cc
│ │ │ │ ├── libmv_homography.cc
│ │ │ │ ├── Makefile.example
│ │ │ │ ├── more_garbow_hillstrom.cc
│ │ │ │ ├── nist.cc
│ │ │ │ ├── pgm_image.h
│ │ │ │ ├── powell.cc
│ │ │ │ ├── random.h
│ │ │ │ ├── robot_pose_mle.cc
│ │ │ │ ├── robust_curve_fitting.cc
│ │ │ │ ├── rosenbrock.cc
│ │ │ │ ├── sampled_function
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── sampled_function.cc
│ │ │ │ ├── simple_bundle_adjuster.cc
│ │ │ │ ├── slam
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── common
│ │ │ │ │ │ └── read_g2o.h
│ │ │ │ │ ├── pose_graph_2d
│ │ │ │ │ │ ├── angle_local_parameterization.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── normalize_angle.h
│ │ │ │ │ │ ├── plot_results.py
│ │ │ │ │ │ ├── pose_graph_2d.cc
│ │ │ │ │ │ ├── pose_graph_2d_error_term.h
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── types.h
│ │ │ │ │ └── pose_graph_3d
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── plot_results.py
│ │ │ │ │ ├── pose_graph_3d.cc
│ │ │ │ │ ├── pose_graph_3d_error_term.h
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── types.h
│ │ │ │ └── snavely_reprojection_error.h
│ │ │ ├── include
│ │ │ │ └── ceres
│ │ │ │ ├── autodiff_cost_function.h
│ │ │ │ ├── autodiff_local_parameterization.h
│ │ │ │ ├── c_api.h
│ │ │ │ ├── ceres.h
│ │ │ │ ├── conditioned_cost_function.h
│ │ │ │ ├── context.h
│ │ │ │ ├── cost_function.h
│ │ │ │ ├── cost_function_to_functor.h
│ │ │ │ ├── covariance.h
│ │ │ │ ├── crs_matrix.h
│ │ │ │ ├── cubic_interpolation.h
│ │ │ │ ├── dynamic_autodiff_cost_function.h
│ │ │ │ ├── dynamic_cost_function.h
│ │ │ │ ├── dynamic_cost_function_to_functor.h
│ │ │ │ ├── dynamic_numeric_diff_cost_function.h
│ │ │ │ ├── evaluation_callback.h
│ │ │ │ ├── fpclassify.h
│ │ │ │ ├── gradient_checker.h
│ │ │ │ ├── gradient_problem.h
│ │ │ │ ├── gradient_problem_solver.h
│ │ │ │ ├── internal
│ │ │ │ │ ├── autodiff.h
│ │ │ │ │ ├── disable_warnings.h
│ │ │ │ │ ├── eigen.h
│ │ │ │ │ ├── fixed_array.h
│ │ │ │ │ ├── macros.h
│ │ │ │ │ ├── manual_constructor.h
│ │ │ │ │ ├── numeric_diff.h
│ │ │ │ │ ├── port.h
│ │ │ │ │ ├── reenable_warnings.h
│ │ │ │ │ ├── scoped_ptr.h
│ │ │ │ │ └── variadic_evaluate.h
│ │ │ │ ├── iteration_callback.h
│ │ │ │ ├── jet.h
│ │ │ │ ├── local_parameterization.h
│ │ │ │ ├── loss_function.h
│ │ │ │ ├── normal_prior.h
│ │ │ │ ├── numeric_diff_cost_function.h
│ │ │ │ ├── numeric_diff_options.h
│ │ │ │ ├── ordered_groups.h
│ │ │ │ ├── problem.h
│ │ │ │ ├── rotation.h
│ │ │ │ ├── sized_cost_function.h
│ │ │ │ ├── solver.h
│ │ │ │ ├── tiny_solver_autodiff_function.h
│ │ │ │ ├── tiny_solver_cost_function_adapter.h
│ │ │ │ ├── tiny_solver.h
│ │ │ │ ├── types.h
│ │ │ │ └── version.h
│ │ │ ├── internal
│ │ │ │ └── ceres
│ │ │ │ ├── array_utils.cc
│ │ │ │ ├── array_utils.h
│ │ │ │ ├── array_utils_test.cc
│ │ │ │ ├── autodiff_cost_function_benchmark.cc
│ │ │ │ ├── autodiff_cost_function_test.cc
│ │ │ │ ├── autodiff_local_parameterization_test.cc
│ │ │ │ ├── autodiff_test.cc
│ │ │ │ ├── benchmarks
│ │ │ │ │ ├── macbook-pro-2014-small_blas_gemm_benchmark.json
│ │ │ │ │ └── macbook-pro-2014-small_blas_gemv_benchmark.json
│ │ │ │ ├── blas.cc
│ │ │ │ ├── blas.h
│ │ │ │ ├── block_evaluate_preparer.cc
│ │ │ │ ├── block_evaluate_preparer.h
│ │ │ │ ├── block_jacobian_writer.cc
│ │ │ │ ├── block_jacobian_writer.h
│ │ │ │ ├── block_jacobi_preconditioner.cc
│ │ │ │ ├── block_jacobi_preconditioner.h
│ │ │ │ ├── block_jacobi_preconditioner_test.cc
│ │ │ │ ├── block_random_access_dense_matrix.cc
│ │ │ │ ├── block_random_access_dense_matrix.h
│ │ │ │ ├── block_random_access_dense_matrix_test.cc
│ │ │ │ ├── block_random_access_diagonal_matrix.cc
│ │ │ │ ├── block_random_access_diagonal_matrix.h
│ │ │ │ ├── block_random_access_diagonal_matrix_test.cc
│ │ │ │ ├── block_random_access_matrix.cc
│ │ │ │ ├── block_random_access_matrix.h
│ │ │ │ ├── block_random_access_sparse_matrix.cc
│ │ │ │ ├── block_random_access_sparse_matrix.h
│ │ │ │ ├── block_random_access_sparse_matrix_test.cc
│ │ │ │ ├── block_sparse_matrix.cc
│ │ │ │ ├── block_sparse_matrix.h
│ │ │ │ ├── block_sparse_matrix_test.cc
│ │ │ │ ├── block_structure.cc
│ │ │ │ ├── block_structure.h
│ │ │ │ ├── bundle_adjustment_test_util.h
│ │ │ │ ├── callbacks.cc
│ │ │ │ ├── callbacks.h
│ │ │ │ ├── canonical_views_clustering.cc
│ │ │ │ ├── canonical_views_clustering.h
│ │ │ │ ├── canonical_views_clustering_test.cc
│ │ │ │ ├── c_api.cc
│ │ │ │ ├── c_api_test.cc
│ │ │ │ ├── casts.h
│ │ │ │ ├── cgnr_linear_operator.h
│ │ │ │ ├── cgnr_solver.cc
│ │ │ │ ├── cgnr_solver.h
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── collections_port.h
│ │ │ │ ├── compressed_col_sparse_matrix_utils.cc
│ │ │ │ ├── compressed_col_sparse_matrix_utils.h
│ │ │ │ ├── compressed_col_sparse_matrix_utils_test.cc
│ │ │ │ ├── compressed_row_jacobian_writer.cc
│ │ │ │ ├── compressed_row_jacobian_writer.h
│ │ │ │ ├── compressed_row_sparse_matrix.cc
│ │ │ │ ├── compressed_row_sparse_matrix.h
│ │ │ │ ├── compressed_row_sparse_matrix_test.cc
│ │ │ │ ├── concurrent_queue.h
│ │ │ │ ├── concurrent_queue_test.cc
│ │ │ │ ├── conditioned_cost_function.cc
│ │ │ │ ├── conditioned_cost_function_test.cc
│ │ │ │ ├── conjugate_gradients_solver.cc
│ │ │ │ ├── conjugate_gradients_solver.h
│ │ │ │ ├── conjugate_gradients_solver_test.cc
│ │ │ │ ├── context.cc
│ │ │ │ ├── context_impl.cc
│ │ │ │ ├── context_impl.h
│ │ │ │ ├── coordinate_descent_minimizer.cc
│ │ │ │ ├── coordinate_descent_minimizer.h
│ │ │ │ ├── corrector.cc
│ │ │ │ ├── corrector.h
│ │ │ │ ├── corrector_test.cc
│ │ │ │ ├── cost_function_to_functor_test.cc
│ │ │ │ ├── covariance.cc
│ │ │ │ ├── covariance_impl.cc
│ │ │ │ ├── covariance_impl.h
│ │ │ │ ├── covariance_test.cc
│ │ │ │ ├── cubic_interpolation_test.cc
│ │ │ │ ├── cxsparse.cc
│ │ │ │ ├── cxsparse.h
│ │ │ │ ├── dense_jacobian_writer.h
│ │ │ │ ├── dense_linear_solver_test.cc
│ │ │ │ ├── dense_normal_cholesky_solver.cc
│ │ │ │ ├── dense_normal_cholesky_solver.h
│ │ │ │ ├── dense_qr_solver.cc
│ │ │ │ ├── dense_qr_solver.h
│ │ │ │ ├── dense_sparse_matrix.cc
│ │ │ │ ├── dense_sparse_matrix.h
│ │ │ │ ├── dense_sparse_matrix_test.cc
│ │ │ │ ├── detect_structure.cc
│ │ │ │ ├── detect_structure.h
│ │ │ │ ├── detect_structure_test.cc
│ │ │ │ ├── dogleg_strategy.cc
│ │ │ │ ├── dogleg_strategy.h
│ │ │ │ ├── dogleg_strategy_test.cc
│ │ │ │ ├── dynamic_autodiff_cost_function_test.cc
│ │ │ │ ├── dynamic_compressed_row_finalizer.h
│ │ │ │ ├── dynamic_compressed_row_jacobian_writer.cc
│ │ │ │ ├── dynamic_compressed_row_jacobian_writer.h
│ │ │ │ ├── dynamic_compressed_row_sparse_matrix.cc
│ │ │ │ ├── dynamic_compressed_row_sparse_matrix.h
│ │ │ │ ├── dynamic_compressed_row_sparse_matrix_test.cc
│ │ │ │ ├── dynamic_numeric_diff_cost_function_test.cc
│ │ │ │ ├── dynamic_sparse_normal_cholesky_solver.cc
│ │ │ │ ├── dynamic_sparse_normal_cholesky_solver.h
│ │ │ │ ├── dynamic_sparse_normal_cholesky_solver_test.cc
│ │ │ │ ├── dynamic_sparsity_test.cc
│ │ │ │ ├── eigensparse.cc
│ │ │ │ ├── eigensparse.h
│ │ │ │ ├── evaluation_callback_test.cc
│ │ │ │ ├── evaluator.cc
│ │ │ │ ├── evaluator.h
│ │ │ │ ├── evaluator_test.cc
│ │ │ │ ├── evaluator_test_utils.cc
│ │ │ │ ├── evaluator_test_utils.h
│ │ │ │ ├── execution_summary.h
│ │ │ │ ├── file.cc
│ │ │ │ ├── file.h
│ │ │ │ ├── function_sample.cc
│ │ │ │ ├── function_sample.h
│ │ │ │ ├── generate_bundle_adjustment_tests.py
│ │ │ │ ├── generated
│ │ │ │ │ ├── partitioned_matrix_view_2_2_2.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_2_3.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_2_4.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_2_d.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_3_3.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_3_4.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_3_6.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_3_9.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_3_d.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_3.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_4.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_6.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_8.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_9.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_4_d.cc
│ │ │ │ │ ├── partitioned_matrix_view_2_d_d.cc
│ │ │ │ │ ├── partitioned_matrix_view_4_4_2.cc
│ │ │ │ │ ├── partitioned_matrix_view_4_4_3.cc
│ │ │ │ │ ├── partitioned_matrix_view_4_4_4.cc
│ │ │ │ │ ├── partitioned_matrix_view_4_4_d.cc
│ │ │ │ │ ├── partitioned_matrix_view_d_d_d.cc
│ │ │ │ │ ├── schur_eliminator_2_2_2.cc
│ │ │ │ │ ├── schur_eliminator_2_2_3.cc
│ │ │ │ │ ├── schur_eliminator_2_2_4.cc
│ │ │ │ │ ├── schur_eliminator_2_2_d.cc
│ │ │ │ │ ├── schur_eliminator_2_3_3.cc
│ │ │ │ │ ├── schur_eliminator_2_3_4.cc
│ │ │ │ │ ├── schur_eliminator_2_3_6.cc
│ │ │ │ │ ├── schur_eliminator_2_3_9.cc
│ │ │ │ │ ├── schur_eliminator_2_3_d.cc
│ │ │ │ │ ├── schur_eliminator_2_4_3.cc
│ │ │ │ │ ├── schur_eliminator_2_4_4.cc
│ │ │ │ │ ├── schur_eliminator_2_4_6.cc
│ │ │ │ │ ├── schur_eliminator_2_4_8.cc
│ │ │ │ │ ├── schur_eliminator_2_4_9.cc
│ │ │ │ │ ├── schur_eliminator_2_4_d.cc
│ │ │ │ │ ├── schur_eliminator_2_d_d.cc
│ │ │ │ │ ├── schur_eliminator_4_4_2.cc
│ │ │ │ │ ├── schur_eliminator_4_4_3.cc
│ │ │ │ │ ├── schur_eliminator_4_4_4.cc
│ │ │ │ │ ├── schur_eliminator_4_4_d.cc
│ │ │ │ │ └── schur_eliminator_d_d_d.cc
│ │ │ │ ├── generated_bundle_adjustment_tests
│ │ │ │ │ ├── ba_denseschur_auto_test.cc
│ │ │ │ │ ├── ba_denseschur_auto_threads_test.cc
│ │ │ │ │ ├── ba_denseschur_user_test.cc
│ │ │ │ │ ├── ba_denseschur_user_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_jacobi_auto_test.cc
│ │ │ │ │ ├── ba_iterschur_jacobi_auto_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_jacobi_user_test.cc
│ │ │ │ │ ├── ba_iterschur_jacobi_user_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_schurjacobi_auto_test.cc
│ │ │ │ │ ├── ba_iterschur_schurjacobi_auto_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_schurjacobi_user_test.cc
│ │ │ │ │ ├── ba_iterschur_schurjacobi_user_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clustjacobi_auto_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clustjacobi_auto_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clustjacobi_user_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clustjacobi_user_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clusttri_auto_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clusttri_auto_threads_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clusttri_user_test.cc
│ │ │ │ │ ├── ba_iterschur_suitesparse_clusttri_user_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_cxsparse_auto_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_cxsparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_cxsparse_user_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_cxsparse_user_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_eigensparse_auto_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_eigensparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_eigensparse_user_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_eigensparse_user_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_suitesparse_auto_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_suitesparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_suitesparse_user_test.cc
│ │ │ │ │ ├── ba_sparsecholesky_suitesparse_user_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_cxsparse_auto_test.cc
│ │ │ │ │ ├── ba_sparseschur_cxsparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_cxsparse_user_test.cc
│ │ │ │ │ ├── ba_sparseschur_cxsparse_user_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_eigensparse_auto_test.cc
│ │ │ │ │ ├── ba_sparseschur_eigensparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_eigensparse_user_test.cc
│ │ │ │ │ ├── ba_sparseschur_eigensparse_user_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_suitesparse_auto_test.cc
│ │ │ │ │ ├── ba_sparseschur_suitesparse_auto_threads_test.cc
│ │ │ │ │ ├── ba_sparseschur_suitesparse_user_test.cc
│ │ │ │ │ ├── ba_sparseschur_suitesparse_user_threads_test.cc
│ │ │ │ │ └── CMakeLists.txt
│ │ │ │ ├── generate_template_specializations.py
│ │ │ │ ├── gmock
│ │ │ │ │ ├── gmock.h
│ │ │ │ │ └── mock-log.h
│ │ │ │ ├── gmock_gtest_all.cc
│ │ │ │ ├── gmock_main.cc
│ │ │ │ ├── gradient_checker.cc
│ │ │ │ ├── gradient_checker_test.cc
│ │ │ │ ├── gradient_checking_cost_function.cc
│ │ │ │ ├── gradient_checking_cost_function.h
│ │ │ │ ├── gradient_checking_cost_function_test.cc
│ │ │ │ ├── gradient_problem.cc
│ │ │ │ ├── gradient_problem_evaluator.h
│ │ │ │ ├── gradient_problem_solver.cc
│ │ │ │ ├── gradient_problem_solver_test.cc
│ │ │ │ ├── gradient_problem_test.cc
│ │ │ │ ├── graph_algorithms.h
│ │ │ │ ├── graph_algorithms_test.cc
│ │ │ │ ├── graph.h
│ │ │ │ ├── graph_test.cc
│ │ │ │ ├── gtest
│ │ │ │ │ └── gtest.h
│ │ │ │ ├── householder_vector.h
│ │ │ │ ├── householder_vector_test.cc
│ │ │ │ ├── implicit_schur_complement.cc
│ │ │ │ ├── implicit_schur_complement.h
│ │ │ │ ├── implicit_schur_complement_test.cc
│ │ │ │ ├── inner_product_computer.cc
│ │ │ │ ├── inner_product_computer.h
│ │ │ │ ├── inner_product_computer_test.cc
│ │ │ │ ├── integral_types.h
│ │ │ │ ├── invert_psd_matrix.h
│ │ │ │ ├── invert_psd_matrix_test.cc
│ │ │ │ ├── is_close.cc
│ │ │ │ ├── is_close.h
│ │ │ │ ├── is_close_test.cc
│ │ │ │ ├── iterative_schur_complement_solver.cc
│ │ │ │ ├── iterative_schur_complement_solver.h
│ │ │ │ ├── iterative_schur_complement_solver_test.cc
│ │ │ │ ├── jet_test.cc
│ │ │ │ ├── lapack.cc
│ │ │ │ ├── lapack.h
│ │ │ │ ├── levenberg_marquardt_strategy.cc
│ │ │ │ ├── levenberg_marquardt_strategy.h
│ │ │ │ ├── levenberg_marquardt_strategy_test.cc
│ │ │ │ ├── linear_least_squares_problems.cc
│ │ │ │ ├── linear_least_squares_problems.h
│ │ │ │ ├── linear_operator.cc
│ │ │ │ ├── linear_operator.h
│ │ │ │ ├── linear_solver.cc
│ │ │ │ ├── linear_solver.h
│ │ │ │ ├── line_search.cc
│ │ │ │ ├── line_search_direction.cc
│ │ │ │ ├── line_search_direction.h
│ │ │ │ ├── line_search.h
│ │ │ │ ├── line_search_minimizer.cc
│ │ │ │ ├── line_search_minimizer.h
│ │ │ │ ├── line_search_minimizer_test.cc
│ │ │ │ ├── line_search_preprocessor.cc
│ │ │ │ ├── line_search_preprocessor.h
│ │ │ │ ├── line_search_preprocessor_test.cc
│ │ │ │ ├── local_parameterization.cc
│ │ │ │ ├── local_parameterization_test.cc
│ │ │ │ ├── loss_function.cc
│ │ │ │ ├── loss_function_test.cc
│ │ │ │ ├── low_rank_inverse_hessian.cc
│ │ │ │ ├── low_rank_inverse_hessian.h
│ │ │ │ ├── map_util.h
│ │ │ │ ├── miniglog
│ │ │ │ │ └── glog
│ │ │ │ │ ├── logging.cc
│ │ │ │ │ └── logging.h
│ │ │ │ ├── minimizer.cc
│ │ │ │ ├── minimizer.h
│ │ │ │ ├── minimizer_test.cc
│ │ │ │ ├── mutex.h
│ │ │ │ ├── normal_prior.cc
│ │ │ │ ├── normal_prior_test.cc
│ │ │ │ ├── numeric_diff_cost_function_test.cc
│ │ │ │ ├── numeric_diff_test_utils.cc
│ │ │ │ ├── numeric_diff_test_utils.h
│ │ │ │ ├── ordered_groups_test.cc
│ │ │ │ ├── parallel_for_cxx.cc
│ │ │ │ ├── parallel_for.h
│ │ │ │ ├── parallel_for_tbb.cc
│ │ │ │ ├── parallel_for_test.cc
│ │ │ │ ├── parallel_utils.cc
│ │ │ │ ├── parallel_utils.h
│ │ │ │ ├── parallel_utils_test.cc
│ │ │ │ ├── parameter_block.h
│ │ │ │ ├── parameter_block_ordering.cc
│ │ │ │ ├── parameter_block_ordering.h
│ │ │ │ ├── parameter_block_ordering_test.cc
│ │ │ │ ├── parameter_block_test.cc
│ │ │ │ ├── partitioned_matrix_view.cc
│ │ │ │ ├── partitioned_matrix_view.h
│ │ │ │ ├── partitioned_matrix_view_impl.h
│ │ │ │ ├── partitioned_matrix_view_template.py
│ │ │ │ ├── partitioned_matrix_view_test.cc
│ │ │ │ ├── polynomial.cc
│ │ │ │ ├── polynomial.h
│ │ │ │ ├── polynomial_test.cc
│ │ │ │ ├── preconditioner.cc
│ │ │ │ ├── preconditioner.h
│ │ │ │ ├── preprocessor.cc
│ │ │ │ ├── preprocessor.h
│ │ │ │ ├── problem.cc
│ │ │ │ ├── problem_impl.cc
│ │ │ │ ├── problem_impl.h
│ │ │ │ ├── problem_test.cc
│ │ │ │ ├── program.cc
│ │ │ │ ├── program_evaluator.h
│ │ │ │ ├── program.h
│ │ │ │ ├── program_test.cc
│ │ │ │ ├── random.h
│ │ │ │ ├── reorder_program.cc
│ │ │ │ ├── reorder_program.h
│ │ │ │ ├── reorder_program_test.cc
│ │ │ │ ├── residual_block.cc
│ │ │ │ ├── residual_block.h
│ │ │ │ ├── residual_block_test.cc
│ │ │ │ ├── residual_block_utils.cc
│ │ │ │ ├── residual_block_utils.h
│ │ │ │ ├── residual_block_utils_test.cc
│ │ │ │ ├── rotation_test.cc
│ │ │ │ ├── schur_complement_solver.cc
│ │ │ │ ├── schur_complement_solver.h
│ │ │ │ ├── schur_complement_solver_test.cc
│ │ │ │ ├── schur_eliminator.cc
│ │ │ │ ├── schur_eliminator.h
│ │ │ │ ├── schur_eliminator_impl.h
│ │ │ │ ├── schur_eliminator_template.py
│ │ │ │ ├── schur_eliminator_test.cc
│ │ │ │ ├── schur_jacobi_preconditioner.cc
│ │ │ │ ├── schur_jacobi_preconditioner.h
│ │ │ │ ├── schur_templates.cc
│ │ │ │ ├── schur_templates.h
│ │ │ │ ├── scoped_thread_token.h
│ │ │ │ ├── scratch_evaluate_preparer.cc
│ │ │ │ ├── scratch_evaluate_preparer.h
│ │ │ │ ├── single_linkage_clustering.cc
│ │ │ │ ├── single_linkage_clustering.h
│ │ │ │ ├── single_linkage_clustering_test.cc
│ │ │ │ ├── small_blas_gemm_benchmark.cc
│ │ │ │ ├── small_blas_gemv_benchmark.cc
│ │ │ │ ├── small_blas.h
│ │ │ │ ├── small_blas_test.cc
│ │ │ │ ├── solver.cc
│ │ │ │ ├── solver_test.cc
│ │ │ │ ├── solver_utils.cc
│ │ │ │ ├── solver_utils.h
│ │ │ │ ├── sparse_cholesky.cc
│ │ │ │ ├── sparse_cholesky.h
│ │ │ │ ├── sparse_cholesky_test.cc
│ │ │ │ ├── sparse_matrix.cc
│ │ │ │ ├── sparse_matrix.h
│ │ │ │ ├── sparse_normal_cholesky_solver.cc
│ │ │ │ ├── sparse_normal_cholesky_solver.h
│ │ │ │ ├── sparse_normal_cholesky_solver_test.cc
│ │ │ │ ├── split.cc
│ │ │ │ ├── split.h
│ │ │ │ ├── stl_util.h
│ │ │ │ ├── stringprintf.cc
│ │ │ │ ├── stringprintf.h
│ │ │ │ ├── subset_preconditioner.cc
│ │ │ │ ├── subset_preconditioner.h
│ │ │ │ ├── subset_preconditioner_test.cc
│ │ │ │ ├── suitesparse.cc
│ │ │ │ ├── suitesparse.h
│ │ │ │ ├── system_test.cc
│ │ │ │ ├── test_util.cc
│ │ │ │ ├── test_util.h
│ │ │ │ ├── thread_pool.cc
│ │ │ │ ├── thread_pool.h
│ │ │ │ ├── thread_pool_test.cc
│ │ │ │ ├── thread_token_provider.cc
│ │ │ │ ├── thread_token_provider.h
│ │ │ │ ├── tiny_solver_autodiff_function_test.cc
│ │ │ │ ├── tiny_solver_cost_function_adapter_test.cc
│ │ │ │ ├── tiny_solver_test.cc
│ │ │ │ ├── triplet_sparse_matrix.cc
│ │ │ │ ├── triplet_sparse_matrix.h
│ │ │ │ ├── triplet_sparse_matrix_test.cc
│ │ │ │ ├── trust_region_minimizer.cc
│ │ │ │ ├── trust_region_minimizer.h
│ │ │ │ ├── trust_region_minimizer_test.cc
│ │ │ │ ├── trust_region_preprocessor.cc
│ │ │ │ ├── trust_region_preprocessor.h
│ │ │ │ ├── trust_region_preprocessor_test.cc
│ │ │ │ ├── trust_region_step_evaluator.cc
│ │ │ │ ├── trust_region_step_evaluator.h
│ │ │ │ ├── trust_region_strategy.cc
│ │ │ │ ├── trust_region_strategy.h
│ │ │ │ ├── types.cc
│ │ │ │ ├── visibility_based_preconditioner.cc
│ │ │ │ ├── visibility_based_preconditioner.h
│ │ │ │ ├── visibility_based_preconditioner_test.cc
│ │ │ │ ├── visibility.cc
│ │ │ │ ├── visibility.h
│ │ │ │ ├── visibility_test.cc
│ │ │ │ ├── wall_time.cc
│ │ │ │ └── wall_time.h
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── assert_ndk_version.sh
│ │ │ ├── LICENSE
│ │ │ ├── package.xml
│ │ │ ├── README.md
│ │ │ ├── scripts
│ │ │ │ ├── make_docs.py
│ │ │ │ └── make_release
│ │ │ └── WORKSPACE
│ │ └── pax_global_header
│ ├── ceres-solver-1.14.0.tar.gz
│ ├── ceres-solver-build
│ │ ├── ALL_BUILD.vcxproj
│ │ ├── ALL_BUILD.vcxproj.filters
│ │ ├── ALL_BUILD.vcxproj.user
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── bundle_adjuster.exe
│ │ │ │ ├── bundle_adjuster.ilk
│ │ │ │ ├── bundle_adjuster.pdb
│ │ │ │ ├── ceres-debug.dll
│ │ │ │ ├── ceres-debug.ilk
│ │ │ │ ├── ceres-debug.pdb
│ │ │ │ ├── circle_fit.exe
│ │ │ │ ├── circle_fit.ilk
│ │ │ │ ├── circle_fit.pdb
│ │ │ │ ├── curve_fitting_c.exe
│ │ │ │ ├── curve_fitting_c.ilk
│ │ │ │ ├── curve_fitting_c.pdb
│ │ │ │ ├── curve_fitting.exe
│ │ │ │ ├── curve_fitting.ilk
│ │ │ │ ├── curve_fitting.pdb
│ │ │ │ ├── denoising.exe
│ │ │ │ ├── denoising.ilk
│ │ │ │ ├── denoising.pdb
│ │ │ │ ├── ellipse_approximation.exe
│ │ │ │ ├── ellipse_approximation.ilk
│ │ │ │ ├── ellipse_approximation.pdb
│ │ │ │ ├── helloworld_analytic_diff.exe
│ │ │ │ ├── helloworld_analytic_diff.ilk
│ │ │ │ ├── helloworld_analytic_diff.pdb
│ │ │ │ ├── helloworld.exe
│ │ │ │ ├── helloworld.ilk
│ │ │ │ ├── helloworld_numeric_diff.exe
│ │ │ │ ├── helloworld_numeric_diff.ilk
│ │ │ │ ├── helloworld_numeric_diff.pdb
│ │ │ │ ├── helloworld.pdb
│ │ │ │ ├── libmv_bundle_adjuster.exe
│ │ │ │ ├── libmv_bundle_adjuster.ilk
│ │ │ │ ├── libmv_bundle_adjuster.pdb
│ │ │ │ ├── libmv_homography.exe
│ │ │ │ ├── libmv_homography.ilk
│ │ │ │ ├── libmv_homography.pdb
│ │ │ │ ├── more_garbow_hillstrom.exe
│ │ │ │ ├── more_garbow_hillstrom.ilk
│ │ │ │ ├── more_garbow_hillstrom.pdb
│ │ │ │ ├── nist.exe
│ │ │ │ ├── nist.ilk
│ │ │ │ ├── nist.pdb
│ │ │ │ ├── pose_graph_2d.exe
│ │ │ │ ├── pose_graph_2d.ilk
│ │ │ │ ├── pose_graph_2d.pdb
│ │ │ │ ├── pose_graph_3d.exe
│ │ │ │ ├── pose_graph_3d.ilk
│ │ │ │ ├── pose_graph_3d.pdb
│ │ │ │ ├── powell.exe
│ │ │ │ ├── powell.ilk
│ │ │ │ ├── powell.pdb
│ │ │ │ ├── robot_pose_mle.exe
│ │ │ │ ├── robot_pose_mle.ilk
│ │ │ │ ├── robot_pose_mle.pdb
│ │ │ │ ├── robust_curve_fitting.exe
│ │ │ │ ├── robust_curve_fitting.ilk
│ │ │ │ ├── robust_curve_fitting.pdb
│ │ │ │ ├── rosenbrock.exe
│ │ │ │ ├── rosenbrock.ilk
│ │ │ │ ├── rosenbrock.pdb
│ │ │ │ ├── sampled_function.exe
│ │ │ │ ├── sampled_function.ilk
│ │ │ │ ├── sampled_function.pdb
│ │ │ │ ├── simple_bundle_adjuster.exe
│ │ │ │ ├── simple_bundle_adjuster.ilk
│ │ │ │ └── simple_bundle_adjuster.pdb
│ │ │ └── Release
│ │ │ ├── bundle_adjuster.exe
│ │ │ ├── ceres.dll
│ │ │ ├── circle_fit.exe
│ │ │ ├── curve_fitting_c.exe
│ │ │ ├── curve_fitting.exe
│ │ │ ├── denoising.exe
│ │ │ ├── ellipse_approximation.exe
│ │ │ ├── helloworld_analytic_diff.exe
│ │ │ ├── helloworld.exe
│ │ │ ├── helloworld_numeric_diff.exe
│ │ │ ├── libmv_bundle_adjuster.exe
│ │ │ ├── libmv_homography.exe
│ │ │ ├── more_garbow_hillstrom.exe
│ │ │ ├── nist.exe
│ │ │ ├── pose_graph_2d.exe
│ │ │ ├── pose_graph_3d.exe
│ │ │ ├── powell.exe
│ │ │ ├── robot_pose_mle.exe
│ │ │ ├── robust_curve_fitting.exe
│ │ │ ├── rosenbrock.exe
│ │ │ ├── sampled_function.exe
│ │ │ └── simple_bundle_adjuster.exe
│ │ ├── CeresConfig-install.cmake
│ │ ├── CeresConfigVersion.cmake
│ │ ├── Ceres.sln
│ │ ├── cmake
│ │ │ └── uninstall.cmake
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 17ea5b71da159ad348e63a8a6349b099
│ │ │ │ ├── generate.stamp.rule
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ ├── RUN_TESTS_force.rule
│ │ │ │ └── uninstall.rule
│ │ │ ├── 267924dbe98c516b556160a601917831
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 3.19.0-rc1
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ ├── CMakeCCompilerId.c
│ │ │ │ │ ├── CompilerIdC.exe
│ │ │ │ │ ├── CompilerIdC.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCCompilerId.obj
│ │ │ │ │ │ └── CompilerIdC.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdC.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ │ ├── CompilerIdCXX.exe
│ │ │ │ │ ├── CompilerIdCXX.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCXXCompilerId.obj
│ │ │ │ │ │ └── CompilerIdCXX.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ ├── VCTargetsPath.vcxproj
│ │ │ │ └── x64
│ │ │ │ └── Debug
│ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ ├── a376bf44146282647a06822b30b8f197
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── af1080d96fb91ee4c18c86cb0df04a16
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── c4ea6edca68692e86fbec44b4bef74a3
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── c9d2d9ffa2bbe63492493ca28605f404
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeError.log
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ ├── d6b37b0f85bac1b4b1b8ae4ce96f7185
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── Export
│ │ │ │ └── CMake
│ │ │ │ ├── CeresTargets.cmake
│ │ │ │ ├── CeresTargets-debug.cmake
│ │ │ │ ├── CeresTargets-minsizerel.cmake
│ │ │ │ ├── CeresTargets-release.cmake
│ │ │ │ └── CeresTargets-relwithdebinfo.cmake
│ │ │ ├── FindOpenMP
│ │ │ │ ├── ompver_C.bin
│ │ │ │ ├── ompver_CXX.bin
│ │ │ │ ├── OpenMPCheckVersion.c
│ │ │ │ ├── OpenMPCheckVersion.cpp
│ │ │ │ ├── OpenMPTryFlag.c
│ │ │ │ └── OpenMPTryFlag.cpp
│ │ │ ├── generate.stamp
│ │ │ ├── generate.stamp.depend
│ │ │ ├── generate.stamp.list
│ │ │ └── TargetDirectories.txt
│ │ ├── cmake_install.cmake
│ │ ├── config
│ │ │ └── ceres
│ │ │ └── internal
│ │ │ └── config.h
│ │ ├── CTestTestfile.cmake
│ │ ├── examples
│ │ │ ├── bundle_adjuster.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── bal_problem.obj
│ │ │ │ │ ├── bundle_adjuster.Build.CppClean.log
│ │ │ │ │ ├── bundle_adjuster.log
│ │ │ │ │ ├── bundle_adjuster.obj
│ │ │ │ │ ├── bundle_adjuster.tlog
│ │ │ │ │ │ ├── bundle_adjuster.lastbuildstate
│ │ │ │ │ │ ├── bundle_adjuster.write.1u.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── bal_problem.obj
│ │ │ │ ├── bundle_adjuster.log
│ │ │ │ ├── bundle_adjuster.obj
│ │ │ │ └── bundle_adjuster.tlog
│ │ │ │ ├── bundle_adjuster.lastbuildstate
│ │ │ │ ├── bundle_adjuster.write.1u.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── bundle_adjuster.vcxproj
│ │ │ ├── bundle_adjuster.vcxproj.filters
│ │ │ ├── bundle_adjuster.vcxproj.user
│ │ │ ├── circle_fit.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── circle_fit.Build.CppClean.log
│ │ │ │ │ ├── circle_fit.log
│ │ │ │ │ ├── circle_fit.obj
│ │ │ │ │ ├── circle_fit.tlog
│ │ │ │ │ │ ├── circle_fit.lastbuildstate
│ │ │ │ │ │ ├── circle_fit.write.1u.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── circle_fit.log
│ │ │ │ ├── circle_fit.obj
│ │ │ │ └── circle_fit.tlog
│ │ │ │ ├── circle_fit.lastbuildstate
│ │ │ │ ├── circle_fit.write.1u.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── circle_fit.vcxproj
│ │ │ ├── circle_fit.vcxproj.filters
│ │ │ ├── circle_fit.vcxproj.user
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── curve_fitting_c.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── curve_fitting_c.Build.CppClean.log
│ │ │ │ │ ├── curve_fitting_c.log
│ │ │ │ │ ├── curve_fitting_c.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── curve_fitting_c.lastbuildstate
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── curve_fitting.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── curve_fitting_c.log
│ │ │ │ ├── curve_fitting_c.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── curve_fitting_c.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ └── curve_fitting.obj
│ │ │ ├── curve_fitting_c.vcxproj
│ │ │ ├── curve_fitting_c.vcxproj.filters
│ │ │ ├── curve_fitting_c.vcxproj.user
│ │ │ ├── curve_fitting.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── curve_fitting.Build.CppClean.log
│ │ │ │ │ ├── curve_fitting.log
│ │ │ │ │ ├── curve_fitting.obj
│ │ │ │ │ ├── curve_fitting.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── curve_fitting.lastbuildstate
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── curve_fitting.log
│ │ │ │ ├── curve_fitting.obj
│ │ │ │ └── curve_fitting.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── curve_fitting.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── curve_fitting.vcxproj
│ │ │ ├── curve_fitting.vcxproj.filters
│ │ │ ├── curve_fitting.vcxproj.user
│ │ │ ├── denoising.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── denoising.Build.CppClean.log
│ │ │ │ │ ├── denoising.log
│ │ │ │ │ ├── denoising.obj
│ │ │ │ │ ├── denoising.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── denoising.lastbuildstate
│ │ │ │ │ │ ├── denoising.write.1u.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── fields_of_experts.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── denoising.log
│ │ │ │ ├── denoising.obj
│ │ │ │ ├── denoising.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── denoising.lastbuildstate
│ │ │ │ │ ├── denoising.write.1u.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ └── fields_of_experts.obj
│ │ │ ├── denoising.vcxproj
│ │ │ ├── denoising.vcxproj.filters
│ │ │ ├── denoising.vcxproj.user
│ │ │ ├── ellipse_approximation.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ellipse_.096C6EA1.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── ellipse_approximation.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── ellipse_approximation.Build.CppClean.log
│ │ │ │ │ ├── ellipse_approximation.log
│ │ │ │ │ ├── ellipse_approximation.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── ellipse_.096C6EA1.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── ellipse_approximation.lastbuildstate
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── ellipse_approximation.log
│ │ │ │ └── ellipse_approximation.obj
│ │ │ ├── ellipse_approximation.vcxproj
│ │ │ ├── ellipse_approximation.vcxproj.filters
│ │ │ ├── ellipse_approximation.vcxproj.user
│ │ │ ├── helloworld_analytic_diff.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── hellowor.65E1AA7C.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── helloworld_analytic_diff.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── helloworld_analytic_diff.Build.CppClean.log
│ │ │ │ │ ├── helloworld_analytic_diff.log
│ │ │ │ │ ├── helloworld_analytic_diff.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── hellowor.65E1AA7C.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── helloworld_analytic_diff.lastbuildstate
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── helloworld_analytic_diff.log
│ │ │ │ └── helloworld_analytic_diff.obj
│ │ │ ├── helloworld_analytic_diff.vcxproj
│ │ │ ├── helloworld_analytic_diff.vcxproj.filters
│ │ │ ├── helloworld_analytic_diff.vcxproj.user
│ │ │ ├── helloworld.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── helloworld.Build.CppClean.log
│ │ │ │ │ ├── helloworld.log
│ │ │ │ │ ├── helloworld.obj
│ │ │ │ │ ├── helloworld.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── helloworld.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── helloworld.log
│ │ │ │ ├── helloworld.obj
│ │ │ │ └── helloworld.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── helloworld.lastbuildstate
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── helloworld_numeric_diff.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── hellowor.2EB3BEBE.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── helloworld_numeric_diff.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── helloworld_numeric_diff.Build.CppClean.log
│ │ │ │ │ ├── helloworld_numeric_diff.log
│ │ │ │ │ ├── helloworld_numeric_diff.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── hellowor.2EB3BEBE.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── helloworld_numeric_diff.lastbuildstate
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── helloworld_numeric_diff.log
│ │ │ │ └── helloworld_numeric_diff.obj
│ │ │ ├── helloworld_numeric_diff.vcxproj
│ │ │ ├── helloworld_numeric_diff.vcxproj.filters
│ │ │ ├── helloworld_numeric_diff.vcxproj.user
│ │ │ ├── helloworld.vcxproj
│ │ │ ├── helloworld.vcxproj.filters
│ │ │ ├── helloworld.vcxproj.user
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── libmv_bundle_adjuster.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── libmv_bu.3266D3CF.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── libmv_bundle_adjuster.lastbuildstate
│ │ │ │ │ │ ├── libmv_bundle_adjuster.write.1u.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── libmv_bundle_adjuster.Build.CppClean.log
│ │ │ │ │ ├── libmv_bundle_adjuster.log
│ │ │ │ │ ├── libmv_bundle_adjuster.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── libmv_bu.3266D3CF.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── libmv_bundle_adjuster.lastbuildstate
│ │ │ │ │ ├── libmv_bundle_adjuster.write.1u.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── libmv_bundle_adjuster.log
│ │ │ │ └── libmv_bundle_adjuster.obj
│ │ │ ├── libmv_bundle_adjuster.vcxproj
│ │ │ ├── libmv_bundle_adjuster.vcxproj.filters
│ │ │ ├── libmv_bundle_adjuster.vcxproj.user
│ │ │ ├── libmv_homography.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── libmv_homography.Build.CppClean.log
│ │ │ │ │ ├── libmv_homography.log
│ │ │ │ │ ├── libmv_homography.obj
│ │ │ │ │ ├── libmv_homography.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── libmv_homography.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── libmv_homography.log
│ │ │ │ ├── libmv_homography.obj
│ │ │ │ └── libmv_homography.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── libmv_homography.lastbuildstate
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── libmv_homography.vcxproj
│ │ │ ├── libmv_homography.vcxproj.filters
│ │ │ ├── libmv_homography.vcxproj.user
│ │ │ ├── more_garbow_hillstrom.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── more_gar.607DFCC8.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── more_garbow_hillstrom.lastbuildstate
│ │ │ │ │ │ └── more_garbow_hillstrom.write.1u.tlog
│ │ │ │ │ ├── more_garbow_hillstrom.Build.CppClean.log
│ │ │ │ │ ├── more_garbow_hillstrom.log
│ │ │ │ │ ├── more_garbow_hillstrom.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── more_gar.607DFCC8.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ ├── more_garbow_hillstrom.lastbuildstate
│ │ │ │ │ └── more_garbow_hillstrom.write.1u.tlog
│ │ │ │ ├── more_garbow_hillstrom.log
│ │ │ │ └── more_garbow_hillstrom.obj
│ │ │ ├── more_garbow_hillstrom.vcxproj
│ │ │ ├── more_garbow_hillstrom.vcxproj.filters
│ │ │ ├── more_garbow_hillstrom.vcxproj.user
│ │ │ ├── nist.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── nist.Build.CppClean.log
│ │ │ │ │ ├── nist.log
│ │ │ │ │ ├── nist.obj
│ │ │ │ │ ├── nist.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── nist.lastbuildstate
│ │ │ │ │ │ └── nist.write.1u.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── nist.log
│ │ │ │ ├── nist.obj
│ │ │ │ └── nist.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ ├── nist.lastbuildstate
│ │ │ │ └── nist.write.1u.tlog
│ │ │ ├── nist.vcxproj
│ │ │ ├── nist.vcxproj.filters
│ │ │ ├── nist.vcxproj.user
│ │ │ ├── powell.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── powell.Build.CppClean.log
│ │ │ │ │ ├── powell.log
│ │ │ │ │ ├── powell.obj
│ │ │ │ │ ├── powell.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── powell.lastbuildstate
│ │ │ │ │ │ └── powell.write.1u.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── powell.log
│ │ │ │ ├── powell.obj
│ │ │ │ └── powell.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ ├── powell.lastbuildstate
│ │ │ │ └── powell.write.1u.tlog
│ │ │ ├── powell.vcxproj
│ │ │ ├── powell.vcxproj.filters
│ │ │ ├── powell.vcxproj.user
│ │ │ ├── robot_pose_mle.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── robot_pose_mle.Build.CppClean.log
│ │ │ │ │ ├── robot_pose_mle.log
│ │ │ │ │ ├── robot_pose_mle.obj
│ │ │ │ │ ├── robot_pose_mle.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── robot_pose_mle.lastbuildstate
│ │ │ │ │ │ └── robot_pose_mle.write.1u.tlog
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── robot_pose_mle.log
│ │ │ │ ├── robot_pose_mle.obj
│ │ │ │ └── robot_pose_mle.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ ├── robot_pose_mle.lastbuildstate
│ │ │ │ └── robot_pose_mle.write.1u.tlog
│ │ │ ├── robot_pose_mle.vcxproj
│ │ │ ├── robot_pose_mle.vcxproj.filters
│ │ │ ├── robot_pose_mle.vcxproj.user
│ │ │ ├── robust_curve_fitting.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── robust_c.DDFAA91E.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ └── robust_curve_fitting.lastbuildstate
│ │ │ │ │ ├── robust_curve_fitting.Build.CppClean.log
│ │ │ │ │ ├── robust_curve_fitting.log
│ │ │ │ │ ├── robust_curve_fitting.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── robust_c.DDFAA91E.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ └── robust_curve_fitting.lastbuildstate
│ │ │ │ ├── robust_curve_fitting.log
│ │ │ │ └── robust_curve_fitting.obj
│ │ │ ├── robust_curve_fitting.vcxproj
│ │ │ ├── robust_curve_fitting.vcxproj.filters
│ │ │ ├── robust_curve_fitting.vcxproj.user
│ │ │ ├── rosenbrock.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── rosenbrock.Build.CppClean.log
│ │ │ │ │ ├── rosenbrock.log
│ │ │ │ │ ├── rosenbrock.obj
│ │ │ │ │ ├── rosenbrock.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ └── rosenbrock.lastbuildstate
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── rosenbrock.log
│ │ │ │ ├── rosenbrock.obj
│ │ │ │ └── rosenbrock.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ └── rosenbrock.lastbuildstate
│ │ │ ├── rosenbrock.vcxproj
│ │ │ ├── rosenbrock.vcxproj.filters
│ │ │ ├── rosenbrock.vcxproj.user
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ ├── sampled_function
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ │ ├── sampled_function.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── sampled_function.Build.CppClean.log
│ │ │ │ │ │ ├── sampled_function.log
│ │ │ │ │ │ ├── sampled_function.obj
│ │ │ │ │ │ ├── sampled_function.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ └── sampled_function.lastbuildstate
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── sampled_function.log
│ │ │ │ │ ├── sampled_function.obj
│ │ │ │ │ └── sampled_function.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ └── sampled_function.lastbuildstate
│ │ │ │ ├── sampled_function.vcxproj
│ │ │ │ ├── sampled_function.vcxproj.filters
│ │ │ │ └── sampled_function.vcxproj.user
│ │ │ ├── simple_bundle_adjuster.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── simple_b.3CE35EA6.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ └── simple_bundle_adjuster.lastbuildstate
│ │ │ │ │ ├── simple_bundle_adjuster.Build.CppClean.log
│ │ │ │ │ ├── simple_bundle_adjuster.log
│ │ │ │ │ ├── simple_bundle_adjuster.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ └── Release
│ │ │ │ ├── simple_b.3CE35EA6.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ └── simple_bundle_adjuster.lastbuildstate
│ │ │ │ ├── simple_bundle_adjuster.log
│ │ │ │ └── simple_bundle_adjuster.obj
│ │ │ ├── simple_bundle_adjuster.vcxproj
│ │ │ ├── simple_bundle_adjuster.vcxproj.filters
│ │ │ ├── simple_bundle_adjuster.vcxproj.user
│ │ │ └── slam
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── pose_graph_2d
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── pose_graph_2d.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── pose_graph_2d.Build.CppClean.log
│ │ │ │ │ │ ├── pose_graph_2d.log
│ │ │ │ │ │ ├── pose_graph_2d.obj
│ │ │ │ │ │ ├── pose_graph_2d.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ ├── pose_graph_2d.lastbuildstate
│ │ │ │ │ │ │ └── pose_graph_2d.write.1u.tlog
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── pose_graph_2d.log
│ │ │ │ │ ├── pose_graph_2d.obj
│ │ │ │ │ └── pose_graph_2d.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ ├── pose_graph_2d.lastbuildstate
│ │ │ │ │ └── pose_graph_2d.write.1u.tlog
│ │ │ │ ├── pose_graph_2d.vcxproj
│ │ │ │ ├── pose_graph_2d.vcxproj.filters
│ │ │ │ ├── pose_graph_2d.vcxproj.user
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ ├── pose_graph_3d
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── pose_graph_3d.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── pose_graph_3d.Build.CppClean.log
│ │ │ │ │ │ ├── pose_graph_3d.log
│ │ │ │ │ │ ├── pose_graph_3d.obj
│ │ │ │ │ │ ├── pose_graph_3d.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ ├── pose_graph_3d.lastbuildstate
│ │ │ │ │ │ │ └── pose_graph_3d.write.1u.tlog
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── pose_graph_3d.log
│ │ │ │ │ ├── pose_graph_3d.obj
│ │ │ │ │ └── pose_graph_3d.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ ├── pose_graph_3d.lastbuildstate
│ │ │ │ │ └── pose_graph_3d.write.1u.tlog
│ │ │ │ ├── pose_graph_3d.vcxproj
│ │ │ │ ├── pose_graph_3d.vcxproj.filters
│ │ │ │ ├── pose_graph_3d.vcxproj.user
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── install_manifest.txt
│ │ ├── INSTALL.vcxproj
│ │ ├── INSTALL.vcxproj.filters
│ │ ├── INSTALL.vcxproj.user
│ │ ├── internal
│ │ │ └── ceres
│ │ │ ├── ceres.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── array_utils.obj
│ │ │ │ │ ├── blas.obj
│ │ │ │ │ ├── block_evaluate_preparer.obj
│ │ │ │ │ ├── block_jacobian_writer.obj
│ │ │ │ │ ├── block_jacobi_preconditioner.obj
│ │ │ │ │ ├── block_random_access_dense_matrix.obj
│ │ │ │ │ ├── block_random_access_diagonal_matrix.obj
│ │ │ │ │ ├── block_random_access_matrix.obj
│ │ │ │ │ ├── block_random_access_sparse_matrix.obj
│ │ │ │ │ ├── block_sparse_matrix.obj
│ │ │ │ │ ├── block_structure.obj
│ │ │ │ │ ├── callbacks.obj
│ │ │ │ │ ├── canonical_views_clustering.obj
│ │ │ │ │ ├── c_api.obj
│ │ │ │ │ ├── ceres-debug.Build.CppClean.log
│ │ │ │ │ ├── ceres.log
│ │ │ │ │ ├── ceres.tlog
│ │ │ │ │ │ ├── ceres.lastbuildstate
│ │ │ │ │ │ ├── ceres.write.1u.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── cgnr_solver.obj
│ │ │ │ │ ├── compressed_col_sparse_matrix_utils.obj
│ │ │ │ │ ├── compressed_row_jacobian_writer.obj
│ │ │ │ │ ├── compressed_row_sparse_matrix.obj
│ │ │ │ │ ├── conditioned_cost_function.obj
│ │ │ │ │ ├── conjugate_gradients_solver.obj
│ │ │ │ │ ├── context_impl.obj
│ │ │ │ │ ├── context.obj
│ │ │ │ │ ├── coordinate_descent_minimizer.obj
│ │ │ │ │ ├── corrector.obj
│ │ │ │ │ ├── covariance_impl.obj
│ │ │ │ │ ├── covariance.obj
│ │ │ │ │ ├── cxsparse.obj
│ │ │ │ │ ├── dense_normal_cholesky_solver.obj
│ │ │ │ │ ├── dense_qr_solver.obj
│ │ │ │ │ ├── dense_sparse_matrix.obj
│ │ │ │ │ ├── detect_structure.obj
│ │ │ │ │ ├── dogleg_strategy.obj
│ │ │ │ │ ├── dynamic_compressed_row_jacobian_writer.obj
│ │ │ │ │ ├── dynamic_compressed_row_sparse_matrix.obj
│ │ │ │ │ ├── dynamic_sparse_normal_cholesky_solver.obj
│ │ │ │ │ ├── eigensparse.obj
│ │ │ │ │ ├── evaluator.obj
│ │ │ │ │ ├── file.obj
│ │ │ │ │ ├── function_sample.obj
│ │ │ │ │ ├── gradient_checker.obj
│ │ │ │ │ ├── gradient_checking_cost_function.obj
│ │ │ │ │ ├── gradient_problem.obj
│ │ │ │ │ ├── gradient_problem_solver.obj
│ │ │ │ │ ├── implicit_schur_complement.obj
│ │ │ │ │ ├── inner_product_computer.obj
│ │ │ │ │ ├── is_close.obj
│ │ │ │ │ ├── iterative_schur_complement_solver.obj
│ │ │ │ │ ├── lapack.obj
│ │ │ │ │ ├── levenberg_marquardt_strategy.obj
│ │ │ │ │ ├── linear_least_squares_problems.obj
│ │ │ │ │ ├── linear_operator.obj
│ │ │ │ │ ├── linear_solver.obj
│ │ │ │ │ ├── line_search_direction.obj
│ │ │ │ │ ├── line_search_minimizer.obj
│ │ │ │ │ ├── line_search.obj
│ │ │ │ │ ├── line_search_preprocessor.obj
│ │ │ │ │ ├── local_parameterization.obj
│ │ │ │ │ ├── loss_function.obj
│ │ │ │ │ ├── low_rank_inverse_hessian.obj
│ │ │ │ │ ├── minimizer.obj
│ │ │ │ │ ├── normal_prior.obj
│ │ │ │ │ ├── parallel_for_cxx.obj
│ │ │ │ │ ├── parallel_for_tbb.obj
│ │ │ │ │ ├── parallel_utils.obj
│ │ │ │ │ ├── parameter_block_ordering.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_2_2.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_2_3.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_2_4.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_2_d.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_3_3.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_3_4.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_3_6.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_3_9.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_3_d.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_3.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_4.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_6.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_8.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_9.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_4_d.obj
│ │ │ │ │ ├── partitioned_matrix_view_2_d_d.obj
│ │ │ │ │ ├── partitioned_matrix_view_4_4_2.obj
│ │ │ │ │ ├── partitioned_matrix_view_4_4_3.obj
│ │ │ │ │ ├── partitioned_matrix_view_4_4_4.obj
│ │ │ │ │ ├── partitioned_matrix_view_4_4_d.obj
│ │ │ │ │ ├── partitioned_matrix_view_d_d_d.obj
│ │ │ │ │ ├── partitioned_matrix_view.obj
│ │ │ │ │ ├── polynomial.obj
│ │ │ │ │ ├── preconditioner.obj
│ │ │ │ │ ├── preprocessor.obj
│ │ │ │ │ ├── problem_impl.obj
│ │ │ │ │ ├── problem.obj
│ │ │ │ │ ├── program.obj
│ │ │ │ │ ├── reorder_program.obj
│ │ │ │ │ ├── residual_block.obj
│ │ │ │ │ ├── residual_block_utils.obj
│ │ │ │ │ ├── schur_complement_solver.obj
│ │ │ │ │ ├── schur_eliminator_2_2_2.obj
│ │ │ │ │ ├── schur_eliminator_2_2_3.obj
│ │ │ │ │ ├── schur_eliminator_2_2_4.obj
│ │ │ │ │ ├── schur_eliminator_2_2_d.obj
│ │ │ │ │ ├── schur_eliminator_2_3_3.obj
│ │ │ │ │ ├── schur_eliminator_2_3_4.obj
│ │ │ │ │ ├── schur_eliminator_2_3_6.obj
│ │ │ │ │ ├── schur_eliminator_2_3_9.obj
│ │ │ │ │ ├── schur_eliminator_2_3_d.obj
│ │ │ │ │ ├── schur_eliminator_2_4_3.obj
│ │ │ │ │ ├── schur_eliminator_2_4_4.obj
│ │ │ │ │ ├── schur_eliminator_2_4_6.obj
│ │ │ │ │ ├── schur_eliminator_2_4_8.obj
│ │ │ │ │ ├── schur_eliminator_2_4_9.obj
│ │ │ │ │ ├── schur_eliminator_2_4_d.obj
│ │ │ │ │ ├── schur_eliminator_2_d_d.obj
│ │ │ │ │ ├── schur_eliminator_4_4_2.obj
│ │ │ │ │ ├── schur_eliminator_4_4_3.obj
│ │ │ │ │ ├── schur_eliminator_4_4_4.obj
│ │ │ │ │ ├── schur_eliminator_4_4_d.obj
│ │ │ │ │ ├── schur_eliminator_d_d_d.obj
│ │ │ │ │ ├── schur_eliminator.obj
│ │ │ │ │ ├── schur_jacobi_preconditioner.obj
│ │ │ │ │ ├── schur_templates.obj
│ │ │ │ │ ├── scratch_evaluate_preparer.obj
│ │ │ │ │ ├── single_linkage_clustering.obj
│ │ │ │ │ ├── solver.obj
│ │ │ │ │ ├── solver_utils.obj
│ │ │ │ │ ├── sparse_cholesky.obj
│ │ │ │ │ ├── sparse_matrix.obj
│ │ │ │ │ ├── sparse_normal_cholesky_solver.obj
│ │ │ │ │ ├── split.obj
│ │ │ │ │ ├── stringprintf.obj
│ │ │ │ │ ├── subset_preconditioner.obj
│ │ │ │ │ ├── suitesparse.obj
│ │ │ │ │ ├── thread_pool.obj
│ │ │ │ │ ├── thread_token_provider.obj
│ │ │ │ │ ├── triplet_sparse_matrix.obj
│ │ │ │ │ ├── trust_region_minimizer.obj
│ │ │ │ │ ├── trust_region_preprocessor.obj
│ │ │ │ │ ├── trust_region_step_evaluator.obj
│ │ │ │ │ ├── trust_region_strategy.obj
│ │ │ │ │ ├── types.obj
│ │ │ │ │ ├── vc141.pdb
│ │ │ │ │ ├── visibility_based_preconditioner.obj
│ │ │ │ │ ├── visibility.obj
│ │ │ │ │ └── wall_time.obj
│ │ │ │ └── Release
│ │ │ │ ├── array_utils.obj
│ │ │ │ ├── blas.obj
│ │ │ │ ├── block_evaluate_preparer.obj
│ │ │ │ ├── block_jacobian_writer.obj
│ │ │ │ ├── block_jacobi_preconditioner.obj
│ │ │ │ ├── block_random_access_dense_matrix.obj
│ │ │ │ ├── block_random_access_diagonal_matrix.obj
│ │ │ │ ├── block_random_access_matrix.obj
│ │ │ │ ├── block_random_access_sparse_matrix.obj
│ │ │ │ ├── block_sparse_matrix.obj
│ │ │ │ ├── block_structure.obj
│ │ │ │ ├── callbacks.obj
│ │ │ │ ├── canonical_views_clustering.obj
│ │ │ │ ├── c_api.obj
│ │ │ │ ├── ceres.log
│ │ │ │ ├── ceres.tlog
│ │ │ │ │ ├── ceres.lastbuildstate
│ │ │ │ │ ├── ceres.write.1u.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── cgnr_solver.obj
│ │ │ │ ├── compressed_col_sparse_matrix_utils.obj
│ │ │ │ ├── compressed_row_jacobian_writer.obj
│ │ │ │ ├── compressed_row_sparse_matrix.obj
│ │ │ │ ├── conditioned_cost_function.obj
│ │ │ │ ├── conjugate_gradients_solver.obj
│ │ │ │ ├── context_impl.obj
│ │ │ │ ├── context.obj
│ │ │ │ ├── coordinate_descent_minimizer.obj
│ │ │ │ ├── corrector.obj
│ │ │ │ ├── covariance_impl.obj
│ │ │ │ ├── covariance.obj
│ │ │ │ ├── cxsparse.obj
│ │ │ │ ├── dense_normal_cholesky_solver.obj
│ │ │ │ ├── dense_qr_solver.obj
│ │ │ │ ├── dense_sparse_matrix.obj
│ │ │ │ ├── detect_structure.obj
│ │ │ │ ├── dogleg_strategy.obj
│ │ │ │ ├── dynamic_compressed_row_jacobian_writer.obj
│ │ │ │ ├── dynamic_compressed_row_sparse_matrix.obj
│ │ │ │ ├── dynamic_sparse_normal_cholesky_solver.obj
│ │ │ │ ├── eigensparse.obj
│ │ │ │ ├── evaluator.obj
│ │ │ │ ├── file.obj
│ │ │ │ ├── function_sample.obj
│ │ │ │ ├── gradient_checker.obj
│ │ │ │ ├── gradient_checking_cost_function.obj
│ │ │ │ ├── gradient_problem.obj
│ │ │ │ ├── gradient_problem_solver.obj
│ │ │ │ ├── implicit_schur_complement.obj
│ │ │ │ ├── inner_product_computer.obj
│ │ │ │ ├── is_close.obj
│ │ │ │ ├── iterative_schur_complement_solver.obj
│ │ │ │ ├── lapack.obj
│ │ │ │ ├── levenberg_marquardt_strategy.obj
│ │ │ │ ├── linear_least_squares_problems.obj
│ │ │ │ ├── linear_operator.obj
│ │ │ │ ├── linear_solver.obj
│ │ │ │ ├── line_search_direction.obj
│ │ │ │ ├── line_search_minimizer.obj
│ │ │ │ ├── line_search.obj
│ │ │ │ ├── line_search_preprocessor.obj
│ │ │ │ ├── local_parameterization.obj
│ │ │ │ ├── loss_function.obj
│ │ │ │ ├── low_rank_inverse_hessian.obj
│ │ │ │ ├── minimizer.obj
│ │ │ │ ├── normal_prior.obj
│ │ │ │ ├── parallel_for_cxx.obj
│ │ │ │ ├── parallel_for_tbb.obj
│ │ │ │ ├── parallel_utils.obj
│ │ │ │ ├── parameter_block_ordering.obj
│ │ │ │ ├── partitioned_matrix_view_2_2_2.obj
│ │ │ │ ├── partitioned_matrix_view_2_2_3.obj
│ │ │ │ ├── partitioned_matrix_view_2_2_4.obj
│ │ │ │ ├── partitioned_matrix_view_2_2_d.obj
│ │ │ │ ├── partitioned_matrix_view_2_3_3.obj
│ │ │ │ ├── partitioned_matrix_view_2_3_4.obj
│ │ │ │ ├── partitioned_matrix_view_2_3_6.obj
│ │ │ │ ├── partitioned_matrix_view_2_3_9.obj
│ │ │ │ ├── partitioned_matrix_view_2_3_d.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_3.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_4.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_6.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_8.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_9.obj
│ │ │ │ ├── partitioned_matrix_view_2_4_d.obj
│ │ │ │ ├── partitioned_matrix_view_2_d_d.obj
│ │ │ │ ├── partitioned_matrix_view_4_4_2.obj
│ │ │ │ ├── partitioned_matrix_view_4_4_3.obj
│ │ │ │ ├── partitioned_matrix_view_4_4_4.obj
│ │ │ │ ├── partitioned_matrix_view_4_4_d.obj
│ │ │ │ ├── partitioned_matrix_view_d_d_d.obj
│ │ │ │ ├── partitioned_matrix_view.obj
│ │ │ │ ├── polynomial.obj
│ │ │ │ ├── preconditioner.obj
│ │ │ │ ├── preprocessor.obj
│ │ │ │ ├── problem_impl.obj
│ │ │ │ ├── problem.obj
│ │ │ │ ├── program.obj
│ │ │ │ ├── reorder_program.obj
│ │ │ │ ├── residual_block.obj
│ │ │ │ ├── residual_block_utils.obj
│ │ │ │ ├── schur_complement_solver.obj
│ │ │ │ ├── schur_eliminator_2_2_2.obj
│ │ │ │ ├── schur_eliminator_2_2_3.obj
│ │ │ │ ├── schur_eliminator_2_2_4.obj
│ │ │ │ ├── schur_eliminator_2_2_d.obj
│ │ │ │ ├── schur_eliminator_2_3_3.obj
│ │ │ │ ├── schur_eliminator_2_3_4.obj
│ │ │ │ ├── schur_eliminator_2_3_6.obj
│ │ │ │ ├── schur_eliminator_2_3_9.obj
│ │ │ │ ├── schur_eliminator_2_3_d.obj
│ │ │ │ ├── schur_eliminator_2_4_3.obj
│ │ │ │ ├── schur_eliminator_2_4_4.obj
│ │ │ │ ├── schur_eliminator_2_4_6.obj
│ │ │ │ ├── schur_eliminator_2_4_8.obj
│ │ │ │ ├── schur_eliminator_2_4_9.obj
│ │ │ │ ├── schur_eliminator_2_4_d.obj
│ │ │ │ ├── schur_eliminator_2_d_d.obj
│ │ │ │ ├── schur_eliminator_4_4_2.obj
│ │ │ │ ├── schur_eliminator_4_4_3.obj
│ │ │ │ ├── schur_eliminator_4_4_4.obj
│ │ │ │ ├── schur_eliminator_4_4_d.obj
│ │ │ │ ├── schur_eliminator_d_d_d.obj
│ │ │ │ ├── schur_eliminator.obj
│ │ │ │ ├── schur_jacobi_preconditioner.obj
│ │ │ │ ├── schur_templates.obj
│ │ │ │ ├── scratch_evaluate_preparer.obj
│ │ │ │ ├── single_linkage_clustering.obj
│ │ │ │ ├── solver.obj
│ │ │ │ ├── solver_utils.obj
│ │ │ │ ├── sparse_cholesky.obj
│ │ │ │ ├── sparse_matrix.obj
│ │ │ │ ├── sparse_normal_cholesky_solver.obj
│ │ │ │ ├── split.obj
│ │ │ │ ├── stringprintf.obj
│ │ │ │ ├── subset_preconditioner.obj
│ │ │ │ ├── suitesparse.obj
│ │ │ │ ├── thread_pool.obj
│ │ │ │ ├── thread_token_provider.obj
│ │ │ │ ├── triplet_sparse_matrix.obj
│ │ │ │ ├── trust_region_minimizer.obj
│ │ │ │ ├── trust_region_preprocessor.obj
│ │ │ │ ├── trust_region_step_evaluator.obj
│ │ │ │ ├── trust_region_strategy.obj
│ │ │ │ ├── types.obj
│ │ │ │ ├── visibility_based_preconditioner.obj
│ │ │ │ ├── visibility.obj
│ │ │ │ └── wall_time.obj
│ │ │ ├── ceres.vcxproj
│ │ │ ├── ceres.vcxproj.filters
│ │ │ ├── ceres.vcxproj.user
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── generated_bundle_adjustment_tests
│ │ │ │ └── CMakeFiles
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── lib
│ │ │ ├── Debug
│ │ │ │ ├── bundle_adjuster.exp
│ │ │ │ ├── bundle_adjuster.lib
│ │ │ │ ├── ceres-debug.exp
│ │ │ │ ├── ceres-debug.lib
│ │ │ │ ├── circle_fit.exp
│ │ │ │ ├── circle_fit.lib
│ │ │ │ ├── denoising.exp
│ │ │ │ ├── denoising.lib
│ │ │ │ ├── libmv_bundle_adjuster.exp
│ │ │ │ ├── libmv_bundle_adjuster.lib
│ │ │ │ ├── more_garbow_hillstrom.exp
│ │ │ │ ├── more_garbow_hillstrom.lib
│ │ │ │ ├── nist.exp
│ │ │ │ ├── nist.lib
│ │ │ │ ├── pose_graph_2d.exp
│ │ │ │ ├── pose_graph_2d.lib
│ │ │ │ ├── pose_graph_3d.exp
│ │ │ │ ├── pose_graph_3d.lib
│ │ │ │ ├── powell.exp
│ │ │ │ ├── powell.lib
│ │ │ │ ├── robot_pose_mle.exp
│ │ │ │ └── robot_pose_mle.lib
│ │ │ └── Release
│ │ │ ├── bundle_adjuster.exp
│ │ │ ├── bundle_adjuster.lib
│ │ │ ├── ceres.exp
│ │ │ ├── ceres.lib
│ │ │ ├── circle_fit.exp
│ │ │ ├── circle_fit.lib
│ │ │ ├── denoising.exp
│ │ │ ├── denoising.lib
│ │ │ ├── libmv_bundle_adjuster.exp
│ │ │ ├── libmv_bundle_adjuster.lib
│ │ │ ├── more_garbow_hillstrom.exp
│ │ │ ├── more_garbow_hillstrom.lib
│ │ │ ├── nist.exp
│ │ │ ├── nist.lib
│ │ │ ├── pose_graph_2d.exp
│ │ │ ├── pose_graph_2d.lib
│ │ │ ├── pose_graph_3d.exp
│ │ │ ├── pose_graph_3d.lib
│ │ │ ├── powell.exp
│ │ │ ├── powell.lib
│ │ │ ├── robot_pose_mle.exp
│ │ │ └── robot_pose_mle.lib
│ │ ├── RUN_TESTS.vcxproj
│ │ ├── RUN_TESTS.vcxproj.filters
│ │ ├── RUN_TESTS.vcxproj.user
│ │ ├── uninstall.vcxproj
│ │ ├── uninstall.vcxproj.filters
│ │ ├── uninstall.vcxproj.user
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ ├── ALL_BUILD
│ │ │ │ │ ├── ALL_BUILD.Build.CppClean.log
│ │ │ │ │ ├── ALL_BUILD.log
│ │ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ └── custombuild.write.1.tlog
│ │ │ │ ├── INSTALL
│ │ │ │ │ ├── INSTALL.Build.CppClean.log
│ │ │ │ │ ├── INSTALL.log
│ │ │ │ │ └── INSTALL.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ └── INSTALL.lastbuildstate
│ │ │ │ └── ZERO_CHECK
│ │ │ │ ├── ZERO_CHECK.Build.CppClean.log
│ │ │ │ ├── ZERO_CHECK.log
│ │ │ │ └── ZERO_CHECK.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── ZERO_CHECK.lastbuildstate
│ │ │ └── Release
│ │ │ ├── ALL_BUILD
│ │ │ │ ├── ALL_BUILD.log
│ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ └── custombuild.write.1.tlog
│ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL.log
│ │ │ │ └── INSTALL.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── INSTALL.lastbuildstate
│ │ │ └── ZERO_CHECK
│ │ │ ├── ZERO_CHECK.log
│ │ │ └── ZERO_CHECK.tlog
│ │ │ ├── custombuild.command.1.tlog
│ │ │ ├── custombuild.read.1.tlog
│ │ │ ├── custombuild.write.1.tlog
│ │ │ └── ZERO_CHECK.lastbuildstate
│ │ ├── ZERO_CHECK.vcxproj
│ │ ├── ZERO_CHECK.vcxproj.filters
│ │ └── ZERO_CHECK.vcxproj.user
│ ├── eigen-3.2.10.zip
│ ├── Eigen3.3.7-include
│ │ ├── ALL_BUILD.vcxproj
│ │ ├── ALL_BUILD.vcxproj.filters
│ │ ├── ALL_BUILD.vcxproj.user
│ │ ├── blas
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── blas.vcxproj
│ │ │ ├── blas.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── EigenBlas.sln
│ │ │ ├── eigen_blas_static.vcxproj
│ │ │ ├── eigen_blas_static.vcxproj.filters
│ │ │ ├── eigen_blas.vcxproj
│ │ │ ├── eigen_blas.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── buildtests.sh
│ │ ├── buildtests.vcxproj
│ │ ├── buildtests.vcxproj.filters
│ │ ├── cdashtesting.cmake
│ │ ├── check.sh
│ │ ├── check.vcxproj
│ │ ├── check.vcxproj.filters
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 10d6dd19cad843fb9791bf6ac9e65023
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 26d6c0bddc8528240454ea1589e5aa08
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 3.19.0-rc1
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ ├── CMakeCCompilerId.c
│ │ │ │ │ ├── CompilerIdC.exe
│ │ │ │ │ ├── CompilerIdC.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCCompilerId.obj
│ │ │ │ │ │ └── CompilerIdC.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdC.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ │ ├── CompilerIdCXX.exe
│ │ │ │ │ ├── CompilerIdCXX.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCXXCompilerId.obj
│ │ │ │ │ │ └── CompilerIdCXX.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ ├── VCTargetsPath.vcxproj
│ │ │ │ └── x64
│ │ │ │ └── Debug
│ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ ├── 3872f99eeec2d9ca529478bd2f63cd05
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 38f275703283baedb121d0f0faed9253
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 401e104a52f8d225fcb2879e56556c99
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 43520f0a5c1886919d04adfcc7af94ff
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 515114c773f7b3fbc81d2d26dc6958d1
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 60dc0cba25b931593732ff9205275e77
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 77088bc591a14b428b709ca6f0e3161e
│ │ │ │ ├── check.rule
│ │ │ │ ├── Continuous.rule
│ │ │ │ ├── Experimental.rule
│ │ │ │ ├── generate.stamp.rule
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ ├── NightlyMemoryCheck.rule
│ │ │ │ ├── Nightly.rule
│ │ │ │ ├── RUN_TESTS_force.rule
│ │ │ │ └── uninstall.rule
│ │ │ ├── 7ef23113e894dda81b18b808a17be7d3
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 928de8f00d9d900995e10748e36728e2
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 947fd1bc0b44dc829953af81f291627d
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── 94eeeba7352b7c733858cf503bf89807
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeError.log
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ ├── e5096a1a0cfb02b7bb23d0657e43b627
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── e6ea040c6ab01b0b2b70fa35abd1e303
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── ebd9f6fccc7808cc453801a6d405945c
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── ebfe17ce37937ee251b92043e154658e
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── Export
│ │ │ │ └── share
│ │ │ │ └── eigen3
│ │ │ │ └── cmake
│ │ │ │ └── Eigen3Targets.cmake
│ │ │ ├── fd1fccf3295fefbf10437aba1c79941d
│ │ │ │ ├── doc-eigen-prerequisites.rule
│ │ │ │ ├── doc.rule
│ │ │ │ ├── doc-unsupported-prerequisites.rule
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── RUN_TESTS_force.rule
│ │ │ ├── FindMPI
│ │ │ │ └── test_mpi.cpp
│ │ │ ├── generate.stamp
│ │ │ ├── generate.stamp.depend
│ │ │ ├── generate.stamp.list
│ │ │ └── TargetDirectories.txt
│ │ ├── cmake_install.cmake
│ │ ├── Continuous.vcxproj
│ │ ├── Continuous.vcxproj.filters
│ │ ├── CTestCustom.cmake
│ │ ├── CTestTestfile.cmake
│ │ ├── DartConfiguration.tcl
│ │ ├── debug.sh
│ │ ├── demos
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── demos.vcxproj
│ │ │ ├── demos.vcxproj.filters
│ │ │ ├── EigenDemos.sln
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── doc
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── all_examples.vcxproj
│ │ │ ├── all_examples.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── doc-eigen-prerequisites.vcxproj
│ │ │ ├── doc-eigen-prerequisites.vcxproj.filters
│ │ │ ├── doc-unsupported-prerequisites.vcxproj
│ │ │ ├── doc-unsupported-prerequisites.vcxproj.filters
│ │ │ ├── doc.vcxproj
│ │ │ ├── doc.vcxproj.filters
│ │ │ ├── Doxyfile
│ │ │ ├── Doxyfile-unsupported
│ │ │ ├── EigenDoc.sln
│ │ │ ├── eigendoxy_footer.html
│ │ │ ├── eigendoxy_header.html
│ │ │ ├── eigendoxy_layout.xml
│ │ │ ├── examples
│ │ │ │ ├── class_Block.vcxproj
│ │ │ │ ├── class_Block.vcxproj.filters
│ │ │ │ ├── class_CwiseBinaryOp.vcxproj
│ │ │ │ ├── class_CwiseBinaryOp.vcxproj.filters
│ │ │ │ ├── class_CwiseUnaryOp_ptrfun.vcxproj
│ │ │ │ ├── class_CwiseUnaryOp_ptrfun.vcxproj.filters
│ │ │ │ ├── class_CwiseUnaryOp.vcxproj
│ │ │ │ ├── class_CwiseUnaryOp.vcxproj.filters
│ │ │ │ ├── class_FixedBlock.vcxproj
│ │ │ │ ├── class_FixedBlock.vcxproj.filters
│ │ │ │ ├── class_FixedVectorBlock.vcxproj
│ │ │ │ ├── class_FixedVectorBlock.vcxproj.filters
│ │ │ │ ├── class_VectorBlock.vcxproj
│ │ │ │ ├── class_VectorBlock.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CustomizingEigen_Inheritance.vcxproj
│ │ │ │ ├── CustomizingEigen_Inheritance.vcxproj.filters
│ │ │ │ ├── Cwise_erfc.vcxproj
│ │ │ │ ├── Cwise_erfc.vcxproj.filters
│ │ │ │ ├── Cwise_erf.vcxproj
│ │ │ │ ├── Cwise_erf.vcxproj.filters
│ │ │ │ ├── Cwise_lgamma.vcxproj
│ │ │ │ ├── Cwise_lgamma.vcxproj.filters
│ │ │ │ ├── DenseBase_middleCols_int.vcxproj
│ │ │ │ ├── DenseBase_middleCols_int.vcxproj.filters
│ │ │ │ ├── DenseBase_middleRows_int.vcxproj
│ │ │ │ ├── DenseBase_middleRows_int.vcxproj.filters
│ │ │ │ ├── DenseBase_template_int_middleCols.vcxproj
│ │ │ │ ├── DenseBase_template_int_middleCols.vcxproj.filters
│ │ │ │ ├── DenseBase_template_int_middleRows.vcxproj
│ │ │ │ ├── DenseBase_template_int_middleRows.vcxproj.filters
│ │ │ │ ├── function_taking_eigenbase.vcxproj
│ │ │ │ ├── function_taking_eigenbase.vcxproj.filters
│ │ │ │ ├── function_taking_ref.vcxproj
│ │ │ │ ├── function_taking_ref.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── make_circulant2.vcxproj
│ │ │ │ ├── make_circulant2.vcxproj.filters
│ │ │ │ ├── make_circulant.vcxproj
│ │ │ │ ├── make_circulant.vcxproj.filters
│ │ │ │ ├── matrixfree_cg.vcxproj
│ │ │ │ ├── matrixfree_cg.vcxproj.filters
│ │ │ │ ├── nullary_indexing.vcxproj
│ │ │ │ ├── nullary_indexing.vcxproj.filters
│ │ │ │ ├── QuickStart_example2_dynamic.vcxproj
│ │ │ │ ├── QuickStart_example2_dynamic.vcxproj.filters
│ │ │ │ ├── QuickStart_example2_fixed.vcxproj
│ │ │ │ ├── QuickStart_example2_fixed.vcxproj.filters
│ │ │ │ ├── QuickStart_example.vcxproj
│ │ │ │ ├── QuickStart_example.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ │ ├── TemplateKeyword_flexible.vcxproj
│ │ │ │ ├── TemplateKeyword_flexible.vcxproj.filters
│ │ │ │ ├── TemplateKeyword_simple.vcxproj
│ │ │ │ ├── TemplateKeyword_simple.vcxproj.filters
│ │ │ │ ├── tut_arithmetic_add_sub.vcxproj
│ │ │ │ ├── tut_arithmetic_add_sub.vcxproj.filters
│ │ │ │ ├── tut_arithmetic_dot_cross.vcxproj
│ │ │ │ ├── tut_arithmetic_dot_cross.vcxproj.filters
│ │ │ │ ├── tut_arithmetic_matrix_mul.vcxproj
│ │ │ │ ├── tut_arithmetic_matrix_mul.vcxproj.filters
│ │ │ │ ├── tut_arithmetic_redux_basic.vcxproj
│ │ │ │ ├── tut_arithmetic_redux_basic.vcxproj.filters
│ │ │ │ ├── tut_arithmetic_scalar_mul_div.vcxproj
│ │ │ │ ├── tut_arithmetic_scalar_mul_div.vcxproj.filters
│ │ │ │ ├── tut_matrix_coefficient_accessors.vcxproj
│ │ │ │ ├── tut_matrix_coefficient_accessors.vcxproj.filters
│ │ │ │ ├── tut_matrix_resize_fixed_size.vcxproj
│ │ │ │ ├── tut_matrix_resize_fixed_size.vcxproj.filters
│ │ │ │ ├── tut_matrix_resize.vcxproj
│ │ │ │ ├── tut_matrix_resize.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_accessors.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_accessors.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_addition.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_addition.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_cwise_other.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_cwise_other.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_interop.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_interop.vcxproj.filters
│ │ │ │ ├── Tutorial_ArrayClass_mult.vcxproj
│ │ │ │ ├── Tutorial_ArrayClass_mult.vcxproj.filters
│ │ │ │ ├── Tutorial_BlockOperations_block_assignment.vcxproj
│ │ │ │ ├── Tutorial_BlockOperations_block_assignment.vcxproj.filters
│ │ │ │ ├── Tutorial_BlockOperations_colrow.vcxproj
│ │ │ │ ├── Tutorial_BlockOperations_colrow.vcxproj.filters
│ │ │ │ ├── Tutorial_BlockOperations_corner.vcxproj
│ │ │ │ ├── Tutorial_BlockOperations_corner.vcxproj.filters
│ │ │ │ ├── Tutorial_BlockOperations_print_block.vcxproj
│ │ │ │ ├── Tutorial_BlockOperations_print_block.vcxproj.filters
│ │ │ │ ├── Tutorial_BlockOperations_vector.vcxproj
│ │ │ │ ├── Tutorial_BlockOperations_vector.vcxproj.filters
│ │ │ │ ├── TutorialInplaceLU.vcxproj
│ │ │ │ ├── TutorialInplaceLU.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgComputeTwice.vcxproj
│ │ │ │ ├── TutorialLinAlgComputeTwice.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgExComputeSolveError.vcxproj
│ │ │ │ ├── TutorialLinAlgExComputeSolveError.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.vcxproj
│ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgExSolveLDLT.vcxproj
│ │ │ │ ├── TutorialLinAlgExSolveLDLT.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgInverseDeterminant.vcxproj
│ │ │ │ ├── TutorialLinAlgInverseDeterminant.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgRankRevealing.vcxproj
│ │ │ │ ├── TutorialLinAlgRankRevealing.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.vcxproj
│ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgSetThreshold.vcxproj
│ │ │ │ ├── TutorialLinAlgSetThreshold.vcxproj.filters
│ │ │ │ ├── TutorialLinAlgSVDSolve.vcxproj
│ │ │ │ ├── TutorialLinAlgSVDSolve.vcxproj.filters
│ │ │ │ ├── Tutorial_PartialLU_solve.vcxproj
│ │ │ │ ├── Tutorial_PartialLU_solve.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.vcxproj.filters
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.vcxproj
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.vcxproj.filters
│ │ │ │ ├── Tutorial_simple_example_dynamic_size.vcxproj
│ │ │ │ ├── Tutorial_simple_example_dynamic_size.vcxproj.filters
│ │ │ │ ├── Tutorial_simple_example_fixed_size.vcxproj
│ │ │ │ └── Tutorial_simple_example_fixed_size.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ ├── snippets
│ │ │ │ ├── all_snippets.vcxproj
│ │ │ │ ├── all_snippets.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── compile_AngleAxis_mimic_euler.cpp
│ │ │ │ ├── compile_AngleAxis_mimic_euler.vcxproj
│ │ │ │ ├── compile_AngleAxis_mimic_euler.vcxproj.filters
│ │ │ │ ├── compile_BiCGSTAB_simple.cpp
│ │ │ │ ├── compile_BiCGSTAB_simple.vcxproj
│ │ │ │ ├── compile_BiCGSTAB_simple.vcxproj.filters
│ │ │ │ ├── compile_BiCGSTAB_step_by_step.cpp
│ │ │ │ ├── compile_BiCGSTAB_step_by_step.vcxproj
│ │ │ │ ├── compile_BiCGSTAB_step_by_step.vcxproj.filters
│ │ │ │ ├── compile_class_FullPivLU.cpp
│ │ │ │ ├── compile_class_FullPivLU.vcxproj
│ │ │ │ ├── compile_class_FullPivLU.vcxproj.filters
│ │ │ │ ├── compile_ColPivHouseholderQR_solve.cpp
│ │ │ │ ├── compile_ColPivHouseholderQR_solve.vcxproj
│ │ │ │ ├── compile_ColPivHouseholderQR_solve.vcxproj.filters
│ │ │ │ ├── compile_ComplexEigenSolver_compute.cpp
│ │ │ │ ├── compile_ComplexEigenSolver_compute.vcxproj
│ │ │ │ ├── compile_ComplexEigenSolver_compute.vcxproj.filters
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvalues.cpp
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvalues.vcxproj
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvalues.vcxproj.filters
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvectors.cpp
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvectors.vcxproj
│ │ │ │ ├── compile_ComplexEigenSolver_eigenvectors.vcxproj.filters
│ │ │ │ ├── compile_ComplexSchur_compute.cpp
│ │ │ │ ├── compile_ComplexSchur_compute.vcxproj
│ │ │ │ ├── compile_ComplexSchur_compute.vcxproj.filters
│ │ │ │ ├── compile_ComplexSchur_matrixT.cpp
│ │ │ │ ├── compile_ComplexSchur_matrixT.vcxproj
│ │ │ │ ├── compile_ComplexSchur_matrixT.vcxproj.filters
│ │ │ │ ├── compile_ComplexSchur_matrixU.cpp
│ │ │ │ ├── compile_ComplexSchur_matrixU.vcxproj
│ │ │ │ ├── compile_ComplexSchur_matrixU.vcxproj.filters
│ │ │ │ ├── compile_Cwise_abs2.cpp
│ │ │ │ ├── compile_Cwise_abs2.vcxproj
│ │ │ │ ├── compile_Cwise_abs2.vcxproj.filters
│ │ │ │ ├── compile_Cwise_abs.cpp
│ │ │ │ ├── compile_Cwise_abs.vcxproj
│ │ │ │ ├── compile_Cwise_abs.vcxproj.filters
│ │ │ │ ├── compile_Cwise_acos.cpp
│ │ │ │ ├── compile_Cwise_acos.vcxproj
│ │ │ │ ├── compile_Cwise_acos.vcxproj.filters
│ │ │ │ ├── compile_Cwise_arg.cpp
│ │ │ │ ├── compile_Cwise_arg.vcxproj
│ │ │ │ ├── compile_Cwise_arg.vcxproj.filters
│ │ │ │ ├── compile_Cwise_array_power_array.cpp
│ │ │ │ ├── compile_Cwise_array_power_array.vcxproj
│ │ │ │ ├── compile_Cwise_array_power_array.vcxproj.filters
│ │ │ │ ├── compile_Cwise_asin.cpp
│ │ │ │ ├── compile_Cwise_asin.vcxproj
│ │ │ │ ├── compile_Cwise_asin.vcxproj.filters
│ │ │ │ ├── compile_Cwise_atan.cpp
│ │ │ │ ├── compile_Cwise_atan.vcxproj
│ │ │ │ ├── compile_Cwise_atan.vcxproj.filters
│ │ │ │ ├── compile_Cwise_boolean_and.cpp
│ │ │ │ ├── compile_Cwise_boolean_and.vcxproj
│ │ │ │ ├── compile_Cwise_boolean_and.vcxproj.filters
│ │ │ │ ├── compile_Cwise_boolean_not.cpp
│ │ │ │ ├── compile_Cwise_boolean_not.vcxproj
│ │ │ │ ├── compile_Cwise_boolean_not.vcxproj.filters
│ │ │ │ ├── compile_Cwise_boolean_or.cpp
│ │ │ │ ├── compile_Cwise_boolean_or.vcxproj
│ │ │ │ ├── compile_Cwise_boolean_or.vcxproj.filters
│ │ │ │ ├── compile_Cwise_boolean_xor.cpp
│ │ │ │ ├── compile_Cwise_boolean_xor.vcxproj
│ │ │ │ ├── compile_Cwise_boolean_xor.vcxproj.filters
│ │ │ │ ├── compile_Cwise_ceil.cpp
│ │ │ │ ├── compile_Cwise_ceil.vcxproj
│ │ │ │ ├── compile_Cwise_ceil.vcxproj.filters
│ │ │ │ ├── compile_Cwise_cos.cpp
│ │ │ │ ├── compile_Cwise_cosh.cpp
│ │ │ │ ├── compile_Cwise_cosh.vcxproj
│ │ │ │ ├── compile_Cwise_cosh.vcxproj.filters
│ │ │ │ ├── compile_Cwise_cos.vcxproj
│ │ │ │ ├── compile_Cwise_cos.vcxproj.filters
│ │ │ │ ├── compile_Cwise_cube.cpp
│ │ │ │ ├── compile_Cwise_cube.vcxproj
│ │ │ │ ├── compile_Cwise_cube.vcxproj.filters
│ │ │ │ ├── compile_Cwise_equal_equal.cpp
│ │ │ │ ├── compile_Cwise_equal_equal.vcxproj
│ │ │ │ ├── compile_Cwise_equal_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_exp.cpp
│ │ │ │ ├── compile_Cwise_exp.vcxproj
│ │ │ │ ├── compile_Cwise_exp.vcxproj.filters
│ │ │ │ ├── compile_Cwise_floor.cpp
│ │ │ │ ├── compile_Cwise_floor.vcxproj
│ │ │ │ ├── compile_Cwise_floor.vcxproj.filters
│ │ │ │ ├── compile_Cwise_greater.cpp
│ │ │ │ ├── compile_Cwise_greater_equal.cpp
│ │ │ │ ├── compile_Cwise_greater_equal.vcxproj
│ │ │ │ ├── compile_Cwise_greater_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_greater.vcxproj
│ │ │ │ ├── compile_Cwise_greater.vcxproj.filters
│ │ │ │ ├── compile_Cwise_inverse.cpp
│ │ │ │ ├── compile_Cwise_inverse.vcxproj
│ │ │ │ ├── compile_Cwise_inverse.vcxproj.filters
│ │ │ │ ├── compile_Cwise_isFinite.cpp
│ │ │ │ ├── compile_Cwise_isFinite.vcxproj
│ │ │ │ ├── compile_Cwise_isFinite.vcxproj.filters
│ │ │ │ ├── compile_Cwise_isInf.cpp
│ │ │ │ ├── compile_Cwise_isInf.vcxproj
│ │ │ │ ├── compile_Cwise_isInf.vcxproj.filters
│ │ │ │ ├── compile_Cwise_isNaN.cpp
│ │ │ │ ├── compile_Cwise_isNaN.vcxproj
│ │ │ │ ├── compile_Cwise_isNaN.vcxproj.filters
│ │ │ │ ├── compile_Cwise_less.cpp
│ │ │ │ ├── compile_Cwise_less_equal.cpp
│ │ │ │ ├── compile_Cwise_less_equal.vcxproj
│ │ │ │ ├── compile_Cwise_less_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_less.vcxproj
│ │ │ │ ├── compile_Cwise_less.vcxproj.filters
│ │ │ │ ├── compile_Cwise_log10.cpp
│ │ │ │ ├── compile_Cwise_log10.vcxproj
│ │ │ │ ├── compile_Cwise_log10.vcxproj.filters
│ │ │ │ ├── compile_Cwise_log.cpp
│ │ │ │ ├── compile_Cwise_log.vcxproj
│ │ │ │ ├── compile_Cwise_log.vcxproj.filters
│ │ │ │ ├── compile_Cwise_max.cpp
│ │ │ │ ├── compile_Cwise_max.vcxproj
│ │ │ │ ├── compile_Cwise_max.vcxproj.filters
│ │ │ │ ├── compile_Cwise_min.cpp
│ │ │ │ ├── compile_Cwise_minus.cpp
│ │ │ │ ├── compile_Cwise_minus_equal.cpp
│ │ │ │ ├── compile_Cwise_minus_equal.vcxproj
│ │ │ │ ├── compile_Cwise_minus_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_minus.vcxproj
│ │ │ │ ├── compile_Cwise_minus.vcxproj.filters
│ │ │ │ ├── compile_Cwise_min.vcxproj
│ │ │ │ ├── compile_Cwise_min.vcxproj.filters
│ │ │ │ ├── compile_Cwise_not_equal.cpp
│ │ │ │ ├── compile_Cwise_not_equal.vcxproj
│ │ │ │ ├── compile_Cwise_not_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_plus.cpp
│ │ │ │ ├── compile_Cwise_plus_equal.cpp
│ │ │ │ ├── compile_Cwise_plus_equal.vcxproj
│ │ │ │ ├── compile_Cwise_plus_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_plus.vcxproj
│ │ │ │ ├── compile_Cwise_plus.vcxproj.filters
│ │ │ │ ├── compile_Cwise_pow.cpp
│ │ │ │ ├── compile_Cwise_pow.vcxproj
│ │ │ │ ├── compile_Cwise_pow.vcxproj.filters
│ │ │ │ ├── compile_Cwise_product.cpp
│ │ │ │ ├── compile_Cwise_product.vcxproj
│ │ │ │ ├── compile_Cwise_product.vcxproj.filters
│ │ │ │ ├── compile_Cwise_quotient.cpp
│ │ │ │ ├── compile_Cwise_quotient.vcxproj
│ │ │ │ ├── compile_Cwise_quotient.vcxproj.filters
│ │ │ │ ├── compile_Cwise_round.cpp
│ │ │ │ ├── compile_Cwise_round.vcxproj
│ │ │ │ ├── compile_Cwise_round.vcxproj.filters
│ │ │ │ ├── compile_Cwise_scalar_power_array.cpp
│ │ │ │ ├── compile_Cwise_scalar_power_array.vcxproj
│ │ │ │ ├── compile_Cwise_scalar_power_array.vcxproj.filters
│ │ │ │ ├── compile_Cwise_sign.cpp
│ │ │ │ ├── compile_Cwise_sign.vcxproj
│ │ │ │ ├── compile_Cwise_sign.vcxproj.filters
│ │ │ │ ├── compile_Cwise_sin.cpp
│ │ │ │ ├── compile_Cwise_sinh.cpp
│ │ │ │ ├── compile_Cwise_sinh.vcxproj
│ │ │ │ ├── compile_Cwise_sinh.vcxproj.filters
│ │ │ │ ├── compile_Cwise_sin.vcxproj
│ │ │ │ ├── compile_Cwise_sin.vcxproj.filters
│ │ │ │ ├── compile_Cwise_slash_equal.cpp
│ │ │ │ ├── compile_Cwise_slash_equal.vcxproj
│ │ │ │ ├── compile_Cwise_slash_equal.vcxproj.filters
│ │ │ │ ├── compile_Cwise_sqrt.cpp
│ │ │ │ ├── compile_Cwise_sqrt.vcxproj
│ │ │ │ ├── compile_Cwise_sqrt.vcxproj.filters
│ │ │ │ ├── compile_Cwise_square.cpp
│ │ │ │ ├── compile_Cwise_square.vcxproj
│ │ │ │ ├── compile_Cwise_square.vcxproj.filters
│ │ │ │ ├── compile_Cwise_tan.cpp
│ │ │ │ ├── compile_Cwise_tanh.cpp
│ │ │ │ ├── compile_Cwise_tanh.vcxproj
│ │ │ │ ├── compile_Cwise_tanh.vcxproj.filters
│ │ │ │ ├── compile_Cwise_tan.vcxproj
│ │ │ │ ├── compile_Cwise_tan.vcxproj.filters
│ │ │ │ ├── compile_Cwise_times_equal.cpp
│ │ │ │ ├── compile_Cwise_times_equal.vcxproj
│ │ │ │ ├── compile_Cwise_times_equal.vcxproj.filters
│ │ │ │ ├── compile_DenseBase_LinSpaced.cpp
│ │ │ │ ├── compile_DenseBase_LinSpacedInt.cpp
│ │ │ │ ├── compile_DenseBase_LinSpacedInt.vcxproj
│ │ │ │ ├── compile_DenseBase_LinSpacedInt.vcxproj.filters
│ │ │ │ ├── compile_DenseBase_LinSpaced_seq.cpp
│ │ │ │ ├── compile_DenseBase_LinSpaced_seq.vcxproj
│ │ │ │ ├── compile_DenseBase_LinSpaced_seq.vcxproj.filters
│ │ │ │ ├── compile_DenseBase_LinSpaced.vcxproj
│ │ │ │ ├── compile_DenseBase_LinSpaced.vcxproj.filters
│ │ │ │ ├── compile_DenseBase_setLinSpaced.cpp
│ │ │ │ ├── compile_DenseBase_setLinSpaced.vcxproj
│ │ │ │ ├── compile_DenseBase_setLinSpaced.vcxproj.filters
│ │ │ │ ├── compile_DirectionWise_hnormalized.cpp
│ │ │ │ ├── compile_DirectionWise_hnormalized.vcxproj
│ │ │ │ ├── compile_DirectionWise_hnormalized.vcxproj.filters
│ │ │ │ ├── compile_DirectionWise_replicate.cpp
│ │ │ │ ├── compile_DirectionWise_replicate_int.cpp
│ │ │ │ ├── compile_DirectionWise_replicate_int.vcxproj
│ │ │ │ ├── compile_DirectionWise_replicate_int.vcxproj.filters
│ │ │ │ ├── compile_DirectionWise_replicate.vcxproj
│ │ │ │ ├── compile_DirectionWise_replicate.vcxproj.filters
│ │ │ │ ├── compile_EigenSolver_compute.cpp
│ │ │ │ ├── compile_EigenSolver_compute.vcxproj
│ │ │ │ ├── compile_EigenSolver_compute.vcxproj.filters
│ │ │ │ ├── compile_EigenSolver_EigenSolver_MatrixType.cpp
│ │ │ │ ├── compile_EigenSolver_EigenSolver_MatrixType.vcxproj
│ │ │ │ ├── compile_EigenSolver_EigenSolver_MatrixType.vcxproj.filters
│ │ │ │ ├── compile_EigenSolver_eigenvalues.cpp
│ │ │ │ ├── compile_EigenSolver_eigenvalues.vcxproj
│ │ │ │ ├── compile_EigenSolver_eigenvalues.vcxproj.filters
│ │ │ │ ├── compile_EigenSolver_eigenvectors.cpp
│ │ │ │ ├── compile_EigenSolver_eigenvectors.vcxproj
│ │ │ │ ├── compile_EigenSolver_eigenvectors.vcxproj.filters
│ │ │ │ ├── compile_EigenSolver_pseudoEigenvectors.cpp
│ │ │ │ ├── compile_EigenSolver_pseudoEigenvectors.vcxproj
│ │ │ │ ├── compile_EigenSolver_pseudoEigenvectors.vcxproj.filters
│ │ │ │ ├── compile_FullPivHouseholderQR_solve.cpp
│ │ │ │ ├── compile_FullPivHouseholderQR_solve.vcxproj
│ │ │ │ ├── compile_FullPivHouseholderQR_solve.vcxproj.filters
│ │ │ │ ├── compile_FullPivLU_image.cpp
│ │ │ │ ├── compile_FullPivLU_image.vcxproj
│ │ │ │ ├── compile_FullPivLU_image.vcxproj.filters
│ │ │ │ ├── compile_FullPivLU_kernel.cpp
│ │ │ │ ├── compile_FullPivLU_kernel.vcxproj
│ │ │ │ ├── compile_FullPivLU_kernel.vcxproj.filters
│ │ │ │ ├── compile_FullPivLU_solve.cpp
│ │ │ │ ├── compile_FullPivLU_solve.vcxproj
│ │ │ │ ├── compile_FullPivLU_solve.vcxproj.filters
│ │ │ │ ├── compile_GeneralizedEigenSolver.cpp
│ │ │ │ ├── compile_GeneralizedEigenSolver.vcxproj
│ │ │ │ ├── compile_GeneralizedEigenSolver.vcxproj.filters
│ │ │ │ ├── compile_HessenbergDecomposition_compute.cpp
│ │ │ │ ├── compile_HessenbergDecomposition_compute.vcxproj
│ │ │ │ ├── compile_HessenbergDecomposition_compute.vcxproj.filters
│ │ │ │ ├── compile_HessenbergDecomposition_matrixH.cpp
│ │ │ │ ├── compile_HessenbergDecomposition_matrixH.vcxproj
│ │ │ │ ├── compile_HessenbergDecomposition_matrixH.vcxproj.filters
│ │ │ │ ├── compile_HessenbergDecomposition_packedMatrix.cpp
│ │ │ │ ├── compile_HessenbergDecomposition_packedMatrix.vcxproj
│ │ │ │ ├── compile_HessenbergDecomposition_packedMatrix.vcxproj.filters
│ │ │ │ ├── compile_HouseholderQR_householderQ.cpp
│ │ │ │ ├── compile_HouseholderQR_householderQ.vcxproj
│ │ │ │ ├── compile_HouseholderQR_householderQ.vcxproj.filters
│ │ │ │ ├── compile_HouseholderQR_solve.cpp
│ │ │ │ ├── compile_HouseholderQR_solve.vcxproj
│ │ │ │ ├── compile_HouseholderQR_solve.vcxproj.filters
│ │ │ │ ├── compile_HouseholderSequence_HouseholderSequence.cpp
│ │ │ │ ├── compile_HouseholderSequence_HouseholderSequence.vcxproj
│ │ │ │ ├── compile_HouseholderSequence_HouseholderSequence.vcxproj.filters
│ │ │ │ ├── compile_IOFormat.cpp
│ │ │ │ ├── compile_IOFormat.vcxproj
│ │ │ │ ├── compile_IOFormat.vcxproj.filters
│ │ │ │ ├── compile_Jacobi_makeGivens.cpp
│ │ │ │ ├── compile_Jacobi_makeGivens.vcxproj
│ │ │ │ ├── compile_Jacobi_makeGivens.vcxproj.filters
│ │ │ │ ├── compile_Jacobi_makeJacobi.cpp
│ │ │ │ ├── compile_Jacobi_makeJacobi.vcxproj
│ │ │ │ ├── compile_Jacobi_makeJacobi.vcxproj.filters
│ │ │ │ ├── compile_JacobiSVD_basic.cpp
│ │ │ │ ├── compile_JacobiSVD_basic.vcxproj
│ │ │ │ ├── compile_JacobiSVD_basic.vcxproj.filters
│ │ │ │ ├── compile_LeastSquaresNormalEquations.cpp
│ │ │ │ ├── compile_LeastSquaresNormalEquations.vcxproj
│ │ │ │ ├── compile_LeastSquaresNormalEquations.vcxproj.filters
│ │ │ │ ├── compile_LeastSquaresQR.cpp
│ │ │ │ ├── compile_LeastSquaresQR.vcxproj
│ │ │ │ ├── compile_LeastSquaresQR.vcxproj.filters
│ │ │ │ ├── compile_LLT_example.cpp
│ │ │ │ ├── compile_LLT_example.vcxproj
│ │ │ │ ├── compile_LLT_example.vcxproj.filters
│ │ │ │ ├── compile_LLT_solve.cpp
│ │ │ │ ├── compile_LLT_solve.vcxproj
│ │ │ │ ├── compile_LLT_solve.vcxproj.filters
│ │ │ │ ├── compile_Map_general_stride.cpp
│ │ │ │ ├── compile_Map_general_stride.vcxproj
│ │ │ │ ├── compile_Map_general_stride.vcxproj.filters
│ │ │ │ ├── compile_Map_inner_stride.cpp
│ │ │ │ ├── compile_Map_inner_stride.vcxproj
│ │ │ │ ├── compile_Map_inner_stride.vcxproj.filters
│ │ │ │ ├── compile_Map_outer_stride.cpp
│ │ │ │ ├── compile_Map_outer_stride.vcxproj
│ │ │ │ ├── compile_Map_outer_stride.vcxproj.filters
│ │ │ │ ├── compile_Map_placement_new.cpp
│ │ │ │ ├── compile_Map_placement_new.vcxproj
│ │ │ │ ├── compile_Map_placement_new.vcxproj.filters
│ │ │ │ ├── compile_Map_simple.cpp
│ │ │ │ ├── compile_Map_simple.vcxproj
│ │ │ │ ├── compile_Map_simple.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_adjoint.cpp
│ │ │ │ ├── compile_MatrixBase_adjoint.vcxproj
│ │ │ │ ├── compile_MatrixBase_adjoint.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_all.cpp
│ │ │ │ ├── compile_MatrixBase_all.vcxproj
│ │ │ │ ├── compile_MatrixBase_all.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_applyOnTheLeft.cpp
│ │ │ │ ├── compile_MatrixBase_applyOnTheLeft.vcxproj
│ │ │ │ ├── compile_MatrixBase_applyOnTheLeft.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_applyOnTheRight.cpp
│ │ │ │ ├── compile_MatrixBase_applyOnTheRight.vcxproj
│ │ │ │ ├── compile_MatrixBase_applyOnTheRight.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_array_const.cpp
│ │ │ │ ├── compile_MatrixBase_array_const.vcxproj
│ │ │ │ ├── compile_MatrixBase_array_const.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_array.cpp
│ │ │ │ ├── compile_MatrixBase_array.vcxproj
│ │ │ │ ├── compile_MatrixBase_array.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_asDiagonal.cpp
│ │ │ │ ├── compile_MatrixBase_asDiagonal.vcxproj
│ │ │ │ ├── compile_MatrixBase_asDiagonal.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_block_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_block_int_int_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_block_int_int_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_block_int_int_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_block_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_block_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_bottomLeftCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_bottomLeftCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_bottomLeftCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_bottomRightCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_bottomRightCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_bottomRightCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_bottomRows_int.cpp
│ │ │ │ ├── compile_MatrixBase_bottomRows_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_bottomRows_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cast.cpp
│ │ │ │ ├── compile_MatrixBase_cast.vcxproj
│ │ │ │ ├── compile_MatrixBase_cast.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_col.cpp
│ │ │ │ ├── compile_MatrixBase_col.vcxproj
│ │ │ │ ├── compile_MatrixBase_col.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_colwise.cpp
│ │ │ │ ├── compile_MatrixBase_colwise.vcxproj
│ │ │ │ ├── compile_MatrixBase_colwise.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_computeInverseAndDetWithCheck.cpp
│ │ │ │ ├── compile_MatrixBase_computeInverseAndDetWithCheck.vcxproj
│ │ │ │ ├── compile_MatrixBase_computeInverseAndDetWithCheck.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_computeInverseWithCheck.cpp
│ │ │ │ ├── compile_MatrixBase_computeInverseWithCheck.vcxproj
│ │ │ │ ├── compile_MatrixBase_computeInverseWithCheck.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseAbs2.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseAbs2.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseAbs2.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseAbs.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseAbs.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseAbs.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseEqual.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseEqual.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseEqual.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseInverse.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseInverse.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseInverse.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseMax.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseMax.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseMax.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseMin.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseMin.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseMin.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseNotEqual.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseNotEqual.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseNotEqual.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseProduct.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseProduct.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseProduct.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseQuotient.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseQuotient.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseQuotient.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseSign.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseSign.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseSign.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_cwiseSqrt.cpp
│ │ │ │ ├── compile_MatrixBase_cwiseSqrt.vcxproj
│ │ │ │ ├── compile_MatrixBase_cwiseSqrt.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_diagonal.cpp
│ │ │ │ ├── compile_MatrixBase_diagonal_int.cpp
│ │ │ │ ├── compile_MatrixBase_diagonal_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_diagonal_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_diagonal_template_int.cpp
│ │ │ │ ├── compile_MatrixBase_diagonal_template_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_diagonal_template_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_diagonal.vcxproj
│ │ │ │ ├── compile_MatrixBase_diagonal.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_eigenvalues.cpp
│ │ │ │ ├── compile_MatrixBase_eigenvalues.vcxproj
│ │ │ │ ├── compile_MatrixBase_eigenvalues.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_end_int.cpp
│ │ │ │ ├── compile_MatrixBase_end_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_end_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_eval.cpp
│ │ │ │ ├── compile_MatrixBase_eval.vcxproj
│ │ │ │ ├── compile_MatrixBase_eval.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_fixedBlock_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_fixedBlock_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_fixedBlock_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_hnormalized.cpp
│ │ │ │ ├── compile_MatrixBase_hnormalized.vcxproj
│ │ │ │ ├── compile_MatrixBase_hnormalized.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_homogeneous.cpp
│ │ │ │ ├── compile_MatrixBase_homogeneous.vcxproj
│ │ │ │ ├── compile_MatrixBase_homogeneous.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_identity.cpp
│ │ │ │ ├── compile_MatrixBase_identity_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_identity_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_identity_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_identity.vcxproj
│ │ │ │ ├── compile_MatrixBase_identity.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_inverse.cpp
│ │ │ │ ├── compile_MatrixBase_inverse.vcxproj
│ │ │ │ ├── compile_MatrixBase_inverse.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isDiagonal.cpp
│ │ │ │ ├── compile_MatrixBase_isDiagonal.vcxproj
│ │ │ │ ├── compile_MatrixBase_isDiagonal.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isIdentity.cpp
│ │ │ │ ├── compile_MatrixBase_isIdentity.vcxproj
│ │ │ │ ├── compile_MatrixBase_isIdentity.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isOnes.cpp
│ │ │ │ ├── compile_MatrixBase_isOnes.vcxproj
│ │ │ │ ├── compile_MatrixBase_isOnes.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isOrthogonal.cpp
│ │ │ │ ├── compile_MatrixBase_isOrthogonal.vcxproj
│ │ │ │ ├── compile_MatrixBase_isOrthogonal.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isUnitary.cpp
│ │ │ │ ├── compile_MatrixBase_isUnitary.vcxproj
│ │ │ │ ├── compile_MatrixBase_isUnitary.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_isZero.cpp
│ │ │ │ ├── compile_MatrixBase_isZero.vcxproj
│ │ │ │ ├── compile_MatrixBase_isZero.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_leftCols_int.cpp
│ │ │ │ ├── compile_MatrixBase_leftCols_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_leftCols_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_noalias.cpp
│ │ │ │ ├── compile_MatrixBase_noalias.vcxproj
│ │ │ │ ├── compile_MatrixBase_noalias.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_ones.cpp
│ │ │ │ ├── compile_MatrixBase_ones_int.cpp
│ │ │ │ ├── compile_MatrixBase_ones_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_ones_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_ones_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_ones_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_ones_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_ones.vcxproj
│ │ │ │ ├── compile_MatrixBase_ones.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_operatorNorm.cpp
│ │ │ │ ├── compile_MatrixBase_operatorNorm.vcxproj
│ │ │ │ ├── compile_MatrixBase_operatorNorm.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_prod.cpp
│ │ │ │ ├── compile_MatrixBase_prod.vcxproj
│ │ │ │ ├── compile_MatrixBase_prod.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_random.cpp
│ │ │ │ ├── compile_MatrixBase_random_int.cpp
│ │ │ │ ├── compile_MatrixBase_random_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_random_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_random_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_random_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_random_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_random.vcxproj
│ │ │ │ ├── compile_MatrixBase_random.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_replicate.cpp
│ │ │ │ ├── compile_MatrixBase_replicate_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_replicate_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_replicate_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_replicate.vcxproj
│ │ │ │ ├── compile_MatrixBase_replicate.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_reverse.cpp
│ │ │ │ ├── compile_MatrixBase_reverse.vcxproj
│ │ │ │ ├── compile_MatrixBase_reverse.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_rightCols_int.cpp
│ │ │ │ ├── compile_MatrixBase_rightCols_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_rightCols_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_row.cpp
│ │ │ │ ├── compile_MatrixBase_row.vcxproj
│ │ │ │ ├── compile_MatrixBase_row.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_rowwise.cpp
│ │ │ │ ├── compile_MatrixBase_rowwise.vcxproj
│ │ │ │ ├── compile_MatrixBase_rowwise.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_segment_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_segment_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_segment_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_select.cpp
│ │ │ │ ├── compile_MatrixBase_select.vcxproj
│ │ │ │ ├── compile_MatrixBase_select.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_selfadjointView.cpp
│ │ │ │ ├── compile_MatrixBase_selfadjointView.vcxproj
│ │ │ │ ├── compile_MatrixBase_selfadjointView.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_set.cpp
│ │ │ │ ├── compile_MatrixBase_setIdentity.cpp
│ │ │ │ ├── compile_MatrixBase_setIdentity.vcxproj
│ │ │ │ ├── compile_MatrixBase_setIdentity.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_setOnes.cpp
│ │ │ │ ├── compile_MatrixBase_setOnes.vcxproj
│ │ │ │ ├── compile_MatrixBase_setOnes.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_setRandom.cpp
│ │ │ │ ├── compile_MatrixBase_setRandom.vcxproj
│ │ │ │ ├── compile_MatrixBase_setRandom.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_set.vcxproj
│ │ │ │ ├── compile_MatrixBase_set.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_setZero.cpp
│ │ │ │ ├── compile_MatrixBase_setZero.vcxproj
│ │ │ │ ├── compile_MatrixBase_setZero.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_start_int.cpp
│ │ │ │ ├── compile_MatrixBase_start_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_start_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_bottomRows.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_bottomRows.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_bottomRows.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_end.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_end.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_end.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_block_int_int_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_block_int_int_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_block_int_int_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomLeftCorner.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_bottomRightCorner.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_topLeftCorner.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_int_topRightCorner.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_leftCols.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_leftCols.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_leftCols.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_rightCols.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_rightCols.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_rightCols.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_segment.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_segment.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_segment.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_start.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_start.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_start.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_template_int_topRows.cpp
│ │ │ │ ├── compile_MatrixBase_template_int_topRows.vcxproj
│ │ │ │ ├── compile_MatrixBase_template_int_topRows.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_topLeftCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_topLeftCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_topLeftCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_topRightCorner_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_topRightCorner_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_topRightCorner_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_topRows_int.cpp
│ │ │ │ ├── compile_MatrixBase_topRows_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_topRows_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_transpose.cpp
│ │ │ │ ├── compile_MatrixBase_transpose.vcxproj
│ │ │ │ ├── compile_MatrixBase_transpose.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_triangularView.cpp
│ │ │ │ ├── compile_MatrixBase_triangularView.vcxproj
│ │ │ │ ├── compile_MatrixBase_triangularView.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_zero.cpp
│ │ │ │ ├── compile_MatrixBase_zero_int.cpp
│ │ │ │ ├── compile_MatrixBase_zero_int_int.cpp
│ │ │ │ ├── compile_MatrixBase_zero_int_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_zero_int_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_zero_int.vcxproj
│ │ │ │ ├── compile_MatrixBase_zero_int.vcxproj.filters
│ │ │ │ ├── compile_MatrixBase_zero.vcxproj
│ │ │ │ ├── compile_MatrixBase_zero.vcxproj.filters
│ │ │ │ ├── compile_Matrix_Map_stride.cpp
│ │ │ │ ├── compile_Matrix_Map_stride.vcxproj
│ │ │ │ ├── compile_Matrix_Map_stride.vcxproj.filters
│ │ │ │ ├── compile_Matrix_resize_int.cpp
│ │ │ │ ├── compile_Matrix_resize_int_int.cpp
│ │ │ │ ├── compile_Matrix_resize_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_resize_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_resize_int_NoChange.cpp
│ │ │ │ ├── compile_Matrix_resize_int_NoChange.vcxproj
│ │ │ │ ├── compile_Matrix_resize_int_NoChange.vcxproj.filters
│ │ │ │ ├── compile_Matrix_resize_int.vcxproj
│ │ │ │ ├── compile_Matrix_resize_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_resize_NoChange_int.cpp
│ │ │ │ ├── compile_Matrix_resize_NoChange_int.vcxproj
│ │ │ │ ├── compile_Matrix_resize_NoChange_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setConstant_int.cpp
│ │ │ │ ├── compile_Matrix_setConstant_int_int.cpp
│ │ │ │ ├── compile_Matrix_setConstant_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_setConstant_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setConstant_int.vcxproj
│ │ │ │ ├── compile_Matrix_setConstant_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setIdentity_int_int.cpp
│ │ │ │ ├── compile_Matrix_setIdentity_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_setIdentity_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setOnes_int.cpp
│ │ │ │ ├── compile_Matrix_setOnes_int_int.cpp
│ │ │ │ ├── compile_Matrix_setOnes_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_setOnes_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setOnes_int.vcxproj
│ │ │ │ ├── compile_Matrix_setOnes_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setRandom_int.cpp
│ │ │ │ ├── compile_Matrix_setRandom_int_int.cpp
│ │ │ │ ├── compile_Matrix_setRandom_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_setRandom_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setRandom_int.vcxproj
│ │ │ │ ├── compile_Matrix_setRandom_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setZero_int.cpp
│ │ │ │ ├── compile_Matrix_setZero_int_int.cpp
│ │ │ │ ├── compile_Matrix_setZero_int_int.vcxproj
│ │ │ │ ├── compile_Matrix_setZero_int_int.vcxproj.filters
│ │ │ │ ├── compile_Matrix_setZero_int.vcxproj
│ │ │ │ ├── compile_Matrix_setZero_int.vcxproj.filters
│ │ │ │ ├── compile_PartialPivLU_solve.cpp
│ │ │ │ ├── compile_PartialPivLU_solve.vcxproj
│ │ │ │ ├── compile_PartialPivLU_solve.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_count.cpp
│ │ │ │ ├── compile_PartialRedux_count.vcxproj
│ │ │ │ ├── compile_PartialRedux_count.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_maxCoeff.cpp
│ │ │ │ ├── compile_PartialRedux_maxCoeff.vcxproj
│ │ │ │ ├── compile_PartialRedux_maxCoeff.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_minCoeff.cpp
│ │ │ │ ├── compile_PartialRedux_minCoeff.vcxproj
│ │ │ │ ├── compile_PartialRedux_minCoeff.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_norm.cpp
│ │ │ │ ├── compile_PartialRedux_norm.vcxproj
│ │ │ │ ├── compile_PartialRedux_norm.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_prod.cpp
│ │ │ │ ├── compile_PartialRedux_prod.vcxproj
│ │ │ │ ├── compile_PartialRedux_prod.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_squaredNorm.cpp
│ │ │ │ ├── compile_PartialRedux_squaredNorm.vcxproj
│ │ │ │ ├── compile_PartialRedux_squaredNorm.vcxproj.filters
│ │ │ │ ├── compile_PartialRedux_sum.cpp
│ │ │ │ ├── compile_PartialRedux_sum.vcxproj
│ │ │ │ ├── compile_PartialRedux_sum.vcxproj.filters
│ │ │ │ ├── compile_RealQZ_compute.cpp
│ │ │ │ ├── compile_RealQZ_compute.vcxproj
│ │ │ │ ├── compile_RealQZ_compute.vcxproj.filters
│ │ │ │ ├── compile_RealSchur_compute.cpp
│ │ │ │ ├── compile_RealSchur_compute.vcxproj
│ │ │ │ ├── compile_RealSchur_compute.vcxproj.filters
│ │ │ │ ├── compile_RealSchur_RealSchur_MatrixType.cpp
│ │ │ │ ├── compile_RealSchur_RealSchur_MatrixType.vcxproj
│ │ │ │ ├── compile_RealSchur_RealSchur_MatrixType.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType2.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType2.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType2.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_compute_MatrixType.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvalues.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvalues.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvalues.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvectors.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvectors.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_eigenvectors.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorInverseSqrt.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorInverseSqrt.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorInverseSqrt.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorSqrt.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorSqrt.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_operatorSqrt.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver.vcxproj
│ │ │ │ ├── compile_SelfAdjointEigenSolver_SelfAdjointEigenSolver.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointView_eigenvalues.cpp
│ │ │ │ ├── compile_SelfAdjointView_eigenvalues.vcxproj
│ │ │ │ ├── compile_SelfAdjointView_eigenvalues.vcxproj.filters
│ │ │ │ ├── compile_SelfAdjointView_operatorNorm.cpp
│ │ │ │ ├── compile_SelfAdjointView_operatorNorm.vcxproj
│ │ │ │ ├── compile_SelfAdjointView_operatorNorm.vcxproj.filters
│ │ │ │ ├── compile_SparseMatrix_coeffs.cpp
│ │ │ │ ├── compile_SparseMatrix_coeffs.vcxproj
│ │ │ │ ├── compile_SparseMatrix_coeffs.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_block_correct.cpp
│ │ │ │ ├── compile_TopicAliasing_block_correct.vcxproj
│ │ │ │ ├── compile_TopicAliasing_block_correct.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_block.cpp
│ │ │ │ ├── compile_TopicAliasing_block.vcxproj
│ │ │ │ ├── compile_TopicAliasing_block.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_cwise.cpp
│ │ │ │ ├── compile_TopicAliasing_cwise.vcxproj
│ │ │ │ ├── compile_TopicAliasing_cwise.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_mult1.cpp
│ │ │ │ ├── compile_TopicAliasing_mult1.vcxproj
│ │ │ │ ├── compile_TopicAliasing_mult1.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_mult2.cpp
│ │ │ │ ├── compile_TopicAliasing_mult2.vcxproj
│ │ │ │ ├── compile_TopicAliasing_mult2.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_mult3.cpp
│ │ │ │ ├── compile_TopicAliasing_mult3.vcxproj
│ │ │ │ ├── compile_TopicAliasing_mult3.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_mult4.cpp
│ │ │ │ ├── compile_TopicAliasing_mult4.vcxproj
│ │ │ │ ├── compile_TopicAliasing_mult4.vcxproj.filters
│ │ │ │ ├── compile_TopicAliasing_mult5.cpp
│ │ │ │ ├── compile_TopicAliasing_mult5.vcxproj
│ │ │ │ ├── compile_TopicAliasing_mult5.vcxproj.filters
│ │ │ │ ├── compile_TopicStorageOrders_example.cpp
│ │ │ │ ├── compile_TopicStorageOrders_example.vcxproj
│ │ │ │ ├── compile_TopicStorageOrders_example.vcxproj.filters
│ │ │ │ ├── compile_Triangular_solve.cpp
│ │ │ │ ├── compile_Triangular_solve.vcxproj
│ │ │ │ ├── compile_Triangular_solve.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_compute.cpp
│ │ │ │ ├── compile_Tridiagonalization_compute.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_compute.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_decomposeInPlace.cpp
│ │ │ │ ├── compile_Tridiagonalization_decomposeInPlace.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_decomposeInPlace.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_diagonal.cpp
│ │ │ │ ├── compile_Tridiagonalization_diagonal.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_diagonal.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_householderCoefficients.cpp
│ │ │ │ ├── compile_Tridiagonalization_householderCoefficients.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_householderCoefficients.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_packedMatrix.cpp
│ │ │ │ ├── compile_Tridiagonalization_packedMatrix.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_packedMatrix.vcxproj.filters
│ │ │ │ ├── compile_Tridiagonalization_Tridiagonalization_MatrixType.cpp
│ │ │ │ ├── compile_Tridiagonalization_Tridiagonalization_MatrixType.vcxproj
│ │ │ │ ├── compile_Tridiagonalization_Tridiagonalization_MatrixType.vcxproj.filters
│ │ │ │ ├── compile_tut_arithmetic_redux_minmax.cpp
│ │ │ │ ├── compile_tut_arithmetic_redux_minmax.vcxproj
│ │ │ │ ├── compile_tut_arithmetic_redux_minmax.vcxproj.filters
│ │ │ │ ├── compile_tut_arithmetic_transpose_aliasing.cpp
│ │ │ │ ├── compile_tut_arithmetic_transpose_aliasing.vcxproj
│ │ │ │ ├── compile_tut_arithmetic_transpose_aliasing.vcxproj.filters
│ │ │ │ ├── compile_tut_arithmetic_transpose_conjugate.cpp
│ │ │ │ ├── compile_tut_arithmetic_transpose_conjugate.vcxproj
│ │ │ │ ├── compile_tut_arithmetic_transpose_conjugate.vcxproj.filters
│ │ │ │ ├── compile_tut_arithmetic_transpose_inplace.cpp
│ │ │ │ ├── compile_tut_arithmetic_transpose_inplace.vcxproj
│ │ │ │ ├── compile_tut_arithmetic_transpose_inplace.vcxproj.filters
│ │ │ │ ├── compile_tut_matrix_assignment_resizing.cpp
│ │ │ │ ├── compile_tut_matrix_assignment_resizing.vcxproj
│ │ │ │ ├── compile_tut_matrix_assignment_resizing.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Block.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Block.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Block.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_CommaTemporary.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_CommaTemporary.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_CommaTemporary.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Join.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Join.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Join.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_LinSpaced.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_LinSpaced.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_LinSpaced.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_ThreeWays.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_ThreeWays.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_ThreeWays.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Zero.cpp
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Zero.vcxproj
│ │ │ │ ├── compile_Tutorial_AdvancedInitialization_Zero.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_commainit_01b.cpp
│ │ │ │ ├── compile_Tutorial_commainit_01b.vcxproj
│ │ │ │ ├── compile_Tutorial_commainit_01b.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_commainit_01.cpp
│ │ │ │ ├── compile_Tutorial_commainit_01.vcxproj
│ │ │ │ ├── compile_Tutorial_commainit_01.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_commainit_02.cpp
│ │ │ │ ├── compile_Tutorial_commainit_02.vcxproj
│ │ │ │ ├── compile_Tutorial_commainit_02.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_Map_rowmajor.cpp
│ │ │ │ ├── compile_Tutorial_Map_rowmajor.vcxproj
│ │ │ │ ├── compile_Tutorial_Map_rowmajor.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_Map_using.cpp
│ │ │ │ ├── compile_Tutorial_Map_using.vcxproj
│ │ │ │ ├── compile_Tutorial_Map_using.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Mat.cpp
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Mat.vcxproj
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Mat.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Vec.cpp
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Vec.vcxproj
│ │ │ │ ├── compile_Tutorial_ReshapeMat2Vec.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_SlicingCol.cpp
│ │ │ │ ├── compile_Tutorial_SlicingCol.vcxproj
│ │ │ │ ├── compile_Tutorial_SlicingCol.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_SlicingVec.cpp
│ │ │ │ ├── compile_Tutorial_SlicingVec.vcxproj
│ │ │ │ ├── compile_Tutorial_SlicingVec.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_matrix_inverse.cpp
│ │ │ │ ├── compile_Tutorial_solve_matrix_inverse.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_matrix_inverse.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_multiple_rhs.cpp
│ │ │ │ ├── compile_Tutorial_solve_multiple_rhs.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_multiple_rhs.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_reuse_decomposition.cpp
│ │ │ │ ├── compile_Tutorial_solve_reuse_decomposition.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_reuse_decomposition.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_singular.cpp
│ │ │ │ ├── compile_Tutorial_solve_singular.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_singular.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_triangular.cpp
│ │ │ │ ├── compile_Tutorial_solve_triangular_inplace.cpp
│ │ │ │ ├── compile_Tutorial_solve_triangular_inplace.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_triangular_inplace.vcxproj.filters
│ │ │ │ ├── compile_Tutorial_solve_triangular.vcxproj
│ │ │ │ ├── compile_Tutorial_solve_triangular.vcxproj.filters
│ │ │ │ ├── compile_VectorwiseOp_homogeneous.cpp
│ │ │ │ ├── compile_VectorwiseOp_homogeneous.vcxproj
│ │ │ │ ├── compile_VectorwiseOp_homogeneous.vcxproj.filters
│ │ │ │ ├── compile_Vectorwise_reverse.cpp
│ │ │ │ ├── compile_Vectorwise_reverse.vcxproj
│ │ │ │ ├── compile_Vectorwise_reverse.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ ├── special_examples
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── random_cpp11.vcxproj
│ │ │ │ ├── random_cpp11.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ └── unsupported
│ │ │ └── eigendoxy_layout.xml
│ │ ├── Eigen
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── Eigen3Config.cmake
│ │ ├── Eigen3ConfigVersion.cmake
│ │ ├── Eigen3.sln
│ │ ├── Eigen3Targets.cmake
│ │ ├── Experimental.vcxproj
│ │ ├── Experimental.vcxproj.filters
│ │ ├── install_manifest.txt
│ │ ├── INSTALL.vcxproj
│ │ ├── INSTALL.vcxproj.filters
│ │ ├── language_tests
│ │ │ └── Fortran
│ │ │ ├── CMakeCache.txt
│ │ │ ├── CMakeFiles
│ │ │ │ ├── 3.19.0-rc1
│ │ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ │ ├── CompilerIdFortran
│ │ │ │ │ │ ├── CMakeFortranCompilerId.F
│ │ │ │ │ │ ├── CompilerIdFortran.vfproj
│ │ │ │ │ │ └── tmp
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ │ └── VCTargetsPath.vcxproj
│ │ │ │ ├── cmake.check_cache
│ │ │ │ ├── CMakeError.log
│ │ │ │ └── CMakeOutput.log
│ │ │ └── CMakeLists.txt
│ │ ├── lapack
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── EigenLapack.sln
│ │ │ ├── eigen_lapack_static.vcxproj
│ │ │ ├── eigen_lapack_static.vcxproj.filters
│ │ │ ├── eigen_lapack.vcxproj
│ │ │ ├── eigen_lapack.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── lapack.vcxproj
│ │ │ ├── lapack.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── NightlyMemoryCheck.vcxproj
│ │ ├── NightlyMemoryCheck.vcxproj.filters
│ │ ├── Nightly.vcxproj
│ │ ├── Nightly.vcxproj.filters
│ │ ├── release.sh
│ │ ├── RUN_TESTS.vcxproj
│ │ ├── RUN_TESTS.vcxproj.filters
│ │ ├── scripts
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ └── RUN_TESTS.vcxproj.filters
│ │ ├── test
│ │ │ ├── adjoint_10.vcxproj
│ │ │ ├── adjoint_10.vcxproj.filters
│ │ │ ├── adjoint_11.vcxproj
│ │ │ ├── adjoint_11.vcxproj.filters
│ │ │ ├── adjoint_12.vcxproj
│ │ │ ├── adjoint_12.vcxproj.filters
│ │ │ ├── adjoint_13.vcxproj
│ │ │ ├── adjoint_13.vcxproj.filters
│ │ │ ├── adjoint_1.vcxproj
│ │ │ ├── adjoint_1.vcxproj.filters
│ │ │ ├── adjoint_2.vcxproj
│ │ │ ├── adjoint_2.vcxproj.filters
│ │ │ ├── adjoint_3.vcxproj
│ │ │ ├── adjoint_3.vcxproj.filters
│ │ │ ├── adjoint_4.vcxproj
│ │ │ ├── adjoint_4.vcxproj.filters
│ │ │ ├── adjoint_5.vcxproj
│ │ │ ├── adjoint_5.vcxproj.filters
│ │ │ ├── adjoint_6.vcxproj
│ │ │ ├── adjoint_6.vcxproj.filters
│ │ │ ├── adjoint_7.vcxproj
│ │ │ ├── adjoint_7.vcxproj.filters
│ │ │ ├── adjoint_8.vcxproj
│ │ │ ├── adjoint_8.vcxproj.filters
│ │ │ ├── adjoint_9.vcxproj
│ │ │ ├── adjoint_9.vcxproj.filters
│ │ │ ├── adjoint.vcxproj
│ │ │ ├── adjoint.vcxproj.filters
│ │ │ ├── array_1.vcxproj
│ │ │ ├── array_1.vcxproj.filters
│ │ │ ├── array_2.vcxproj
│ │ │ ├── array_2.vcxproj.filters
│ │ │ ├── array_3.vcxproj
│ │ │ ├── array_3.vcxproj.filters
│ │ │ ├── array_4.vcxproj
│ │ │ ├── array_4.vcxproj.filters
│ │ │ ├── array_5.vcxproj
│ │ │ ├── array_5.vcxproj.filters
│ │ │ ├── array_6.vcxproj
│ │ │ ├── array_6.vcxproj.filters
│ │ │ ├── array_for_matrix_1.vcxproj
│ │ │ ├── array_for_matrix_1.vcxproj.filters
│ │ │ ├── array_for_matrix_2.vcxproj
│ │ │ ├── array_for_matrix_2.vcxproj.filters
│ │ │ ├── array_for_matrix_3.vcxproj
│ │ │ ├── array_for_matrix_3.vcxproj.filters
│ │ │ ├── array_for_matrix_4.vcxproj
│ │ │ ├── array_for_matrix_4.vcxproj.filters
│ │ │ ├── array_for_matrix_5.vcxproj
│ │ │ ├── array_for_matrix_5.vcxproj.filters
│ │ │ ├── array_for_matrix_6.vcxproj
│ │ │ ├── array_for_matrix_6.vcxproj.filters
│ │ │ ├── array_for_matrix_7.vcxproj
│ │ │ ├── array_for_matrix_7.vcxproj.filters
│ │ │ ├── array_for_matrix_8.vcxproj
│ │ │ ├── array_for_matrix_8.vcxproj.filters
│ │ │ ├── array_for_matrix.vcxproj
│ │ │ ├── array_for_matrix.vcxproj.filters
│ │ │ ├── array_of_string.vcxproj
│ │ │ ├── array_of_string.vcxproj.filters
│ │ │ ├── array_replicate_1.vcxproj
│ │ │ ├── array_replicate_1.vcxproj.filters
│ │ │ ├── array_replicate_2.vcxproj
│ │ │ ├── array_replicate_2.vcxproj.filters
│ │ │ ├── array_replicate_3.vcxproj
│ │ │ ├── array_replicate_3.vcxproj.filters
│ │ │ ├── array_replicate_4.vcxproj
│ │ │ ├── array_replicate_4.vcxproj.filters
│ │ │ ├── array_replicate_5.vcxproj
│ │ │ ├── array_replicate_5.vcxproj.filters
│ │ │ ├── array_replicate_6.vcxproj
│ │ │ ├── array_replicate_6.vcxproj.filters
│ │ │ ├── array_replicate.vcxproj
│ │ │ ├── array_replicate.vcxproj.filters
│ │ │ ├── array_reverse_1.vcxproj
│ │ │ ├── array_reverse_1.vcxproj.filters
│ │ │ ├── array_reverse_2.vcxproj
│ │ │ ├── array_reverse_2.vcxproj.filters
│ │ │ ├── array_reverse_3.vcxproj
│ │ │ ├── array_reverse_3.vcxproj.filters
│ │ │ ├── array_reverse_4.vcxproj
│ │ │ ├── array_reverse_4.vcxproj.filters
│ │ │ ├── array_reverse_5.vcxproj
│ │ │ ├── array_reverse_5.vcxproj.filters
│ │ │ ├── array_reverse_6.vcxproj
│ │ │ ├── array_reverse_6.vcxproj.filters
│ │ │ ├── array_reverse_7.vcxproj
│ │ │ ├── array_reverse_7.vcxproj.filters
│ │ │ ├── array_reverse_8.vcxproj
│ │ │ ├── array_reverse_8.vcxproj.filters
│ │ │ ├── array_reverse_9.vcxproj
│ │ │ ├── array_reverse_9.vcxproj.filters
│ │ │ ├── array_reverse.vcxproj
│ │ │ ├── array_reverse.vcxproj.filters
│ │ │ ├── array.vcxproj
│ │ │ ├── array.vcxproj.filters
│ │ │ ├── bandmatrix.vcxproj
│ │ │ ├── bandmatrix.vcxproj.filters
│ │ │ ├── basicstuff_1.vcxproj
│ │ │ ├── basicstuff_1.vcxproj.filters
│ │ │ ├── basicstuff_2.vcxproj
│ │ │ ├── basicstuff_2.vcxproj.filters
│ │ │ ├── basicstuff_3.vcxproj
│ │ │ ├── basicstuff_3.vcxproj.filters
│ │ │ ├── basicstuff_4.vcxproj
│ │ │ ├── basicstuff_4.vcxproj.filters
│ │ │ ├── basicstuff_5.vcxproj
│ │ │ ├── basicstuff_5.vcxproj.filters
│ │ │ ├── basicstuff_6.vcxproj
│ │ │ ├── basicstuff_6.vcxproj.filters
│ │ │ ├── basicstuff_7.vcxproj
│ │ │ ├── basicstuff_7.vcxproj.filters
│ │ │ ├── basicstuff.vcxproj
│ │ │ ├── basicstuff.vcxproj.filters
│ │ │ ├── bdcsvd_101.vcxproj
│ │ │ ├── bdcsvd_101.vcxproj.filters
│ │ │ ├── bdcsvd_102.vcxproj
│ │ │ ├── bdcsvd_102.vcxproj.filters
│ │ │ ├── bdcsvd_10.vcxproj
│ │ │ ├── bdcsvd_10.vcxproj.filters
│ │ │ ├── bdcsvd_1.vcxproj
│ │ │ ├── bdcsvd_1.vcxproj.filters
│ │ │ ├── bdcsvd_2.vcxproj
│ │ │ ├── bdcsvd_2.vcxproj.filters
│ │ │ ├── bdcsvd_3.vcxproj
│ │ │ ├── bdcsvd_3.vcxproj.filters
│ │ │ ├── bdcsvd_4.vcxproj
│ │ │ ├── bdcsvd_4.vcxproj.filters
│ │ │ ├── bdcsvd_5.vcxproj
│ │ │ ├── bdcsvd_5.vcxproj.filters
│ │ │ ├── bdcsvd_6.vcxproj
│ │ │ ├── bdcsvd_6.vcxproj.filters
│ │ │ ├── bdcsvd_7.vcxproj
│ │ │ ├── bdcsvd_7.vcxproj.filters
│ │ │ ├── bdcsvd_8.vcxproj
│ │ │ ├── bdcsvd_8.vcxproj.filters
│ │ │ ├── bdcsvd_9.vcxproj
│ │ │ ├── bdcsvd_9.vcxproj.filters
│ │ │ ├── bdcsvd.vcxproj
│ │ │ ├── bdcsvd.vcxproj.filters
│ │ │ ├── bicgstab_1.vcxproj
│ │ │ ├── bicgstab_1.vcxproj.filters
│ │ │ ├── bicgstab_2.vcxproj
│ │ │ ├── bicgstab_2.vcxproj.filters
│ │ │ ├── bicgstab_3.vcxproj
│ │ │ ├── bicgstab_3.vcxproj.filters
│ │ │ ├── bicgstab.vcxproj
│ │ │ ├── bicgstab.vcxproj.filters
│ │ │ ├── block_1.vcxproj
│ │ │ ├── block_1.vcxproj.filters
│ │ │ ├── block_2.vcxproj
│ │ │ ├── block_2.vcxproj.filters
│ │ │ ├── block_3.vcxproj
│ │ │ ├── block_3.vcxproj.filters
│ │ │ ├── block_4.vcxproj
│ │ │ ├── block_4.vcxproj.filters
│ │ │ ├── block_5.vcxproj
│ │ │ ├── block_5.vcxproj.filters
│ │ │ ├── block_6.vcxproj
│ │ │ ├── block_6.vcxproj.filters
│ │ │ ├── block_7.vcxproj
│ │ │ ├── block_7.vcxproj.filters
│ │ │ ├── block_8.vcxproj
│ │ │ ├── block_8.vcxproj.filters
│ │ │ ├── block.vcxproj
│ │ │ ├── block.vcxproj.filters
│ │ │ ├── bug1213.vcxproj
│ │ │ ├── bug1213.vcxproj.filters
│ │ │ ├── BuildOfficial.vcxproj
│ │ │ ├── BuildOfficial.vcxproj.filters
│ │ │ ├── cholesky_1.vcxproj
│ │ │ ├── cholesky_1.vcxproj.filters
│ │ │ ├── cholesky_2.vcxproj
│ │ │ ├── cholesky_2.vcxproj.filters
│ │ │ ├── cholesky_3.vcxproj
│ │ │ ├── cholesky_3.vcxproj.filters
│ │ │ ├── cholesky_4.vcxproj
│ │ │ ├── cholesky_4.vcxproj.filters
│ │ │ ├── cholesky_5.vcxproj
│ │ │ ├── cholesky_5.vcxproj.filters
│ │ │ ├── cholesky_6.vcxproj
│ │ │ ├── cholesky_6.vcxproj.filters
│ │ │ ├── cholesky_7.vcxproj
│ │ │ ├── cholesky_7.vcxproj.filters
│ │ │ ├── cholesky_8.vcxproj
│ │ │ ├── cholesky_8.vcxproj.filters
│ │ │ ├── cholesky_9.vcxproj
│ │ │ ├── cholesky_9.vcxproj.filters
│ │ │ ├── cholesky.vcxproj
│ │ │ ├── cholesky.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── adjoint_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── adjoint_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_for_matrix_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_of_string.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_replicate_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── array_reverse_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bandmatrix.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── basicstuff_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_101.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_102.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bdcsvd_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bicgstab_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bicgstab_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── bicgstab_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── block_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cholesky_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── commainitializer.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conjugate_gradient_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conjugate_gradient_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conjugate_gradient_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── conservative_resize_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── constructor_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── corners_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── corners_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── corners_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── corners_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── corners_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ctorleak.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dense_storage.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── determinant_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonal_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonal_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── diagonalmatrices_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dontalign_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── dynalloc.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_complex_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_complex_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_complex_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_complex_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_complex_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generalized_real_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generalized_real_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generalized_real_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generalized_real_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generic_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generic_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generic_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generic_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_generic_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── eigensolver_selfadjoint_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── evaluators.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── exceptions.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── fastmath.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── first_aligned.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── generate.stamp
│ │ │ │ ├── generate.stamp.depend
│ │ │ │ ├── geo_alignedbox_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_14.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_alignedbox_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_eulerangles_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_eulerangles_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_homogeneous_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_homogeneous_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_homogeneous_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_hyperplane_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_hyperplane_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_hyperplane_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_hyperplane_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_hyperplane_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_orthomethods_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_parametrizedline_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_parametrizedline_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_parametrizedline_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_parametrizedline_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_quaternion_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── geo_transformations_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── half_float.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── hessenberg_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── householder_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── incomplete_cholesky_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── incomplete_cholesky_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── incomplete_cholesky_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inplace_decomposition_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── integer_types_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── inverse_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── is_same_dense.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobi_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── jacobisvd_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── linearstructure_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lscg_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lscg_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── lu_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapped_matrix_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstaticmethods_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mapstride_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── meta.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── miscmatrices_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── miscmatrices_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── miscmatrices_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── miscmatrices_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── miscmatrices_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mixingtypes_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── mpl2only.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nesting_ops_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nesting_ops_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nesting_ops_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nesting_ops_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nomalloc_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── nullary_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── numext.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── packetmath_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── packetmath_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── packetmath_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── packetmath_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── packetmath_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── permutationmatrices_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── prec_inverse_4x4_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── prec_inverse_4x4_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── prec_inverse_4x4_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_extra_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_large_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_mmtr_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_mmtr_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_mmtr_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_mmtr_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_notemporary_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_notemporary_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_notemporary_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_notemporary_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_selfadjoint_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_21.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_22.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_23.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_31.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_32.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_33.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_41.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_42.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_43.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_small_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_symm_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_syrk_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_syrk_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_syrk_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_syrk_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_111.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_112.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_113.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_114.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_121.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_122.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_123.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_124.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_131.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_132.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_133.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_134.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_14.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_21.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_22.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_23.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_24.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_31.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_32.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_33.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmm_34.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trmv_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_13.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_14.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── product_trsolve_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_colpivoting_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── qr_fullpivoting_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── rand.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── real_qz_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── real_qz_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── real_qz_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── real_qz_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── redux_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── ref_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── resize.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── rvalue_types_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── rvalue_types_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_complex_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_complex_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_complex_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_complex_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_complex_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_real_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_real_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_real_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_real_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── schur_real_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── selfadjoint_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── selfadjoint_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── selfadjoint_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── selfadjoint_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── selfadjoint_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── simplicial_cholesky_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── simplicial_cholesky_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── simplicial_cholesky_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sizeof.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sizeoverflow.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── smallvectors.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_basic_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_block_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_block_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_block_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_block_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparselu_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparselu_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparselu_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparselu_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_permutations_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_permutations_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_product_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_product_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_product_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_product_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_product_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparseqr_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparseqr_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_ref_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_ref_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_ref_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_solvers_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_solvers_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_vector_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_vector_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── special_numbers_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stable_norm_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stable_norm_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stable_norm_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stable_norm_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stable_norm_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_overload_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_overload_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_overload_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_overload_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stddeque_overload_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_overload_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_overload_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_overload_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_overload_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdlist_overload_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_overload_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_overload_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_overload_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_overload_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── stdvector_overload_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── swap_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── swap_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── swap_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── swap_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── triangular_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── umeyama_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── unalignedassert_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── unalignedassert_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── unalignedassert_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── unalignedassert_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── unalignedcount.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── upperbidiagonalization_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorization_logic_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorization_logic_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── vectorwiseop_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── visitor_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ └── zerosized.dir
│ │ │ │ ├── Labels.json
│ │ │ │ └── Labels.txt
│ │ │ ├── cmake_install.cmake
│ │ │ ├── commainitializer.vcxproj
│ │ │ ├── commainitializer.vcxproj.filters
│ │ │ ├── conjugate_gradient_1.vcxproj
│ │ │ ├── conjugate_gradient_1.vcxproj.filters
│ │ │ ├── conjugate_gradient_2.vcxproj
│ │ │ ├── conjugate_gradient_2.vcxproj.filters
│ │ │ ├── conjugate_gradient_3.vcxproj
│ │ │ ├── conjugate_gradient_3.vcxproj.filters
│ │ │ ├── conjugate_gradient.vcxproj
│ │ │ ├── conjugate_gradient.vcxproj.filters
│ │ │ ├── conservative_resize_1.vcxproj
│ │ │ ├── conservative_resize_1.vcxproj.filters
│ │ │ ├── conservative_resize_2.vcxproj
│ │ │ ├── conservative_resize_2.vcxproj.filters
│ │ │ ├── conservative_resize_3.vcxproj
│ │ │ ├── conservative_resize_3.vcxproj.filters
│ │ │ ├── conservative_resize_4.vcxproj
│ │ │ ├── conservative_resize_4.vcxproj.filters
│ │ │ ├── conservative_resize_5.vcxproj
│ │ │ ├── conservative_resize_5.vcxproj.filters
│ │ │ ├── conservative_resize_6.vcxproj
│ │ │ ├── conservative_resize_6.vcxproj.filters
│ │ │ ├── conservative_resize.vcxproj
│ │ │ ├── conservative_resize.vcxproj.filters
│ │ │ ├── constructor_1.vcxproj
│ │ │ ├── constructor_1.vcxproj.filters
│ │ │ ├── constructor.vcxproj
│ │ │ ├── constructor.vcxproj.filters
│ │ │ ├── corners_1.vcxproj
│ │ │ ├── corners_1.vcxproj.filters
│ │ │ ├── corners_2.vcxproj
│ │ │ ├── corners_2.vcxproj.filters
│ │ │ ├── corners_3.vcxproj
│ │ │ ├── corners_3.vcxproj.filters
│ │ │ ├── corners_4.vcxproj
│ │ │ ├── corners_4.vcxproj.filters
│ │ │ ├── corners_5.vcxproj
│ │ │ ├── corners_5.vcxproj.filters
│ │ │ ├── corners.vcxproj
│ │ │ ├── corners.vcxproj.filters
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── ctorleak.vcxproj
│ │ │ ├── ctorleak.vcxproj.filters
│ │ │ ├── dense_storage.vcxproj
│ │ │ ├── dense_storage.vcxproj.filters
│ │ │ ├── determinant_1.vcxproj
│ │ │ ├── determinant_1.vcxproj.filters
│ │ │ ├── determinant_2.vcxproj
│ │ │ ├── determinant_2.vcxproj.filters
│ │ │ ├── determinant_3.vcxproj
│ │ │ ├── determinant_3.vcxproj.filters
│ │ │ ├── determinant_4.vcxproj
│ │ │ ├── determinant_4.vcxproj.filters
│ │ │ ├── determinant_5.vcxproj
│ │ │ ├── determinant_5.vcxproj.filters
│ │ │ ├── determinant_6.vcxproj
│ │ │ ├── determinant_6.vcxproj.filters
│ │ │ ├── determinant.vcxproj
│ │ │ ├── determinant.vcxproj.filters
│ │ │ ├── diagonal_1.vcxproj
│ │ │ ├── diagonal_1.vcxproj.filters
│ │ │ ├── diagonal_2.vcxproj
│ │ │ ├── diagonal_2.vcxproj.filters
│ │ │ ├── diagonalmatrices_10.vcxproj
│ │ │ ├── diagonalmatrices_10.vcxproj.filters
│ │ │ ├── diagonalmatrices_1.vcxproj
│ │ │ ├── diagonalmatrices_1.vcxproj.filters
│ │ │ ├── diagonalmatrices_2.vcxproj
│ │ │ ├── diagonalmatrices_2.vcxproj.filters
│ │ │ ├── diagonalmatrices_3.vcxproj
│ │ │ ├── diagonalmatrices_3.vcxproj.filters
│ │ │ ├── diagonalmatrices_4.vcxproj
│ │ │ ├── diagonalmatrices_4.vcxproj.filters
│ │ │ ├── diagonalmatrices_5.vcxproj
│ │ │ ├── diagonalmatrices_5.vcxproj.filters
│ │ │ ├── diagonalmatrices_6.vcxproj
│ │ │ ├── diagonalmatrices_6.vcxproj.filters
│ │ │ ├── diagonalmatrices_7.vcxproj
│ │ │ ├── diagonalmatrices_7.vcxproj.filters
│ │ │ ├── diagonalmatrices_8.vcxproj
│ │ │ ├── diagonalmatrices_8.vcxproj.filters
│ │ │ ├── diagonalmatrices_9.vcxproj
│ │ │ ├── diagonalmatrices_9.vcxproj.filters
│ │ │ ├── diagonalmatrices.vcxproj
│ │ │ ├── diagonalmatrices.vcxproj.filters
│ │ │ ├── diagonal.vcxproj
│ │ │ ├── diagonal.vcxproj.filters
│ │ │ ├── dontalign_1.vcxproj
│ │ │ ├── dontalign_1.vcxproj.filters
│ │ │ ├── dontalign_2.vcxproj
│ │ │ ├── dontalign_2.vcxproj.filters
│ │ │ ├── dontalign_3.vcxproj
│ │ │ ├── dontalign_3.vcxproj.filters
│ │ │ ├── dontalign_4.vcxproj
│ │ │ ├── dontalign_4.vcxproj.filters
│ │ │ ├── dontalign_5.vcxproj
│ │ │ ├── dontalign_5.vcxproj.filters
│ │ │ ├── dontalign_6.vcxproj
│ │ │ ├── dontalign_6.vcxproj.filters
│ │ │ ├── dontalign_7.vcxproj
│ │ │ ├── dontalign_7.vcxproj.filters
│ │ │ ├── dontalign_8.vcxproj
│ │ │ ├── dontalign_8.vcxproj.filters
│ │ │ ├── dontalign.vcxproj
│ │ │ ├── dontalign.vcxproj.filters
│ │ │ ├── dynalloc.vcxproj
│ │ │ ├── dynalloc.vcxproj.filters
│ │ │ ├── eigensolver_complex_1.vcxproj
│ │ │ ├── eigensolver_complex_1.vcxproj.filters
│ │ │ ├── eigensolver_complex_2.vcxproj
│ │ │ ├── eigensolver_complex_2.vcxproj.filters
│ │ │ ├── eigensolver_complex_3.vcxproj
│ │ │ ├── eigensolver_complex_3.vcxproj.filters
│ │ │ ├── eigensolver_complex_4.vcxproj
│ │ │ ├── eigensolver_complex_4.vcxproj.filters
│ │ │ ├── eigensolver_complex_5.vcxproj
│ │ │ ├── eigensolver_complex_5.vcxproj.filters
│ │ │ ├── eigensolver_complex.vcxproj
│ │ │ ├── eigensolver_complex.vcxproj.filters
│ │ │ ├── eigensolver_generalized_real_1.vcxproj
│ │ │ ├── eigensolver_generalized_real_1.vcxproj.filters
│ │ │ ├── eigensolver_generalized_real_2.vcxproj
│ │ │ ├── eigensolver_generalized_real_2.vcxproj.filters
│ │ │ ├── eigensolver_generalized_real_3.vcxproj
│ │ │ ├── eigensolver_generalized_real_3.vcxproj.filters
│ │ │ ├── eigensolver_generalized_real_4.vcxproj
│ │ │ ├── eigensolver_generalized_real_4.vcxproj.filters
│ │ │ ├── eigensolver_generalized_real.vcxproj
│ │ │ ├── eigensolver_generalized_real.vcxproj.filters
│ │ │ ├── eigensolver_generic_1.vcxproj
│ │ │ ├── eigensolver_generic_1.vcxproj.filters
│ │ │ ├── eigensolver_generic_2.vcxproj
│ │ │ ├── eigensolver_generic_2.vcxproj.filters
│ │ │ ├── eigensolver_generic_3.vcxproj
│ │ │ ├── eigensolver_generic_3.vcxproj.filters
│ │ │ ├── eigensolver_generic_4.vcxproj
│ │ │ ├── eigensolver_generic_4.vcxproj.filters
│ │ │ ├── eigensolver_generic_5.vcxproj
│ │ │ ├── eigensolver_generic_5.vcxproj.filters
│ │ │ ├── eigensolver_generic.vcxproj
│ │ │ ├── eigensolver_generic.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_12.vcxproj
│ │ │ ├── eigensolver_selfadjoint_12.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_13.vcxproj
│ │ │ ├── eigensolver_selfadjoint_13.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_1.vcxproj
│ │ │ ├── eigensolver_selfadjoint_1.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_2.vcxproj
│ │ │ ├── eigensolver_selfadjoint_2.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_3.vcxproj
│ │ │ ├── eigensolver_selfadjoint_3.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_4.vcxproj
│ │ │ ├── eigensolver_selfadjoint_4.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_5.vcxproj
│ │ │ ├── eigensolver_selfadjoint_5.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_6.vcxproj
│ │ │ ├── eigensolver_selfadjoint_6.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_7.vcxproj
│ │ │ ├── eigensolver_selfadjoint_7.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_8.vcxproj
│ │ │ ├── eigensolver_selfadjoint_8.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint_9.vcxproj
│ │ │ ├── eigensolver_selfadjoint_9.vcxproj.filters
│ │ │ ├── eigensolver_selfadjoint.vcxproj
│ │ │ ├── eigensolver_selfadjoint.vcxproj.filters
│ │ │ ├── evaluators.vcxproj
│ │ │ ├── evaluators.vcxproj.filters
│ │ │ ├── exceptions.vcxproj
│ │ │ ├── exceptions.vcxproj.filters
│ │ │ ├── failtests
│ │ │ ├── fastmath.vcxproj
│ │ │ ├── fastmath.vcxproj.filters
│ │ │ ├── first_aligned.vcxproj
│ │ │ ├── first_aligned.vcxproj.filters
│ │ │ ├── geo_alignedbox_10.vcxproj
│ │ │ ├── geo_alignedbox_10.vcxproj.filters
│ │ │ ├── geo_alignedbox_11.vcxproj
│ │ │ ├── geo_alignedbox_11.vcxproj.filters
│ │ │ ├── geo_alignedbox_12.vcxproj
│ │ │ ├── geo_alignedbox_12.vcxproj.filters
│ │ │ ├── geo_alignedbox_13.vcxproj
│ │ │ ├── geo_alignedbox_13.vcxproj.filters
│ │ │ ├── geo_alignedbox_14.vcxproj
│ │ │ ├── geo_alignedbox_14.vcxproj.filters
│ │ │ ├── geo_alignedbox_1.vcxproj
│ │ │ ├── geo_alignedbox_1.vcxproj.filters
│ │ │ ├── geo_alignedbox_2.vcxproj
│ │ │ ├── geo_alignedbox_2.vcxproj.filters
│ │ │ ├── geo_alignedbox_3.vcxproj
│ │ │ ├── geo_alignedbox_3.vcxproj.filters
│ │ │ ├── geo_alignedbox_4.vcxproj
│ │ │ ├── geo_alignedbox_4.vcxproj.filters
│ │ │ ├── geo_alignedbox_5.vcxproj
│ │ │ ├── geo_alignedbox_5.vcxproj.filters
│ │ │ ├── geo_alignedbox_6.vcxproj
│ │ │ ├── geo_alignedbox_6.vcxproj.filters
│ │ │ ├── geo_alignedbox_7.vcxproj
│ │ │ ├── geo_alignedbox_7.vcxproj.filters
│ │ │ ├── geo_alignedbox_8.vcxproj
│ │ │ ├── geo_alignedbox_8.vcxproj.filters
│ │ │ ├── geo_alignedbox_9.vcxproj
│ │ │ ├── geo_alignedbox_9.vcxproj.filters
│ │ │ ├── geo_alignedbox.vcxproj
│ │ │ ├── geo_alignedbox.vcxproj.filters
│ │ │ ├── geo_eulerangles_1.vcxproj
│ │ │ ├── geo_eulerangles_1.vcxproj.filters
│ │ │ ├── geo_eulerangles_2.vcxproj
│ │ │ ├── geo_eulerangles_2.vcxproj.filters
│ │ │ ├── geo_eulerangles.vcxproj
│ │ │ ├── geo_eulerangles.vcxproj.filters
│ │ │ ├── geo_homogeneous_1.vcxproj
│ │ │ ├── geo_homogeneous_1.vcxproj.filters
│ │ │ ├── geo_homogeneous_2.vcxproj
│ │ │ ├── geo_homogeneous_2.vcxproj.filters
│ │ │ ├── geo_homogeneous_3.vcxproj
│ │ │ ├── geo_homogeneous_3.vcxproj.filters
│ │ │ ├── geo_homogeneous.vcxproj
│ │ │ ├── geo_homogeneous.vcxproj.filters
│ │ │ ├── geo_hyperplane_1.vcxproj
│ │ │ ├── geo_hyperplane_1.vcxproj.filters
│ │ │ ├── geo_hyperplane_2.vcxproj
│ │ │ ├── geo_hyperplane_2.vcxproj.filters
│ │ │ ├── geo_hyperplane_3.vcxproj
│ │ │ ├── geo_hyperplane_3.vcxproj.filters
│ │ │ ├── geo_hyperplane_4.vcxproj
│ │ │ ├── geo_hyperplane_4.vcxproj.filters
│ │ │ ├── geo_hyperplane_5.vcxproj
│ │ │ ├── geo_hyperplane_5.vcxproj.filters
│ │ │ ├── geo_hyperplane.vcxproj
│ │ │ ├── geo_hyperplane.vcxproj.filters
│ │ │ ├── geo_orthomethods_1.vcxproj
│ │ │ ├── geo_orthomethods_1.vcxproj.filters
│ │ │ ├── geo_orthomethods_2.vcxproj
│ │ │ ├── geo_orthomethods_2.vcxproj.filters
│ │ │ ├── geo_orthomethods_3.vcxproj
│ │ │ ├── geo_orthomethods_3.vcxproj.filters
│ │ │ ├── geo_orthomethods_4.vcxproj
│ │ │ ├── geo_orthomethods_4.vcxproj.filters
│ │ │ ├── geo_orthomethods_5.vcxproj
│ │ │ ├── geo_orthomethods_5.vcxproj.filters
│ │ │ ├── geo_orthomethods_6.vcxproj
│ │ │ ├── geo_orthomethods_6.vcxproj.filters
│ │ │ ├── geo_orthomethods.vcxproj
│ │ │ ├── geo_orthomethods.vcxproj.filters
│ │ │ ├── geo_parametrizedline_1.vcxproj
│ │ │ ├── geo_parametrizedline_1.vcxproj.filters
│ │ │ ├── geo_parametrizedline_2.vcxproj
│ │ │ ├── geo_parametrizedline_2.vcxproj.filters
│ │ │ ├── geo_parametrizedline_3.vcxproj
│ │ │ ├── geo_parametrizedline_3.vcxproj.filters
│ │ │ ├── geo_parametrizedline_4.vcxproj
│ │ │ ├── geo_parametrizedline_4.vcxproj.filters
│ │ │ ├── geo_parametrizedline.vcxproj
│ │ │ ├── geo_parametrizedline.vcxproj.filters
│ │ │ ├── geo_quaternion_1.vcxproj
│ │ │ ├── geo_quaternion_1.vcxproj.filters
│ │ │ ├── geo_quaternion_2.vcxproj
│ │ │ ├── geo_quaternion_2.vcxproj.filters
│ │ │ ├── geo_quaternion_3.vcxproj
│ │ │ ├── geo_quaternion_3.vcxproj.filters
│ │ │ ├── geo_quaternion_4.vcxproj
│ │ │ ├── geo_quaternion_4.vcxproj.filters
│ │ │ ├── geo_quaternion_5.vcxproj
│ │ │ ├── geo_quaternion_5.vcxproj.filters
│ │ │ ├── geo_quaternion_6.vcxproj
│ │ │ ├── geo_quaternion_6.vcxproj.filters
│ │ │ ├── geo_quaternion.vcxproj
│ │ │ ├── geo_quaternion.vcxproj.filters
│ │ │ ├── geo_transformations_1.vcxproj
│ │ │ ├── geo_transformations_1.vcxproj.filters
│ │ │ ├── geo_transformations_2.vcxproj
│ │ │ ├── geo_transformations_2.vcxproj.filters
│ │ │ ├── geo_transformations_3.vcxproj
│ │ │ ├── geo_transformations_3.vcxproj.filters
│ │ │ ├── geo_transformations_4.vcxproj
│ │ │ ├── geo_transformations_4.vcxproj.filters
│ │ │ ├── geo_transformations_5.vcxproj
│ │ │ ├── geo_transformations_5.vcxproj.filters
│ │ │ ├── geo_transformations_6.vcxproj
│ │ │ ├── geo_transformations_6.vcxproj.filters
│ │ │ ├── geo_transformations_7.vcxproj
│ │ │ ├── geo_transformations_7.vcxproj.filters
│ │ │ ├── geo_transformations_8.vcxproj
│ │ │ ├── geo_transformations_8.vcxproj.filters
│ │ │ ├── geo_transformations.vcxproj
│ │ │ ├── geo_transformations.vcxproj.filters
│ │ │ ├── half_float.vcxproj
│ │ │ ├── half_float.vcxproj.filters
│ │ │ ├── hessenberg_1.vcxproj
│ │ │ ├── hessenberg_1.vcxproj.filters
│ │ │ ├── hessenberg_2.vcxproj
│ │ │ ├── hessenberg_2.vcxproj.filters
│ │ │ ├── hessenberg_3.vcxproj
│ │ │ ├── hessenberg_3.vcxproj.filters
│ │ │ ├── hessenberg_4.vcxproj
│ │ │ ├── hessenberg_4.vcxproj.filters
│ │ │ ├── hessenberg_5.vcxproj
│ │ │ ├── hessenberg_5.vcxproj.filters
│ │ │ ├── hessenberg_6.vcxproj
│ │ │ ├── hessenberg_6.vcxproj.filters
│ │ │ ├── hessenberg.vcxproj
│ │ │ ├── hessenberg.vcxproj.filters
│ │ │ ├── householder_1.vcxproj
│ │ │ ├── householder_1.vcxproj.filters
│ │ │ ├── householder_2.vcxproj
│ │ │ ├── householder_2.vcxproj.filters
│ │ │ ├── householder_3.vcxproj
│ │ │ ├── householder_3.vcxproj.filters
│ │ │ ├── householder_4.vcxproj
│ │ │ ├── householder_4.vcxproj.filters
│ │ │ ├── householder_5.vcxproj
│ │ │ ├── householder_5.vcxproj.filters
│ │ │ ├── householder_6.vcxproj
│ │ │ ├── householder_6.vcxproj.filters
│ │ │ ├── householder_7.vcxproj
│ │ │ ├── householder_7.vcxproj.filters
│ │ │ ├── householder_8.vcxproj
│ │ │ ├── householder_8.vcxproj.filters
│ │ │ ├── householder.vcxproj
│ │ │ ├── householder.vcxproj.filters
│ │ │ ├── incomplete_cholesky_1.vcxproj
│ │ │ ├── incomplete_cholesky_1.vcxproj.filters
│ │ │ ├── incomplete_cholesky_2.vcxproj
│ │ │ ├── incomplete_cholesky_2.vcxproj.filters
│ │ │ ├── incomplete_cholesky_3.vcxproj
│ │ │ ├── incomplete_cholesky_3.vcxproj.filters
│ │ │ ├── incomplete_cholesky.vcxproj
│ │ │ ├── incomplete_cholesky.vcxproj.filters
│ │ │ ├── inplace_decomposition_1.vcxproj
│ │ │ ├── inplace_decomposition_1.vcxproj.filters
│ │ │ ├── inplace_decomposition_2.vcxproj
│ │ │ ├── inplace_decomposition_2.vcxproj.filters
│ │ │ ├── inplace_decomposition_3.vcxproj
│ │ │ ├── inplace_decomposition_3.vcxproj.filters
│ │ │ ├── inplace_decomposition_4.vcxproj
│ │ │ ├── inplace_decomposition_4.vcxproj.filters
│ │ │ ├── inplace_decomposition_5.vcxproj
│ │ │ ├── inplace_decomposition_5.vcxproj.filters
│ │ │ ├── inplace_decomposition_6.vcxproj
│ │ │ ├── inplace_decomposition_6.vcxproj.filters
│ │ │ ├── inplace_decomposition_7.vcxproj
│ │ │ ├── inplace_decomposition_7.vcxproj.filters
│ │ │ ├── inplace_decomposition_8.vcxproj
│ │ │ ├── inplace_decomposition_8.vcxproj.filters
│ │ │ ├── inplace_decomposition.vcxproj
│ │ │ ├── inplace_decomposition.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── integer_types_1.vcxproj
│ │ │ ├── integer_types_1.vcxproj.filters
│ │ │ ├── integer_types_2.vcxproj
│ │ │ ├── integer_types_2.vcxproj.filters
│ │ │ ├── integer_types_3.vcxproj
│ │ │ ├── integer_types_3.vcxproj.filters
│ │ │ ├── integer_types_4.vcxproj
│ │ │ ├── integer_types_4.vcxproj.filters
│ │ │ ├── integer_types_5.vcxproj
│ │ │ ├── integer_types_5.vcxproj.filters
│ │ │ ├── integer_types_6.vcxproj
│ │ │ ├── integer_types_6.vcxproj.filters
│ │ │ ├── integer_types_7.vcxproj
│ │ │ ├── integer_types_7.vcxproj.filters
│ │ │ ├── integer_types_8.vcxproj
│ │ │ ├── integer_types_8.vcxproj.filters
│ │ │ ├── integer_types_9.vcxproj
│ │ │ ├── integer_types_9.vcxproj.filters
│ │ │ ├── integer_types.vcxproj
│ │ │ ├── integer_types.vcxproj.filters
│ │ │ ├── inverse_1.vcxproj
│ │ │ ├── inverse_1.vcxproj.filters
│ │ │ ├── inverse_2.vcxproj
│ │ │ ├── inverse_2.vcxproj.filters
│ │ │ ├── inverse_3.vcxproj
│ │ │ ├── inverse_3.vcxproj.filters
│ │ │ ├── inverse_4.vcxproj
│ │ │ ├── inverse_4.vcxproj.filters
│ │ │ ├── inverse_5.vcxproj
│ │ │ ├── inverse_5.vcxproj.filters
│ │ │ ├── inverse_6.vcxproj
│ │ │ ├── inverse_6.vcxproj.filters
│ │ │ ├── inverse_7.vcxproj
│ │ │ ├── inverse_7.vcxproj.filters
│ │ │ ├── inverse_8.vcxproj
│ │ │ ├── inverse_8.vcxproj.filters
│ │ │ ├── inverse.vcxproj
│ │ │ ├── inverse.vcxproj.filters
│ │ │ ├── is_same_dense.vcxproj
│ │ │ ├── is_same_dense.vcxproj.filters
│ │ │ ├── jacobi_1.vcxproj
│ │ │ ├── jacobi_1.vcxproj.filters
│ │ │ ├── jacobi_2.vcxproj
│ │ │ ├── jacobi_2.vcxproj.filters
│ │ │ ├── jacobi_3.vcxproj
│ │ │ ├── jacobi_3.vcxproj.filters
│ │ │ ├── jacobi_4.vcxproj
│ │ │ ├── jacobi_4.vcxproj.filters
│ │ │ ├── jacobi_5.vcxproj
│ │ │ ├── jacobi_5.vcxproj.filters
│ │ │ ├── jacobi_6.vcxproj
│ │ │ ├── jacobi_6.vcxproj.filters
│ │ │ ├── jacobisvd_10.vcxproj
│ │ │ ├── jacobisvd_10.vcxproj.filters
│ │ │ ├── jacobisvd_11.vcxproj
│ │ │ ├── jacobisvd_11.vcxproj.filters
│ │ │ ├── jacobisvd_12.vcxproj
│ │ │ ├── jacobisvd_12.vcxproj.filters
│ │ │ ├── jacobisvd_13.vcxproj
│ │ │ ├── jacobisvd_13.vcxproj.filters
│ │ │ ├── jacobisvd_1.vcxproj
│ │ │ ├── jacobisvd_1.vcxproj.filters
│ │ │ ├── jacobisvd_2.vcxproj
│ │ │ ├── jacobisvd_2.vcxproj.filters
│ │ │ ├── jacobisvd_3.vcxproj
│ │ │ ├── jacobisvd_3.vcxproj.filters
│ │ │ ├── jacobisvd_4.vcxproj
│ │ │ ├── jacobisvd_4.vcxproj.filters
│ │ │ ├── jacobisvd_5.vcxproj
│ │ │ ├── jacobisvd_5.vcxproj.filters
│ │ │ ├── jacobisvd_6.vcxproj
│ │ │ ├── jacobisvd_6.vcxproj.filters
│ │ │ ├── jacobisvd_7.vcxproj
│ │ │ ├── jacobisvd_7.vcxproj.filters
│ │ │ ├── jacobisvd_8.vcxproj
│ │ │ ├── jacobisvd_8.vcxproj.filters
│ │ │ ├── jacobisvd_9.vcxproj
│ │ │ ├── jacobisvd_9.vcxproj.filters
│ │ │ ├── jacobisvd.vcxproj
│ │ │ ├── jacobisvd.vcxproj.filters
│ │ │ ├── jacobi.vcxproj
│ │ │ ├── jacobi.vcxproj.filters
│ │ │ ├── linearstructure_10.vcxproj
│ │ │ ├── linearstructure_10.vcxproj.filters
│ │ │ ├── linearstructure_11.vcxproj
│ │ │ ├── linearstructure_11.vcxproj.filters
│ │ │ ├── linearstructure_1.vcxproj
│ │ │ ├── linearstructure_1.vcxproj.filters
│ │ │ ├── linearstructure_2.vcxproj
│ │ │ ├── linearstructure_2.vcxproj.filters
│ │ │ ├── linearstructure_3.vcxproj
│ │ │ ├── linearstructure_3.vcxproj.filters
│ │ │ ├── linearstructure_4.vcxproj
│ │ │ ├── linearstructure_4.vcxproj.filters
│ │ │ ├── linearstructure_5.vcxproj
│ │ │ ├── linearstructure_5.vcxproj.filters
│ │ │ ├── linearstructure_6.vcxproj
│ │ │ ├── linearstructure_6.vcxproj.filters
│ │ │ ├── linearstructure_7.vcxproj
│ │ │ ├── linearstructure_7.vcxproj.filters
│ │ │ ├── linearstructure_8.vcxproj
│ │ │ ├── linearstructure_8.vcxproj.filters
│ │ │ ├── linearstructure_9.vcxproj
│ │ │ ├── linearstructure_9.vcxproj.filters
│ │ │ ├── linearstructure.vcxproj
│ │ │ ├── linearstructure.vcxproj.filters
│ │ │ ├── lscg_1.vcxproj
│ │ │ ├── lscg_1.vcxproj.filters
│ │ │ ├── lscg_2.vcxproj
│ │ │ ├── lscg_2.vcxproj.filters
│ │ │ ├── lscg.vcxproj
│ │ │ ├── lscg.vcxproj.filters
│ │ │ ├── lu_1.vcxproj
│ │ │ ├── lu_1.vcxproj.filters
│ │ │ ├── lu_2.vcxproj
│ │ │ ├── lu_2.vcxproj.filters
│ │ │ ├── lu_3.vcxproj
│ │ │ ├── lu_3.vcxproj.filters
│ │ │ ├── lu_4.vcxproj
│ │ │ ├── lu_4.vcxproj.filters
│ │ │ ├── lu_5.vcxproj
│ │ │ ├── lu_5.vcxproj.filters
│ │ │ ├── lu_6.vcxproj
│ │ │ ├── lu_6.vcxproj.filters
│ │ │ ├── lu_7.vcxproj
│ │ │ ├── lu_7.vcxproj.filters
│ │ │ ├── lu_9.vcxproj
│ │ │ ├── lu_9.vcxproj.filters
│ │ │ ├── lu.vcxproj
│ │ │ ├── lu.vcxproj.filters
│ │ │ ├── mapped_matrix_10.vcxproj
│ │ │ ├── mapped_matrix_10.vcxproj.filters
│ │ │ ├── mapped_matrix_11.vcxproj
│ │ │ ├── mapped_matrix_11.vcxproj.filters
│ │ │ ├── mapped_matrix_1.vcxproj
│ │ │ ├── mapped_matrix_1.vcxproj.filters
│ │ │ ├── mapped_matrix_2.vcxproj
│ │ │ ├── mapped_matrix_2.vcxproj.filters
│ │ │ ├── mapped_matrix_3.vcxproj
│ │ │ ├── mapped_matrix_3.vcxproj.filters
│ │ │ ├── mapped_matrix_4.vcxproj
│ │ │ ├── mapped_matrix_4.vcxproj.filters
│ │ │ ├── mapped_matrix_5.vcxproj
│ │ │ ├── mapped_matrix_5.vcxproj.filters
│ │ │ ├── mapped_matrix_6.vcxproj
│ │ │ ├── mapped_matrix_6.vcxproj.filters
│ │ │ ├── mapped_matrix_7.vcxproj
│ │ │ ├── mapped_matrix_7.vcxproj.filters
│ │ │ ├── mapped_matrix_8.vcxproj
│ │ │ ├── mapped_matrix_8.vcxproj.filters
│ │ │ ├── mapped_matrix_9.vcxproj
│ │ │ ├── mapped_matrix_9.vcxproj.filters
│ │ │ ├── mapped_matrix.vcxproj
│ │ │ ├── mapped_matrix.vcxproj.filters
│ │ │ ├── mapstaticmethods_1.vcxproj
│ │ │ ├── mapstaticmethods_1.vcxproj.filters
│ │ │ ├── mapstaticmethods_2.vcxproj
│ │ │ ├── mapstaticmethods_2.vcxproj.filters
│ │ │ ├── mapstaticmethods_3.vcxproj
│ │ │ ├── mapstaticmethods_3.vcxproj.filters
│ │ │ ├── mapstaticmethods_4.vcxproj
│ │ │ ├── mapstaticmethods_4.vcxproj.filters
│ │ │ ├── mapstaticmethods_5.vcxproj
│ │ │ ├── mapstaticmethods_5.vcxproj.filters
│ │ │ ├── mapstaticmethods_6.vcxproj
│ │ │ ├── mapstaticmethods_6.vcxproj.filters
│ │ │ ├── mapstaticmethods_7.vcxproj
│ │ │ ├── mapstaticmethods_7.vcxproj.filters
│ │ │ ├── mapstaticmethods_8.vcxproj
│ │ │ ├── mapstaticmethods_8.vcxproj.filters
│ │ │ ├── mapstaticmethods.vcxproj
│ │ │ ├── mapstaticmethods.vcxproj.filters
│ │ │ ├── mapstride_1.vcxproj
│ │ │ ├── mapstride_1.vcxproj.filters
│ │ │ ├── mapstride_2.vcxproj
│ │ │ ├── mapstride_2.vcxproj.filters
│ │ │ ├── mapstride_3.vcxproj
│ │ │ ├── mapstride_3.vcxproj.filters
│ │ │ ├── mapstride_4.vcxproj
│ │ │ ├── mapstride_4.vcxproj.filters
│ │ │ ├── mapstride_5.vcxproj
│ │ │ ├── mapstride_5.vcxproj.filters
│ │ │ ├── mapstride_6.vcxproj
│ │ │ ├── mapstride_6.vcxproj.filters
│ │ │ ├── mapstride.vcxproj
│ │ │ ├── mapstride.vcxproj.filters
│ │ │ ├── meta.vcxproj
│ │ │ ├── meta.vcxproj.filters
│ │ │ ├── miscmatrices_1.vcxproj
│ │ │ ├── miscmatrices_1.vcxproj.filters
│ │ │ ├── miscmatrices_2.vcxproj
│ │ │ ├── miscmatrices_2.vcxproj.filters
│ │ │ ├── miscmatrices_3.vcxproj
│ │ │ ├── miscmatrices_3.vcxproj.filters
│ │ │ ├── miscmatrices_4.vcxproj
│ │ │ ├── miscmatrices_4.vcxproj.filters
│ │ │ ├── miscmatrices_5.vcxproj
│ │ │ ├── miscmatrices_5.vcxproj.filters
│ │ │ ├── miscmatrices.vcxproj
│ │ │ ├── miscmatrices.vcxproj.filters
│ │ │ ├── mixingtypes_1.vcxproj
│ │ │ ├── mixingtypes_1.vcxproj.filters
│ │ │ ├── mixingtypes_2.vcxproj
│ │ │ ├── mixingtypes_2.vcxproj.filters
│ │ │ ├── mixingtypes_3.vcxproj
│ │ │ ├── mixingtypes_3.vcxproj.filters
│ │ │ ├── mixingtypes_4.vcxproj
│ │ │ ├── mixingtypes_4.vcxproj.filters
│ │ │ ├── mixingtypes_5.vcxproj
│ │ │ ├── mixingtypes_5.vcxproj.filters
│ │ │ ├── mixingtypes_6.vcxproj
│ │ │ ├── mixingtypes_6.vcxproj.filters
│ │ │ ├── mixingtypes_7.vcxproj
│ │ │ ├── mixingtypes_7.vcxproj.filters
│ │ │ ├── mixingtypes.vcxproj
│ │ │ ├── mixingtypes.vcxproj.filters
│ │ │ ├── mpl2only.vcxproj
│ │ │ ├── mpl2only.vcxproj.filters
│ │ │ ├── nesting_ops_1.vcxproj
│ │ │ ├── nesting_ops_1.vcxproj.filters
│ │ │ ├── nesting_ops_2.vcxproj
│ │ │ ├── nesting_ops_2.vcxproj.filters
│ │ │ ├── nesting_ops_3.vcxproj
│ │ │ ├── nesting_ops_3.vcxproj.filters
│ │ │ ├── nesting_ops_4.vcxproj
│ │ │ ├── nesting_ops_4.vcxproj.filters
│ │ │ ├── nesting_ops.vcxproj
│ │ │ ├── nesting_ops.vcxproj.filters
│ │ │ ├── nomalloc_1.vcxproj
│ │ │ ├── nomalloc_1.vcxproj.filters
│ │ │ ├── nomalloc_2.vcxproj
│ │ │ ├── nomalloc_2.vcxproj.filters
│ │ │ ├── nomalloc_3.vcxproj
│ │ │ ├── nomalloc_3.vcxproj.filters
│ │ │ ├── nomalloc_4.vcxproj
│ │ │ ├── nomalloc_4.vcxproj.filters
│ │ │ ├── nomalloc_5.vcxproj
│ │ │ ├── nomalloc_5.vcxproj.filters
│ │ │ ├── nomalloc_6.vcxproj
│ │ │ ├── nomalloc_6.vcxproj.filters
│ │ │ ├── nomalloc_7.vcxproj
│ │ │ ├── nomalloc_7.vcxproj.filters
│ │ │ ├── nomalloc_8.vcxproj
│ │ │ ├── nomalloc_8.vcxproj.filters
│ │ │ ├── nomalloc.vcxproj
│ │ │ ├── nomalloc.vcxproj.filters
│ │ │ ├── nullary_10.vcxproj
│ │ │ ├── nullary_10.vcxproj.filters
│ │ │ ├── nullary_1.vcxproj
│ │ │ ├── nullary_1.vcxproj.filters
│ │ │ ├── nullary_2.vcxproj
│ │ │ ├── nullary_2.vcxproj.filters
│ │ │ ├── nullary_3.vcxproj
│ │ │ ├── nullary_3.vcxproj.filters
│ │ │ ├── nullary_4.vcxproj
│ │ │ ├── nullary_4.vcxproj.filters
│ │ │ ├── nullary_5.vcxproj
│ │ │ ├── nullary_5.vcxproj.filters
│ │ │ ├── nullary_6.vcxproj
│ │ │ ├── nullary_6.vcxproj.filters
│ │ │ ├── nullary_7.vcxproj
│ │ │ ├── nullary_7.vcxproj.filters
│ │ │ ├── nullary_8.vcxproj
│ │ │ ├── nullary_8.vcxproj.filters
│ │ │ ├── nullary_9.vcxproj
│ │ │ ├── nullary_9.vcxproj.filters
│ │ │ ├── nullary.vcxproj
│ │ │ ├── nullary.vcxproj.filters
│ │ │ ├── numext.vcxproj
│ │ │ ├── numext.vcxproj.filters
│ │ │ ├── packetmath_1.vcxproj
│ │ │ ├── packetmath_1.vcxproj.filters
│ │ │ ├── packetmath_2.vcxproj
│ │ │ ├── packetmath_2.vcxproj.filters
│ │ │ ├── packetmath_3.vcxproj
│ │ │ ├── packetmath_3.vcxproj.filters
│ │ │ ├── packetmath_4.vcxproj
│ │ │ ├── packetmath_4.vcxproj.filters
│ │ │ ├── packetmath_5.vcxproj
│ │ │ ├── packetmath_5.vcxproj.filters
│ │ │ ├── packetmath.vcxproj
│ │ │ ├── packetmath.vcxproj.filters
│ │ │ ├── permutationmatrices_1.vcxproj
│ │ │ ├── permutationmatrices_1.vcxproj.filters
│ │ │ ├── permutationmatrices_2.vcxproj
│ │ │ ├── permutationmatrices_2.vcxproj.filters
│ │ │ ├── permutationmatrices_3.vcxproj
│ │ │ ├── permutationmatrices_3.vcxproj.filters
│ │ │ ├── permutationmatrices_4.vcxproj
│ │ │ ├── permutationmatrices_4.vcxproj.filters
│ │ │ ├── permutationmatrices_5.vcxproj
│ │ │ ├── permutationmatrices_5.vcxproj.filters
│ │ │ ├── permutationmatrices_6.vcxproj
│ │ │ ├── permutationmatrices_6.vcxproj.filters
│ │ │ ├── permutationmatrices_7.vcxproj
│ │ │ ├── permutationmatrices_7.vcxproj.filters
│ │ │ ├── permutationmatrices.vcxproj
│ │ │ ├── permutationmatrices.vcxproj.filters
│ │ │ ├── prec_inverse_4x4_1.vcxproj
│ │ │ ├── prec_inverse_4x4_1.vcxproj.filters
│ │ │ ├── prec_inverse_4x4_2.vcxproj
│ │ │ ├── prec_inverse_4x4_2.vcxproj.filters
│ │ │ ├── prec_inverse_4x4_3.vcxproj
│ │ │ ├── prec_inverse_4x4_3.vcxproj.filters
│ │ │ ├── prec_inverse_4x4.vcxproj
│ │ │ ├── prec_inverse_4x4.vcxproj.filters
│ │ │ ├── product_extra_1.vcxproj
│ │ │ ├── product_extra_1.vcxproj.filters
│ │ │ ├── product_extra_2.vcxproj
│ │ │ ├── product_extra_2.vcxproj.filters
│ │ │ ├── product_extra_3.vcxproj
│ │ │ ├── product_extra_3.vcxproj.filters
│ │ │ ├── product_extra_4.vcxproj
│ │ │ ├── product_extra_4.vcxproj.filters
│ │ │ ├── product_extra_5.vcxproj
│ │ │ ├── product_extra_5.vcxproj.filters
│ │ │ ├── product_extra_6.vcxproj
│ │ │ ├── product_extra_6.vcxproj.filters
│ │ │ ├── product_extra_7.vcxproj
│ │ │ ├── product_extra_7.vcxproj.filters
│ │ │ ├── product_extra_8.vcxproj
│ │ │ ├── product_extra_8.vcxproj.filters
│ │ │ ├── product_extra.vcxproj
│ │ │ ├── product_extra.vcxproj.filters
│ │ │ ├── product_large_1.vcxproj
│ │ │ ├── product_large_1.vcxproj.filters
│ │ │ ├── product_large_2.vcxproj
│ │ │ ├── product_large_2.vcxproj.filters
│ │ │ ├── product_large_3.vcxproj
│ │ │ ├── product_large_3.vcxproj.filters
│ │ │ ├── product_large_4.vcxproj
│ │ │ ├── product_large_4.vcxproj.filters
│ │ │ ├── product_large_5.vcxproj
│ │ │ ├── product_large_5.vcxproj.filters
│ │ │ ├── product_large_6.vcxproj
│ │ │ ├── product_large_6.vcxproj.filters
│ │ │ ├── product_large.vcxproj
│ │ │ ├── product_large.vcxproj.filters
│ │ │ ├── product_mmtr_1.vcxproj
│ │ │ ├── product_mmtr_1.vcxproj.filters
│ │ │ ├── product_mmtr_2.vcxproj
│ │ │ ├── product_mmtr_2.vcxproj.filters
│ │ │ ├── product_mmtr_3.vcxproj
│ │ │ ├── product_mmtr_3.vcxproj.filters
│ │ │ ├── product_mmtr_4.vcxproj
│ │ │ ├── product_mmtr_4.vcxproj.filters
│ │ │ ├── product_mmtr.vcxproj
│ │ │ ├── product_mmtr.vcxproj.filters
│ │ │ ├── product_notemporary_1.vcxproj
│ │ │ ├── product_notemporary_1.vcxproj.filters
│ │ │ ├── product_notemporary_2.vcxproj
│ │ │ ├── product_notemporary_2.vcxproj.filters
│ │ │ ├── product_notemporary_3.vcxproj
│ │ │ ├── product_notemporary_3.vcxproj.filters
│ │ │ ├── product_notemporary_4.vcxproj
│ │ │ ├── product_notemporary_4.vcxproj.filters
│ │ │ ├── product_notemporary.vcxproj
│ │ │ ├── product_notemporary.vcxproj.filters
│ │ │ ├── product_selfadjoint_1.vcxproj
│ │ │ ├── product_selfadjoint_1.vcxproj.filters
│ │ │ ├── product_selfadjoint_2.vcxproj
│ │ │ ├── product_selfadjoint_2.vcxproj.filters
│ │ │ ├── product_selfadjoint_3.vcxproj
│ │ │ ├── product_selfadjoint_3.vcxproj.filters
│ │ │ ├── product_selfadjoint_4.vcxproj
│ │ │ ├── product_selfadjoint_4.vcxproj.filters
│ │ │ ├── product_selfadjoint_5.vcxproj
│ │ │ ├── product_selfadjoint_5.vcxproj.filters
│ │ │ ├── product_selfadjoint_6.vcxproj
│ │ │ ├── product_selfadjoint_6.vcxproj.filters
│ │ │ ├── product_selfadjoint_7.vcxproj
│ │ │ ├── product_selfadjoint_7.vcxproj.filters
│ │ │ ├── product_selfadjoint.vcxproj
│ │ │ ├── product_selfadjoint.vcxproj.filters
│ │ │ ├── product_small_11.vcxproj
│ │ │ ├── product_small_11.vcxproj.filters
│ │ │ ├── product_small_12.vcxproj
│ │ │ ├── product_small_12.vcxproj.filters
│ │ │ ├── product_small_13.vcxproj
│ │ │ ├── product_small_13.vcxproj.filters
│ │ │ ├── product_small_1.vcxproj
│ │ │ ├── product_small_1.vcxproj.filters
│ │ │ ├── product_small_21.vcxproj
│ │ │ ├── product_small_21.vcxproj.filters
│ │ │ ├── product_small_22.vcxproj
│ │ │ ├── product_small_22.vcxproj.filters
│ │ │ ├── product_small_23.vcxproj
│ │ │ ├── product_small_23.vcxproj.filters
│ │ │ ├── product_small_2.vcxproj
│ │ │ ├── product_small_2.vcxproj.filters
│ │ │ ├── product_small_31.vcxproj
│ │ │ ├── product_small_31.vcxproj.filters
│ │ │ ├── product_small_32.vcxproj
│ │ │ ├── product_small_32.vcxproj.filters
│ │ │ ├── product_small_33.vcxproj
│ │ │ ├── product_small_33.vcxproj.filters
│ │ │ ├── product_small_3.vcxproj
│ │ │ ├── product_small_3.vcxproj.filters
│ │ │ ├── product_small_41.vcxproj
│ │ │ ├── product_small_41.vcxproj.filters
│ │ │ ├── product_small_42.vcxproj
│ │ │ ├── product_small_42.vcxproj.filters
│ │ │ ├── product_small_43.vcxproj
│ │ │ ├── product_small_43.vcxproj.filters
│ │ │ ├── product_small_4.vcxproj
│ │ │ ├── product_small_4.vcxproj.filters
│ │ │ ├── product_small_5.vcxproj
│ │ │ ├── product_small_5.vcxproj.filters
│ │ │ ├── product_small_6.vcxproj
│ │ │ ├── product_small_6.vcxproj.filters
│ │ │ ├── product_small_7.vcxproj
│ │ │ ├── product_small_7.vcxproj.filters
│ │ │ ├── product_small_8.vcxproj
│ │ │ ├── product_small_8.vcxproj.filters
│ │ │ ├── product_small.vcxproj
│ │ │ ├── product_small.vcxproj.filters
│ │ │ ├── product_symm_1.vcxproj
│ │ │ ├── product_symm_1.vcxproj.filters
│ │ │ ├── product_symm_2.vcxproj
│ │ │ ├── product_symm_2.vcxproj.filters
│ │ │ ├── product_symm_3.vcxproj
│ │ │ ├── product_symm_3.vcxproj.filters
│ │ │ ├── product_symm_4.vcxproj
│ │ │ ├── product_symm_4.vcxproj.filters
│ │ │ ├── product_symm_5.vcxproj
│ │ │ ├── product_symm_5.vcxproj.filters
│ │ │ ├── product_symm_6.vcxproj
│ │ │ ├── product_symm_6.vcxproj.filters
│ │ │ ├── product_symm_7.vcxproj
│ │ │ ├── product_symm_7.vcxproj.filters
│ │ │ ├── product_symm_8.vcxproj
│ │ │ ├── product_symm_8.vcxproj.filters
│ │ │ ├── product_symm.vcxproj
│ │ │ ├── product_symm.vcxproj.filters
│ │ │ ├── product_syrk_1.vcxproj
│ │ │ ├── product_syrk_1.vcxproj.filters
│ │ │ ├── product_syrk_2.vcxproj
│ │ │ ├── product_syrk_2.vcxproj.filters
│ │ │ ├── product_syrk_3.vcxproj
│ │ │ ├── product_syrk_3.vcxproj.filters
│ │ │ ├── product_syrk_4.vcxproj
│ │ │ ├── product_syrk_4.vcxproj.filters
│ │ │ ├── product_syrk.vcxproj
│ │ │ ├── product_syrk.vcxproj.filters
│ │ │ ├── product_trmm_111.vcxproj
│ │ │ ├── product_trmm_111.vcxproj.filters
│ │ │ ├── product_trmm_112.vcxproj
│ │ │ ├── product_trmm_112.vcxproj.filters
│ │ │ ├── product_trmm_113.vcxproj
│ │ │ ├── product_trmm_113.vcxproj.filters
│ │ │ ├── product_trmm_114.vcxproj
│ │ │ ├── product_trmm_114.vcxproj.filters
│ │ │ ├── product_trmm_11.vcxproj
│ │ │ ├── product_trmm_11.vcxproj.filters
│ │ │ ├── product_trmm_121.vcxproj
│ │ │ ├── product_trmm_121.vcxproj.filters
│ │ │ ├── product_trmm_122.vcxproj
│ │ │ ├── product_trmm_122.vcxproj.filters
│ │ │ ├── product_trmm_123.vcxproj
│ │ │ ├── product_trmm_123.vcxproj.filters
│ │ │ ├── product_trmm_124.vcxproj
│ │ │ ├── product_trmm_124.vcxproj.filters
│ │ │ ├── product_trmm_12.vcxproj
│ │ │ ├── product_trmm_12.vcxproj.filters
│ │ │ ├── product_trmm_131.vcxproj
│ │ │ ├── product_trmm_131.vcxproj.filters
│ │ │ ├── product_trmm_132.vcxproj
│ │ │ ├── product_trmm_132.vcxproj.filters
│ │ │ ├── product_trmm_133.vcxproj
│ │ │ ├── product_trmm_133.vcxproj.filters
│ │ │ ├── product_trmm_134.vcxproj
│ │ │ ├── product_trmm_134.vcxproj.filters
│ │ │ ├── product_trmm_13.vcxproj
│ │ │ ├── product_trmm_13.vcxproj.filters
│ │ │ ├── product_trmm_14.vcxproj
│ │ │ ├── product_trmm_14.vcxproj.filters
│ │ │ ├── product_trmm_1.vcxproj
│ │ │ ├── product_trmm_1.vcxproj.filters
│ │ │ ├── product_trmm_21.vcxproj
│ │ │ ├── product_trmm_21.vcxproj.filters
│ │ │ ├── product_trmm_22.vcxproj
│ │ │ ├── product_trmm_22.vcxproj.filters
│ │ │ ├── product_trmm_23.vcxproj
│ │ │ ├── product_trmm_23.vcxproj.filters
│ │ │ ├── product_trmm_24.vcxproj
│ │ │ ├── product_trmm_24.vcxproj.filters
│ │ │ ├── product_trmm_31.vcxproj
│ │ │ ├── product_trmm_31.vcxproj.filters
│ │ │ ├── product_trmm_32.vcxproj
│ │ │ ├── product_trmm_32.vcxproj.filters
│ │ │ ├── product_trmm_33.vcxproj
│ │ │ ├── product_trmm_33.vcxproj.filters
│ │ │ ├── product_trmm_34.vcxproj
│ │ │ ├── product_trmm_34.vcxproj.filters
│ │ │ ├── product_trmm.vcxproj
│ │ │ ├── product_trmm.vcxproj.filters
│ │ │ ├── product_trmv_1.vcxproj
│ │ │ ├── product_trmv_1.vcxproj.filters
│ │ │ ├── product_trmv_2.vcxproj
│ │ │ ├── product_trmv_2.vcxproj.filters
│ │ │ ├── product_trmv_3.vcxproj
│ │ │ ├── product_trmv_3.vcxproj.filters
│ │ │ ├── product_trmv_4.vcxproj
│ │ │ ├── product_trmv_4.vcxproj.filters
│ │ │ ├── product_trmv_5.vcxproj
│ │ │ ├── product_trmv_5.vcxproj.filters
│ │ │ ├── product_trmv_6.vcxproj
│ │ │ ├── product_trmv_6.vcxproj.filters
│ │ │ ├── product_trmv.vcxproj
│ │ │ ├── product_trmv.vcxproj.filters
│ │ │ ├── product_trsolve_10.vcxproj
│ │ │ ├── product_trsolve_10.vcxproj.filters
│ │ │ ├── product_trsolve_11.vcxproj
│ │ │ ├── product_trsolve_11.vcxproj.filters
│ │ │ ├── product_trsolve_12.vcxproj
│ │ │ ├── product_trsolve_12.vcxproj.filters
│ │ │ ├── product_trsolve_13.vcxproj
│ │ │ ├── product_trsolve_13.vcxproj.filters
│ │ │ ├── product_trsolve_14.vcxproj
│ │ │ ├── product_trsolve_14.vcxproj.filters
│ │ │ ├── product_trsolve_1.vcxproj
│ │ │ ├── product_trsolve_1.vcxproj.filters
│ │ │ ├── product_trsolve_2.vcxproj
│ │ │ ├── product_trsolve_2.vcxproj.filters
│ │ │ ├── product_trsolve_3.vcxproj
│ │ │ ├── product_trsolve_3.vcxproj.filters
│ │ │ ├── product_trsolve_4.vcxproj
│ │ │ ├── product_trsolve_4.vcxproj.filters
│ │ │ ├── product_trsolve_5.vcxproj
│ │ │ ├── product_trsolve_5.vcxproj.filters
│ │ │ ├── product_trsolve_6.vcxproj
│ │ │ ├── product_trsolve_6.vcxproj.filters
│ │ │ ├── product_trsolve_7.vcxproj
│ │ │ ├── product_trsolve_7.vcxproj.filters
│ │ │ ├── product_trsolve_8.vcxproj
│ │ │ ├── product_trsolve_8.vcxproj.filters
│ │ │ ├── product_trsolve_9.vcxproj
│ │ │ ├── product_trsolve_9.vcxproj.filters
│ │ │ ├── product_trsolve.vcxproj
│ │ │ ├── product_trsolve.vcxproj.filters
│ │ │ ├── qr_10.vcxproj
│ │ │ ├── qr_10.vcxproj.filters
│ │ │ ├── qr_11.vcxproj
│ │ │ ├── qr_11.vcxproj.filters
│ │ │ ├── qr_12.vcxproj
│ │ │ ├── qr_12.vcxproj.filters
│ │ │ ├── qr_1.vcxproj
│ │ │ ├── qr_1.vcxproj.filters
│ │ │ ├── qr_2.vcxproj
│ │ │ ├── qr_2.vcxproj.filters
│ │ │ ├── qr_3.vcxproj
│ │ │ ├── qr_3.vcxproj.filters
│ │ │ ├── qr_4.vcxproj
│ │ │ ├── qr_4.vcxproj.filters
│ │ │ ├── qr_5.vcxproj
│ │ │ ├── qr_5.vcxproj.filters
│ │ │ ├── qr_6.vcxproj
│ │ │ ├── qr_6.vcxproj.filters
│ │ │ ├── qr_7.vcxproj
│ │ │ ├── qr_7.vcxproj.filters
│ │ │ ├── qr_8.vcxproj
│ │ │ ├── qr_8.vcxproj.filters
│ │ │ ├── qr_9.vcxproj
│ │ │ ├── qr_9.vcxproj.filters
│ │ │ ├── qr_colpivoting_1.vcxproj
│ │ │ ├── qr_colpivoting_1.vcxproj.filters
│ │ │ ├── qr_colpivoting_2.vcxproj
│ │ │ ├── qr_colpivoting_2.vcxproj.filters
│ │ │ ├── qr_colpivoting_3.vcxproj
│ │ │ ├── qr_colpivoting_3.vcxproj.filters
│ │ │ ├── qr_colpivoting_4.vcxproj
│ │ │ ├── qr_colpivoting_4.vcxproj.filters
│ │ │ ├── qr_colpivoting_5.vcxproj
│ │ │ ├── qr_colpivoting_5.vcxproj.filters
│ │ │ ├── qr_colpivoting_6.vcxproj
│ │ │ ├── qr_colpivoting_6.vcxproj.filters
│ │ │ ├── qr_colpivoting_7.vcxproj
│ │ │ ├── qr_colpivoting_7.vcxproj.filters
│ │ │ ├── qr_colpivoting_8.vcxproj
│ │ │ ├── qr_colpivoting_8.vcxproj.filters
│ │ │ ├── qr_colpivoting_9.vcxproj
│ │ │ ├── qr_colpivoting_9.vcxproj.filters
│ │ │ ├── qr_colpivoting.vcxproj
│ │ │ ├── qr_colpivoting.vcxproj.filters
│ │ │ ├── qr_fullpivoting_1.vcxproj
│ │ │ ├── qr_fullpivoting_1.vcxproj.filters
│ │ │ ├── qr_fullpivoting_2.vcxproj
│ │ │ ├── qr_fullpivoting_2.vcxproj.filters
│ │ │ ├── qr_fullpivoting_3.vcxproj
│ │ │ ├── qr_fullpivoting_3.vcxproj.filters
│ │ │ ├── qr_fullpivoting_4.vcxproj
│ │ │ ├── qr_fullpivoting_4.vcxproj.filters
│ │ │ ├── qr_fullpivoting_5.vcxproj
│ │ │ ├── qr_fullpivoting_5.vcxproj.filters
│ │ │ ├── qr_fullpivoting_6.vcxproj
│ │ │ ├── qr_fullpivoting_6.vcxproj.filters
│ │ │ ├── qr_fullpivoting_7.vcxproj
│ │ │ ├── qr_fullpivoting_7.vcxproj.filters
│ │ │ ├── qr_fullpivoting.vcxproj
│ │ │ ├── qr_fullpivoting.vcxproj.filters
│ │ │ ├── qr.vcxproj
│ │ │ ├── qr.vcxproj.filters
│ │ │ ├── rand.vcxproj
│ │ │ ├── rand.vcxproj.filters
│ │ │ ├── real_qz_1.vcxproj
│ │ │ ├── real_qz_1.vcxproj.filters
│ │ │ ├── real_qz_2.vcxproj
│ │ │ ├── real_qz_2.vcxproj.filters
│ │ │ ├── real_qz_3.vcxproj
│ │ │ ├── real_qz_3.vcxproj.filters
│ │ │ ├── real_qz_4.vcxproj
│ │ │ ├── real_qz_4.vcxproj.filters
│ │ │ ├── real_qz.vcxproj
│ │ │ ├── real_qz.vcxproj.filters
│ │ │ ├── redux_1.vcxproj
│ │ │ ├── redux_1.vcxproj.filters
│ │ │ ├── redux_2.vcxproj
│ │ │ ├── redux_2.vcxproj.filters
│ │ │ ├── redux_3.vcxproj
│ │ │ ├── redux_3.vcxproj.filters
│ │ │ ├── redux_4.vcxproj
│ │ │ ├── redux_4.vcxproj.filters
│ │ │ ├── redux_5.vcxproj
│ │ │ ├── redux_5.vcxproj.filters
│ │ │ ├── redux_6.vcxproj
│ │ │ ├── redux_6.vcxproj.filters
│ │ │ ├── redux_7.vcxproj
│ │ │ ├── redux_7.vcxproj.filters
│ │ │ ├── redux_8.vcxproj
│ │ │ ├── redux_8.vcxproj.filters
│ │ │ ├── redux.vcxproj
│ │ │ ├── redux.vcxproj.filters
│ │ │ ├── ref_1.vcxproj
│ │ │ ├── ref_1.vcxproj.filters
│ │ │ ├── ref_2.vcxproj
│ │ │ ├── ref_2.vcxproj.filters
│ │ │ ├── ref_3.vcxproj
│ │ │ ├── ref_3.vcxproj.filters
│ │ │ ├── ref_4.vcxproj
│ │ │ ├── ref_4.vcxproj.filters
│ │ │ ├── ref_5.vcxproj
│ │ │ ├── ref_5.vcxproj.filters
│ │ │ ├── ref_6.vcxproj
│ │ │ ├── ref_6.vcxproj.filters
│ │ │ ├── ref_7.vcxproj
│ │ │ ├── ref_7.vcxproj.filters
│ │ │ ├── ref.vcxproj
│ │ │ ├── ref.vcxproj.filters
│ │ │ ├── resize.vcxproj
│ │ │ ├── resize.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ ├── rvalue_types_1.vcxproj
│ │ │ ├── rvalue_types_1.vcxproj.filters
│ │ │ ├── rvalue_types_2.vcxproj
│ │ │ ├── rvalue_types_2.vcxproj.filters
│ │ │ ├── rvalue_types.vcxproj
│ │ │ ├── rvalue_types.vcxproj.filters
│ │ │ ├── schur_complex_1.vcxproj
│ │ │ ├── schur_complex_1.vcxproj.filters
│ │ │ ├── schur_complex_2.vcxproj
│ │ │ ├── schur_complex_2.vcxproj.filters
│ │ │ ├── schur_complex_3.vcxproj
│ │ │ ├── schur_complex_3.vcxproj.filters
│ │ │ ├── schur_complex_4.vcxproj
│ │ │ ├── schur_complex_4.vcxproj.filters
│ │ │ ├── schur_complex_5.vcxproj
│ │ │ ├── schur_complex_5.vcxproj.filters
│ │ │ ├── schur_complex.vcxproj
│ │ │ ├── schur_complex.vcxproj.filters
│ │ │ ├── schur_real_1.vcxproj
│ │ │ ├── schur_real_1.vcxproj.filters
│ │ │ ├── schur_real_2.vcxproj
│ │ │ ├── schur_real_2.vcxproj.filters
│ │ │ ├── schur_real_3.vcxproj
│ │ │ ├── schur_real_3.vcxproj.filters
│ │ │ ├── schur_real_4.vcxproj
│ │ │ ├── schur_real_4.vcxproj.filters
│ │ │ ├── schur_real_5.vcxproj
│ │ │ ├── schur_real_5.vcxproj.filters
│ │ │ ├── schur_real.vcxproj
│ │ │ ├── schur_real.vcxproj.filters
│ │ │ ├── selfadjoint_1.vcxproj
│ │ │ ├── selfadjoint_1.vcxproj.filters
│ │ │ ├── selfadjoint_2.vcxproj
│ │ │ ├── selfadjoint_2.vcxproj.filters
│ │ │ ├── selfadjoint_3.vcxproj
│ │ │ ├── selfadjoint_3.vcxproj.filters
│ │ │ ├── selfadjoint_4.vcxproj
│ │ │ ├── selfadjoint_4.vcxproj.filters
│ │ │ ├── selfadjoint_5.vcxproj
│ │ │ ├── selfadjoint_5.vcxproj.filters
│ │ │ ├── selfadjoint.vcxproj
│ │ │ ├── selfadjoint.vcxproj.filters
│ │ │ ├── simplicial_cholesky_1.vcxproj
│ │ │ ├── simplicial_cholesky_1.vcxproj.filters
│ │ │ ├── simplicial_cholesky_2.vcxproj
│ │ │ ├── simplicial_cholesky_2.vcxproj.filters
│ │ │ ├── simplicial_cholesky_3.vcxproj
│ │ │ ├── simplicial_cholesky_3.vcxproj.filters
│ │ │ ├── simplicial_cholesky.vcxproj
│ │ │ ├── simplicial_cholesky.vcxproj.filters
│ │ │ ├── sizeof.vcxproj
│ │ │ ├── sizeof.vcxproj.filters
│ │ │ ├── sizeoverflow.vcxproj
│ │ │ ├── sizeoverflow.vcxproj.filters
│ │ │ ├── smallvectors.vcxproj
│ │ │ ├── smallvectors.vcxproj.filters
│ │ │ ├── sparse_basic_1.vcxproj
│ │ │ ├── sparse_basic_1.vcxproj.filters
│ │ │ ├── sparse_basic_2.vcxproj
│ │ │ ├── sparse_basic_2.vcxproj.filters
│ │ │ ├── sparse_basic_3.vcxproj
│ │ │ ├── sparse_basic_3.vcxproj.filters
│ │ │ ├── sparse_basic_4.vcxproj
│ │ │ ├── sparse_basic_4.vcxproj.filters
│ │ │ ├── sparse_basic_5.vcxproj
│ │ │ ├── sparse_basic_5.vcxproj.filters
│ │ │ ├── sparse_basic_6.vcxproj
│ │ │ ├── sparse_basic_6.vcxproj.filters
│ │ │ ├── sparse_basic_7.vcxproj
│ │ │ ├── sparse_basic_7.vcxproj.filters
│ │ │ ├── sparse_basic.vcxproj
│ │ │ ├── sparse_basic.vcxproj.filters
│ │ │ ├── sparse_block_1.vcxproj
│ │ │ ├── sparse_block_1.vcxproj.filters
│ │ │ ├── sparse_block_2.vcxproj
│ │ │ ├── sparse_block_2.vcxproj.filters
│ │ │ ├── sparse_block_3.vcxproj
│ │ │ ├── sparse_block_3.vcxproj.filters
│ │ │ ├── sparse_block_4.vcxproj
│ │ │ ├── sparse_block_4.vcxproj.filters
│ │ │ ├── sparse_block.vcxproj
│ │ │ ├── sparse_block.vcxproj.filters
│ │ │ ├── sparselu_1.vcxproj
│ │ │ ├── sparselu_1.vcxproj.filters
│ │ │ ├── sparselu_2.vcxproj
│ │ │ ├── sparselu_2.vcxproj.filters
│ │ │ ├── sparselu_3.vcxproj
│ │ │ ├── sparselu_3.vcxproj.filters
│ │ │ ├── sparselu_4.vcxproj
│ │ │ ├── sparselu_4.vcxproj.filters
│ │ │ ├── sparselu.vcxproj
│ │ │ ├── sparselu.vcxproj.filters
│ │ │ ├── sparse_permutations_1.vcxproj
│ │ │ ├── sparse_permutations_1.vcxproj.filters
│ │ │ ├── sparse_permutations_2.vcxproj
│ │ │ ├── sparse_permutations_2.vcxproj.filters
│ │ │ ├── sparse_permutations.vcxproj
│ │ │ ├── sparse_permutations.vcxproj.filters
│ │ │ ├── sparse_product_1.vcxproj
│ │ │ ├── sparse_product_1.vcxproj.filters
│ │ │ ├── sparse_product_2.vcxproj
│ │ │ ├── sparse_product_2.vcxproj.filters
│ │ │ ├── sparse_product_3.vcxproj
│ │ │ ├── sparse_product_3.vcxproj.filters
│ │ │ ├── sparse_product_4.vcxproj
│ │ │ ├── sparse_product_4.vcxproj.filters
│ │ │ ├── sparse_product_5.vcxproj
│ │ │ ├── sparse_product_5.vcxproj.filters
│ │ │ ├── sparse_product.vcxproj
│ │ │ ├── sparse_product.vcxproj.filters
│ │ │ ├── sparseqr_1.vcxproj
│ │ │ ├── sparseqr_1.vcxproj.filters
│ │ │ ├── sparseqr_2.vcxproj
│ │ │ ├── sparseqr_2.vcxproj.filters
│ │ │ ├── sparseqr.vcxproj
│ │ │ ├── sparseqr.vcxproj.filters
│ │ │ ├── sparse_ref_1.vcxproj
│ │ │ ├── sparse_ref_1.vcxproj.filters
│ │ │ ├── sparse_ref_2.vcxproj
│ │ │ ├── sparse_ref_2.vcxproj.filters
│ │ │ ├── sparse_ref_3.vcxproj
│ │ │ ├── sparse_ref_3.vcxproj.filters
│ │ │ ├── sparse_ref.vcxproj
│ │ │ ├── sparse_ref.vcxproj.filters
│ │ │ ├── sparse_solvers_1.vcxproj
│ │ │ ├── sparse_solvers_1.vcxproj.filters
│ │ │ ├── sparse_solvers_2.vcxproj
│ │ │ ├── sparse_solvers_2.vcxproj.filters
│ │ │ ├── sparse_solvers.vcxproj
│ │ │ ├── sparse_solvers.vcxproj.filters
│ │ │ ├── sparse_vector_1.vcxproj
│ │ │ ├── sparse_vector_1.vcxproj.filters
│ │ │ ├── sparse_vector_2.vcxproj
│ │ │ ├── sparse_vector_2.vcxproj.filters
│ │ │ ├── sparse_vector.vcxproj
│ │ │ ├── sparse_vector.vcxproj.filters
│ │ │ ├── special_numbers_1.vcxproj
│ │ │ ├── special_numbers_1.vcxproj.filters
│ │ │ ├── special_numbers.vcxproj
│ │ │ ├── special_numbers.vcxproj.filters
│ │ │ ├── split_test_helper.h
│ │ │ ├── stable_norm_1.vcxproj
│ │ │ ├── stable_norm_1.vcxproj.filters
│ │ │ ├── stable_norm_2.vcxproj
│ │ │ ├── stable_norm_2.vcxproj.filters
│ │ │ ├── stable_norm_3.vcxproj
│ │ │ ├── stable_norm_3.vcxproj.filters
│ │ │ ├── stable_norm_4.vcxproj
│ │ │ ├── stable_norm_4.vcxproj.filters
│ │ │ ├── stable_norm_5.vcxproj
│ │ │ ├── stable_norm_5.vcxproj.filters
│ │ │ ├── stable_norm.vcxproj
│ │ │ ├── stable_norm.vcxproj.filters
│ │ │ ├── stddeque_1.vcxproj
│ │ │ ├── stddeque_1.vcxproj.filters
│ │ │ ├── stddeque_2.vcxproj
│ │ │ ├── stddeque_2.vcxproj.filters
│ │ │ ├── stddeque_3.vcxproj
│ │ │ ├── stddeque_3.vcxproj.filters
│ │ │ ├── stddeque_4.vcxproj
│ │ │ ├── stddeque_4.vcxproj.filters
│ │ │ ├── stddeque_5.vcxproj
│ │ │ ├── stddeque_5.vcxproj.filters
│ │ │ ├── stddeque_overload_1.vcxproj
│ │ │ ├── stddeque_overload_1.vcxproj.filters
│ │ │ ├── stddeque_overload_2.vcxproj
│ │ │ ├── stddeque_overload_2.vcxproj.filters
│ │ │ ├── stddeque_overload_3.vcxproj
│ │ │ ├── stddeque_overload_3.vcxproj.filters
│ │ │ ├── stddeque_overload_4.vcxproj
│ │ │ ├── stddeque_overload_4.vcxproj.filters
│ │ │ ├── stddeque_overload_5.vcxproj
│ │ │ ├── stddeque_overload_5.vcxproj.filters
│ │ │ ├── stddeque_overload.vcxproj
│ │ │ ├── stddeque_overload.vcxproj.filters
│ │ │ ├── stddeque.vcxproj
│ │ │ ├── stddeque.vcxproj.filters
│ │ │ ├── stdlist_1.vcxproj
│ │ │ ├── stdlist_1.vcxproj.filters
│ │ │ ├── stdlist_2.vcxproj
│ │ │ ├── stdlist_2.vcxproj.filters
│ │ │ ├── stdlist_3.vcxproj
│ │ │ ├── stdlist_3.vcxproj.filters
│ │ │ ├── stdlist_4.vcxproj
│ │ │ ├── stdlist_4.vcxproj.filters
│ │ │ ├── stdlist_5.vcxproj
│ │ │ ├── stdlist_5.vcxproj.filters
│ │ │ ├── stdlist_overload_1.vcxproj
│ │ │ ├── stdlist_overload_1.vcxproj.filters
│ │ │ ├── stdlist_overload_2.vcxproj
│ │ │ ├── stdlist_overload_2.vcxproj.filters
│ │ │ ├── stdlist_overload_3.vcxproj
│ │ │ ├── stdlist_overload_3.vcxproj.filters
│ │ │ ├── stdlist_overload_4.vcxproj
│ │ │ ├── stdlist_overload_4.vcxproj.filters
│ │ │ ├── stdlist_overload_5.vcxproj
│ │ │ ├── stdlist_overload_5.vcxproj.filters
│ │ │ ├── stdlist_overload.vcxproj
│ │ │ ├── stdlist_overload.vcxproj.filters
│ │ │ ├── stdlist.vcxproj
│ │ │ ├── stdlist.vcxproj.filters
│ │ │ ├── stdvector_1.vcxproj
│ │ │ ├── stdvector_1.vcxproj.filters
│ │ │ ├── stdvector_2.vcxproj
│ │ │ ├── stdvector_2.vcxproj.filters
│ │ │ ├── stdvector_3.vcxproj
│ │ │ ├── stdvector_3.vcxproj.filters
│ │ │ ├── stdvector_4.vcxproj
│ │ │ ├── stdvector_4.vcxproj.filters
│ │ │ ├── stdvector_5.vcxproj
│ │ │ ├── stdvector_5.vcxproj.filters
│ │ │ ├── stdvector_overload_1.vcxproj
│ │ │ ├── stdvector_overload_1.vcxproj.filters
│ │ │ ├── stdvector_overload_2.vcxproj
│ │ │ ├── stdvector_overload_2.vcxproj.filters
│ │ │ ├── stdvector_overload_3.vcxproj
│ │ │ ├── stdvector_overload_3.vcxproj.filters
│ │ │ ├── stdvector_overload_4.vcxproj
│ │ │ ├── stdvector_overload_4.vcxproj.filters
│ │ │ ├── stdvector_overload_5.vcxproj
│ │ │ ├── stdvector_overload_5.vcxproj.filters
│ │ │ ├── stdvector_overload.vcxproj
│ │ │ ├── stdvector_overload.vcxproj.filters
│ │ │ ├── stdvector.vcxproj
│ │ │ ├── stdvector.vcxproj.filters
│ │ │ ├── swap_1.vcxproj
│ │ │ ├── swap_1.vcxproj.filters
│ │ │ ├── swap_2.vcxproj
│ │ │ ├── swap_2.vcxproj.filters
│ │ │ ├── swap_3.vcxproj
│ │ │ ├── swap_3.vcxproj.filters
│ │ │ ├── swap_4.vcxproj
│ │ │ ├── swap_4.vcxproj.filters
│ │ │ ├── swap.vcxproj
│ │ │ ├── swap.vcxproj.filters
│ │ │ ├── triangular_1.vcxproj
│ │ │ ├── triangular_1.vcxproj.filters
│ │ │ ├── triangular_2.vcxproj
│ │ │ ├── triangular_2.vcxproj.filters
│ │ │ ├── triangular_3.vcxproj
│ │ │ ├── triangular_3.vcxproj.filters
│ │ │ ├── triangular_4.vcxproj
│ │ │ ├── triangular_4.vcxproj.filters
│ │ │ ├── triangular_5.vcxproj
│ │ │ ├── triangular_5.vcxproj.filters
│ │ │ ├── triangular_6.vcxproj
│ │ │ ├── triangular_6.vcxproj.filters
│ │ │ ├── triangular_7.vcxproj
│ │ │ ├── triangular_7.vcxproj.filters
│ │ │ ├── triangular_8.vcxproj
│ │ │ ├── triangular_8.vcxproj.filters
│ │ │ ├── triangular_9.vcxproj
│ │ │ ├── triangular_9.vcxproj.filters
│ │ │ ├── triangular.vcxproj
│ │ │ ├── triangular.vcxproj.filters
│ │ │ ├── umeyama_1.vcxproj
│ │ │ ├── umeyama_1.vcxproj.filters
│ │ │ ├── umeyama_2.vcxproj
│ │ │ ├── umeyama_2.vcxproj.filters
│ │ │ ├── umeyama_3.vcxproj
│ │ │ ├── umeyama_3.vcxproj.filters
│ │ │ ├── umeyama_4.vcxproj
│ │ │ ├── umeyama_4.vcxproj.filters
│ │ │ ├── umeyama_5.vcxproj
│ │ │ ├── umeyama_5.vcxproj.filters
│ │ │ ├── umeyama_6.vcxproj
│ │ │ ├── umeyama_6.vcxproj.filters
│ │ │ ├── umeyama_7.vcxproj
│ │ │ ├── umeyama_7.vcxproj.filters
│ │ │ ├── umeyama_8.vcxproj
│ │ │ ├── umeyama_8.vcxproj.filters
│ │ │ ├── umeyama.vcxproj
│ │ │ ├── umeyama.vcxproj.filters
│ │ │ ├── unalignedassert_1.vcxproj
│ │ │ ├── unalignedassert_1.vcxproj.filters
│ │ │ ├── unalignedassert_2.vcxproj
│ │ │ ├── unalignedassert_2.vcxproj.filters
│ │ │ ├── unalignedassert_3.vcxproj
│ │ │ ├── unalignedassert_3.vcxproj.filters
│ │ │ ├── unalignedassert_4.vcxproj
│ │ │ ├── unalignedassert_4.vcxproj.filters
│ │ │ ├── unalignedassert.vcxproj
│ │ │ ├── unalignedassert.vcxproj.filters
│ │ │ ├── unalignedcount.vcxproj
│ │ │ ├── unalignedcount.vcxproj.filters
│ │ │ ├── upperbidiagonalization_1.vcxproj
│ │ │ ├── upperbidiagonalization_1.vcxproj.filters
│ │ │ ├── upperbidiagonalization_2.vcxproj
│ │ │ ├── upperbidiagonalization_2.vcxproj.filters
│ │ │ ├── upperbidiagonalization_3.vcxproj
│ │ │ ├── upperbidiagonalization_3.vcxproj.filters
│ │ │ ├── upperbidiagonalization_4.vcxproj
│ │ │ ├── upperbidiagonalization_4.vcxproj.filters
│ │ │ ├── upperbidiagonalization_5.vcxproj
│ │ │ ├── upperbidiagonalization_5.vcxproj.filters
│ │ │ ├── upperbidiagonalization_6.vcxproj
│ │ │ ├── upperbidiagonalization_6.vcxproj.filters
│ │ │ ├── upperbidiagonalization_7.vcxproj
│ │ │ ├── upperbidiagonalization_7.vcxproj.filters
│ │ │ ├── upperbidiagonalization.vcxproj
│ │ │ ├── upperbidiagonalization.vcxproj.filters
│ │ │ ├── vectorization_logic_1.vcxproj
│ │ │ ├── vectorization_logic_1.vcxproj.filters
│ │ │ ├── vectorization_logic_2.vcxproj
│ │ │ ├── vectorization_logic_2.vcxproj.filters
│ │ │ ├── vectorization_logic.vcxproj
│ │ │ ├── vectorization_logic.vcxproj.filters
│ │ │ ├── vectorwiseop_1.vcxproj
│ │ │ ├── vectorwiseop_1.vcxproj.filters
│ │ │ ├── vectorwiseop_2.vcxproj
│ │ │ ├── vectorwiseop_2.vcxproj.filters
│ │ │ ├── vectorwiseop_3.vcxproj
│ │ │ ├── vectorwiseop_3.vcxproj.filters
│ │ │ ├── vectorwiseop_4.vcxproj
│ │ │ ├── vectorwiseop_4.vcxproj.filters
│ │ │ ├── vectorwiseop_5.vcxproj
│ │ │ ├── vectorwiseop_5.vcxproj.filters
│ │ │ ├── vectorwiseop_6.vcxproj
│ │ │ ├── vectorwiseop_6.vcxproj.filters
│ │ │ ├── vectorwiseop_7.vcxproj
│ │ │ ├── vectorwiseop_7.vcxproj.filters
│ │ │ ├── vectorwiseop.vcxproj
│ │ │ ├── vectorwiseop.vcxproj.filters
│ │ │ ├── visitor_10.vcxproj
│ │ │ ├── visitor_10.vcxproj.filters
│ │ │ ├── visitor_1.vcxproj
│ │ │ ├── visitor_1.vcxproj.filters
│ │ │ ├── visitor_2.vcxproj
│ │ │ ├── visitor_2.vcxproj.filters
│ │ │ ├── visitor_3.vcxproj
│ │ │ ├── visitor_3.vcxproj.filters
│ │ │ ├── visitor_4.vcxproj
│ │ │ ├── visitor_4.vcxproj.filters
│ │ │ ├── visitor_5.vcxproj
│ │ │ ├── visitor_5.vcxproj.filters
│ │ │ ├── visitor_6.vcxproj
│ │ │ ├── visitor_6.vcxproj.filters
│ │ │ ├── visitor_7.vcxproj
│ │ │ ├── visitor_7.vcxproj.filters
│ │ │ ├── visitor_8.vcxproj
│ │ │ ├── visitor_8.vcxproj.filters
│ │ │ ├── visitor_9.vcxproj
│ │ │ ├── visitor_9.vcxproj.filters
│ │ │ ├── visitor.vcxproj
│ │ │ ├── visitor.vcxproj.filters
│ │ │ ├── zerosized.vcxproj
│ │ │ └── zerosized.vcxproj.filters
│ │ ├── Testing
│ │ │ └── Temporary
│ │ ├── uninstall.vcxproj
│ │ ├── uninstall.vcxproj.filters
│ │ ├── unsupported
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── doc
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── examples
│ │ │ │ │ ├── CMakeFiles
│ │ │ │ │ │ ├── generate.stamp
│ │ │ │ │ │ └── generate.stamp.depend
│ │ │ │ │ ├── cmake_install.cmake
│ │ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ │ ├── example_BVH_Example.vcxproj
│ │ │ │ │ ├── example_BVH_Example.vcxproj.filters
│ │ │ │ │ ├── example_EulerAngles.vcxproj
│ │ │ │ │ ├── example_EulerAngles.vcxproj.filters
│ │ │ │ │ ├── example_FFT.vcxproj
│ │ │ │ │ ├── example_FFT.vcxproj.filters
│ │ │ │ │ ├── example_MatrixExponential.vcxproj
│ │ │ │ │ ├── example_MatrixExponential.vcxproj.filters
│ │ │ │ │ ├── example_MatrixFunction.vcxproj
│ │ │ │ │ ├── example_MatrixFunction.vcxproj.filters
│ │ │ │ │ ├── example_MatrixLogarithm.vcxproj
│ │ │ │ │ ├── example_MatrixLogarithm.vcxproj.filters
│ │ │ │ │ ├── example_MatrixPower_optimal.vcxproj
│ │ │ │ │ ├── example_MatrixPower_optimal.vcxproj.filters
│ │ │ │ │ ├── example_MatrixPower.vcxproj
│ │ │ │ │ ├── example_MatrixPower.vcxproj.filters
│ │ │ │ │ ├── example_MatrixSine.vcxproj
│ │ │ │ │ ├── example_MatrixSine.vcxproj.filters
│ │ │ │ │ ├── example_MatrixSinh.vcxproj
│ │ │ │ │ ├── example_MatrixSinh.vcxproj.filters
│ │ │ │ │ ├── example_MatrixSquareRoot.vcxproj
│ │ │ │ │ ├── example_MatrixSquareRoot.vcxproj.filters
│ │ │ │ │ ├── example_PolynomialSolver1.vcxproj
│ │ │ │ │ ├── example_PolynomialSolver1.vcxproj.filters
│ │ │ │ │ ├── example_PolynomialUtils1.vcxproj
│ │ │ │ │ ├── example_PolynomialUtils1.vcxproj.filters
│ │ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ │ │ ├── unsupported_examples.vcxproj
│ │ │ │ │ └── unsupported_examples.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ │ └── snippets
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ │ ├── unsupported_snippets.vcxproj
│ │ │ │ └── unsupported_snippets.vcxproj.filters
│ │ │ ├── Eigen
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ ├── CXX11
│ │ │ │ │ ├── CMakeFiles
│ │ │ │ │ │ ├── generate.stamp
│ │ │ │ │ │ └── generate.stamp.depend
│ │ │ │ │ ├── cmake_install.cmake
│ │ │ │ │ ├── CTestTestfile.cmake
│ │ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── RUN_TESTS.vcxproj
│ │ │ │ └── RUN_TESTS.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ └── test
│ │ │ ├── alignedvector3.vcxproj
│ │ │ ├── alignedvector3.vcxproj.filters
│ │ │ ├── autodiff_1.vcxproj
│ │ │ ├── autodiff_1.vcxproj.filters
│ │ │ ├── autodiff_2.vcxproj
│ │ │ ├── autodiff_2.vcxproj.filters
│ │ │ ├── autodiff_3.vcxproj
│ │ │ ├── autodiff_3.vcxproj.filters
│ │ │ ├── autodiff_4.vcxproj
│ │ │ ├── autodiff_4.vcxproj.filters
│ │ │ ├── autodiff_5.vcxproj
│ │ │ ├── autodiff_5.vcxproj.filters
│ │ │ ├── autodiff_scalar_1.vcxproj
│ │ │ ├── autodiff_scalar_1.vcxproj.filters
│ │ │ ├── autodiff_scalar_2.vcxproj
│ │ │ ├── autodiff_scalar_2.vcxproj.filters
│ │ │ ├── autodiff_scalar_3.vcxproj
│ │ │ ├── autodiff_scalar_3.vcxproj.filters
│ │ │ ├── autodiff_scalar_4.vcxproj
│ │ │ ├── autodiff_scalar_4.vcxproj.filters
│ │ │ ├── autodiff_scalar_5.vcxproj
│ │ │ ├── autodiff_scalar_5.vcxproj.filters
│ │ │ ├── autodiff_scalar.vcxproj
│ │ │ ├── autodiff_scalar.vcxproj.filters
│ │ │ ├── autodiff.vcxproj
│ │ │ ├── autodiff.vcxproj.filters
│ │ │ ├── BuildUnsupported.vcxproj
│ │ │ ├── BuildUnsupported.vcxproj.filters
│ │ │ ├── BVH_1.vcxproj
│ │ │ ├── BVH_1.vcxproj.filters
│ │ │ ├── BVH_2.vcxproj
│ │ │ ├── BVH_2.vcxproj.filters
│ │ │ ├── BVH_3.vcxproj
│ │ │ ├── BVH_3.vcxproj.filters
│ │ │ ├── BVH.vcxproj
│ │ │ ├── BVH.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── alignedvector3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_scalar_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_scalar_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_scalar_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_scalar_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── autodiff_scalar_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── BVH_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── BVH_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── BVH_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_assign.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_casts.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_comparisons.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_const.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_dimension.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_empty.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_forced_eval.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_intdiv_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_io.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_layout_swap.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_map.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_math.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_roundings.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_sugar.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── cxx11_tensor_uint128_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── EulerAngles_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── EulerAngles_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── FFT.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── generate.stamp
│ │ │ │ ├── generate.stamp.depend
│ │ │ │ ├── gmres_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── gmres_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── kronecker_product_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── kronecker_product_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── levenberg_marquardt.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_exponential_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_function_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_12.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_power_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_square_root_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_square_root_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_square_root_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_square_root_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── matrix_square_root_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── minres_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── minres_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── NonLinearOptimization.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── NumericalDiff.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_10.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_11.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialsolver_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_4.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_5.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_6.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_7.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_8.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── polynomialutils_9.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_extra_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_extra_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── sparse_extra_3.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── special_functions_1.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ ├── special_functions_2.dir
│ │ │ │ │ ├── Labels.json
│ │ │ │ │ └── Labels.txt
│ │ │ │ └── splines.dir
│ │ │ │ ├── Labels.json
│ │ │ │ └── Labels.txt
│ │ │ ├── cmake_install.cmake
│ │ │ ├── CTestTestfile.cmake
│ │ │ ├── cxx11_tensor_assign.vcxproj
│ │ │ ├── cxx11_tensor_assign.vcxproj.filters
│ │ │ ├── cxx11_tensor_casts.vcxproj
│ │ │ ├── cxx11_tensor_casts.vcxproj.filters
│ │ │ ├── cxx11_tensor_comparisons.vcxproj
│ │ │ ├── cxx11_tensor_comparisons.vcxproj.filters
│ │ │ ├── cxx11_tensor_const.vcxproj
│ │ │ ├── cxx11_tensor_const.vcxproj.filters
│ │ │ ├── cxx11_tensor_dimension.vcxproj
│ │ │ ├── cxx11_tensor_dimension.vcxproj.filters
│ │ │ ├── cxx11_tensor_empty.vcxproj
│ │ │ ├── cxx11_tensor_empty.vcxproj.filters
│ │ │ ├── cxx11_tensor_forced_eval.vcxproj
│ │ │ ├── cxx11_tensor_forced_eval.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_1.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_1.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_2.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_2.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_3.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_3.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_4.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_4.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_5.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_5.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_6.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_6.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv_7.vcxproj
│ │ │ ├── cxx11_tensor_intdiv_7.vcxproj.filters
│ │ │ ├── cxx11_tensor_intdiv.vcxproj
│ │ │ ├── cxx11_tensor_intdiv.vcxproj.filters
│ │ │ ├── cxx11_tensor_io.vcxproj
│ │ │ ├── cxx11_tensor_io.vcxproj.filters
│ │ │ ├── cxx11_tensor_layout_swap.vcxproj
│ │ │ ├── cxx11_tensor_layout_swap.vcxproj.filters
│ │ │ ├── cxx11_tensor_map.vcxproj
│ │ │ ├── cxx11_tensor_map.vcxproj.filters
│ │ │ ├── cxx11_tensor_math.vcxproj
│ │ │ ├── cxx11_tensor_math.vcxproj.filters
│ │ │ ├── cxx11_tensor_roundings.vcxproj
│ │ │ ├── cxx11_tensor_roundings.vcxproj.filters
│ │ │ ├── cxx11_tensor_sugar.vcxproj
│ │ │ ├── cxx11_tensor_sugar.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_1.vcxproj
│ │ │ ├── cxx11_tensor_uint128_1.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_2.vcxproj
│ │ │ ├── cxx11_tensor_uint128_2.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_3.vcxproj
│ │ │ ├── cxx11_tensor_uint128_3.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_4.vcxproj
│ │ │ ├── cxx11_tensor_uint128_4.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_5.vcxproj
│ │ │ ├── cxx11_tensor_uint128_5.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128_6.vcxproj
│ │ │ ├── cxx11_tensor_uint128_6.vcxproj.filters
│ │ │ ├── cxx11_tensor_uint128.vcxproj
│ │ │ ├── cxx11_tensor_uint128.vcxproj.filters
│ │ │ ├── EulerAngles_1.vcxproj
│ │ │ ├── EulerAngles_1.vcxproj.filters
│ │ │ ├── EulerAngles_2.vcxproj
│ │ │ ├── EulerAngles_2.vcxproj.filters
│ │ │ ├── EulerAngles.vcxproj
│ │ │ ├── EulerAngles.vcxproj.filters
│ │ │ ├── FFT.vcxproj
│ │ │ ├── FFT.vcxproj.filters
│ │ │ ├── gmres_1.vcxproj
│ │ │ ├── gmres_1.vcxproj.filters
│ │ │ ├── gmres_2.vcxproj
│ │ │ ├── gmres_2.vcxproj.filters
│ │ │ ├── gmres.vcxproj
│ │ │ ├── gmres.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── kronecker_product_1.vcxproj
│ │ │ ├── kronecker_product_1.vcxproj.filters
│ │ │ ├── kronecker_product_2.vcxproj
│ │ │ ├── kronecker_product_2.vcxproj.filters
│ │ │ ├── kronecker_product.vcxproj
│ │ │ ├── kronecker_product.vcxproj.filters
│ │ │ ├── levenberg_marquardt.vcxproj
│ │ │ ├── levenberg_marquardt.vcxproj.filters
│ │ │ ├── matrix_exponential_1.vcxproj
│ │ │ ├── matrix_exponential_1.vcxproj.filters
│ │ │ ├── matrix_exponential_2.vcxproj
│ │ │ ├── matrix_exponential_2.vcxproj.filters
│ │ │ ├── matrix_exponential_3.vcxproj
│ │ │ ├── matrix_exponential_3.vcxproj.filters
│ │ │ ├── matrix_exponential_4.vcxproj
│ │ │ ├── matrix_exponential_4.vcxproj.filters
│ │ │ ├── matrix_exponential_5.vcxproj
│ │ │ ├── matrix_exponential_5.vcxproj.filters
│ │ │ ├── matrix_exponential_6.vcxproj
│ │ │ ├── matrix_exponential_6.vcxproj.filters
│ │ │ ├── matrix_exponential_7.vcxproj
│ │ │ ├── matrix_exponential_7.vcxproj.filters
│ │ │ ├── matrix_exponential_8.vcxproj
│ │ │ ├── matrix_exponential_8.vcxproj.filters
│ │ │ ├── matrix_exponential_9.vcxproj
│ │ │ ├── matrix_exponential_9.vcxproj.filters
│ │ │ ├── matrix_exponential.vcxproj
│ │ │ ├── matrix_exponential.vcxproj.filters
│ │ │ ├── matrix_function_1.vcxproj
│ │ │ ├── matrix_function_1.vcxproj.filters
│ │ │ ├── matrix_function_2.vcxproj
│ │ │ ├── matrix_function_2.vcxproj.filters
│ │ │ ├── matrix_function_3.vcxproj
│ │ │ ├── matrix_function_3.vcxproj.filters
│ │ │ ├── matrix_function_4.vcxproj
│ │ │ ├── matrix_function_4.vcxproj.filters
│ │ │ ├── matrix_function_5.vcxproj
│ │ │ ├── matrix_function_5.vcxproj.filters
│ │ │ ├── matrix_function_6.vcxproj
│ │ │ ├── matrix_function_6.vcxproj.filters
│ │ │ ├── matrix_function_7.vcxproj
│ │ │ ├── matrix_function_7.vcxproj.filters
│ │ │ ├── matrix_function.vcxproj
│ │ │ ├── matrix_function.vcxproj.filters
│ │ │ ├── matrix_power_10.vcxproj
│ │ │ ├── matrix_power_10.vcxproj.filters
│ │ │ ├── matrix_power_11.vcxproj
│ │ │ ├── matrix_power_11.vcxproj.filters
│ │ │ ├── matrix_power_12.vcxproj
│ │ │ ├── matrix_power_12.vcxproj.filters
│ │ │ ├── matrix_power_1.vcxproj
│ │ │ ├── matrix_power_1.vcxproj.filters
│ │ │ ├── matrix_power_2.vcxproj
│ │ │ ├── matrix_power_2.vcxproj.filters
│ │ │ ├── matrix_power_3.vcxproj
│ │ │ ├── matrix_power_3.vcxproj.filters
│ │ │ ├── matrix_power_4.vcxproj
│ │ │ ├── matrix_power_4.vcxproj.filters
│ │ │ ├── matrix_power_5.vcxproj
│ │ │ ├── matrix_power_5.vcxproj.filters
│ │ │ ├── matrix_power_6.vcxproj
│ │ │ ├── matrix_power_6.vcxproj.filters
│ │ │ ├── matrix_power_7.vcxproj
│ │ │ ├── matrix_power_7.vcxproj.filters
│ │ │ ├── matrix_power_8.vcxproj
│ │ │ ├── matrix_power_8.vcxproj.filters
│ │ │ ├── matrix_power_9.vcxproj
│ │ │ ├── matrix_power_9.vcxproj.filters
│ │ │ ├── matrix_power.vcxproj
│ │ │ ├── matrix_power.vcxproj.filters
│ │ │ ├── matrix_square_root_1.vcxproj
│ │ │ ├── matrix_square_root_1.vcxproj.filters
│ │ │ ├── matrix_square_root_2.vcxproj
│ │ │ ├── matrix_square_root_2.vcxproj.filters
│ │ │ ├── matrix_square_root_3.vcxproj
│ │ │ ├── matrix_square_root_3.vcxproj.filters
│ │ │ ├── matrix_square_root_4.vcxproj
│ │ │ ├── matrix_square_root_4.vcxproj.filters
│ │ │ ├── matrix_square_root_5.vcxproj
│ │ │ ├── matrix_square_root_5.vcxproj.filters
│ │ │ ├── matrix_square_root.vcxproj
│ │ │ ├── matrix_square_root.vcxproj.filters
│ │ │ ├── minres_1.vcxproj
│ │ │ ├── minres_1.vcxproj.filters
│ │ │ ├── minres_2.vcxproj
│ │ │ ├── minres_2.vcxproj.filters
│ │ │ ├── minres.vcxproj
│ │ │ ├── minres.vcxproj.filters
│ │ │ ├── NonLinearOptimization.vcxproj
│ │ │ ├── NonLinearOptimization.vcxproj.filters
│ │ │ ├── NumericalDiff.vcxproj
│ │ │ ├── NumericalDiff.vcxproj.filters
│ │ │ ├── polynomialsolver_10.vcxproj
│ │ │ ├── polynomialsolver_10.vcxproj.filters
│ │ │ ├── polynomialsolver_11.vcxproj
│ │ │ ├── polynomialsolver_11.vcxproj.filters
│ │ │ ├── polynomialsolver_1.vcxproj
│ │ │ ├── polynomialsolver_1.vcxproj.filters
│ │ │ ├── polynomialsolver_2.vcxproj
│ │ │ ├── polynomialsolver_2.vcxproj.filters
│ │ │ ├── polynomialsolver_3.vcxproj
│ │ │ ├── polynomialsolver_3.vcxproj.filters
│ │ │ ├── polynomialsolver_4.vcxproj
│ │ │ ├── polynomialsolver_4.vcxproj.filters
│ │ │ ├── polynomialsolver_5.vcxproj
│ │ │ ├── polynomialsolver_5.vcxproj.filters
│ │ │ ├── polynomialsolver_6.vcxproj
│ │ │ ├── polynomialsolver_6.vcxproj.filters
│ │ │ ├── polynomialsolver_7.vcxproj
│ │ │ ├── polynomialsolver_7.vcxproj.filters
│ │ │ ├── polynomialsolver_8.vcxproj
│ │ │ ├── polynomialsolver_8.vcxproj.filters
│ │ │ ├── polynomialsolver_9.vcxproj
│ │ │ ├── polynomialsolver_9.vcxproj.filters
│ │ │ ├── polynomialsolver.vcxproj
│ │ │ ├── polynomialsolver.vcxproj.filters
│ │ │ ├── polynomialutils_2.vcxproj
│ │ │ ├── polynomialutils_2.vcxproj.filters
│ │ │ ├── polynomialutils_3.vcxproj
│ │ │ ├── polynomialutils_3.vcxproj.filters
│ │ │ ├── polynomialutils_4.vcxproj
│ │ │ ├── polynomialutils_4.vcxproj.filters
│ │ │ ├── polynomialutils_5.vcxproj
│ │ │ ├── polynomialutils_5.vcxproj.filters
│ │ │ ├── polynomialutils_6.vcxproj
│ │ │ ├── polynomialutils_6.vcxproj.filters
│ │ │ ├── polynomialutils_7.vcxproj
│ │ │ ├── polynomialutils_7.vcxproj.filters
│ │ │ ├── polynomialutils_8.vcxproj
│ │ │ ├── polynomialutils_8.vcxproj.filters
│ │ │ ├── polynomialutils_9.vcxproj
│ │ │ ├── polynomialutils_9.vcxproj.filters
│ │ │ ├── polynomialutils.vcxproj
│ │ │ ├── polynomialutils.vcxproj.filters
│ │ │ ├── RUN_TESTS.vcxproj
│ │ │ ├── RUN_TESTS.vcxproj.filters
│ │ │ ├── sparse_extra_1.vcxproj
│ │ │ ├── sparse_extra_1.vcxproj.filters
│ │ │ ├── sparse_extra_2.vcxproj
│ │ │ ├── sparse_extra_2.vcxproj.filters
│ │ │ ├── sparse_extra_3.vcxproj
│ │ │ ├── sparse_extra_3.vcxproj.filters
│ │ │ ├── sparse_extra.vcxproj
│ │ │ ├── sparse_extra.vcxproj.filters
│ │ │ ├── special_functions_1.vcxproj
│ │ │ ├── special_functions_1.vcxproj.filters
│ │ │ ├── special_functions_2.vcxproj
│ │ │ ├── special_functions_2.vcxproj.filters
│ │ │ ├── special_functions.vcxproj
│ │ │ ├── special_functions.vcxproj.filters
│ │ │ ├── splines.vcxproj
│ │ │ ├── splines.vcxproj.filters
│ │ │ └── split_test_helper.h
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ ├── ALL_BUILD
│ │ │ │ │ ├── ALL_BUILD.log
│ │ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ └── custombuild.write.1.tlog
│ │ │ │ ├── INSTALL
│ │ │ │ │ ├── INSTALL.log
│ │ │ │ │ └── INSTALL.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ └── INSTALL.lastbuildstate
│ │ │ │ └── ZERO_CHECK
│ │ │ │ ├── ZERO_CHECK.log
│ │ │ │ └── ZERO_CHECK.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── ZERO_CHECK.lastbuildstate
│ │ │ └── Release
│ │ │ ├── ALL_BUILD
│ │ │ │ ├── ALL_BUILD.log
│ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ └── custombuild.write.1.tlog
│ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL.log
│ │ │ │ └── INSTALL.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── INSTALL.lastbuildstate
│ │ │ └── ZERO_CHECK
│ │ │ ├── ZERO_CHECK.log
│ │ │ └── ZERO_CHECK.tlog
│ │ │ ├── custombuild.command.1.tlog
│ │ │ ├── custombuild.read.1.tlog
│ │ │ ├── custombuild.write.1.tlog
│ │ │ └── ZERO_CHECK.lastbuildstate
│ │ ├── ZERO_CHECK.vcxproj
│ │ └── ZERO_CHECK.vcxproj.filters
│ ├── Eigen3.3.7_SourceCode
│ │ └── Eigen3.3.7_SourceCode
│ │ ├── bench
│ │ │ ├── analyze-blocking-sizes.cpp
│ │ │ ├── basicbench.cxxlist
│ │ │ ├── basicbenchmark.cpp
│ │ │ ├── basicbenchmark.h
│ │ │ ├── benchBlasGemm.cpp
│ │ │ ├── benchCholesky.cpp
│ │ │ ├── benchEigenSolver.cpp
│ │ │ ├── benchFFT.cpp
│ │ │ ├── bench_gemm.cpp
│ │ │ ├── benchGeometry.cpp
│ │ │ ├── benchmark-blocking-sizes.cpp
│ │ │ ├── benchmark.cpp
│ │ │ ├── benchmarkSlice.cpp
│ │ │ ├── benchmark_suite
│ │ │ ├── benchmarkX.cpp
│ │ │ ├── benchmarkXcwise.cpp
│ │ │ ├── bench_multi_compilers.sh
│ │ │ ├── bench_norm.cpp
│ │ │ ├── bench_reverse.cpp
│ │ │ ├── BenchSparseUtil.h
│ │ │ ├── bench_sum.cpp
│ │ │ ├── BenchTimer.h
│ │ │ ├── bench_unrolling
│ │ │ ├── BenchUtil.h
│ │ │ ├── benchVecAdd.cpp
│ │ │ ├── btl
│ │ │ │ ├── actions
│ │ │ │ │ ├── action_aat_product.hh
│ │ │ │ │ ├── action_ata_product.hh
│ │ │ │ │ ├── action_atv_product.hh
│ │ │ │ │ ├── action_axpby.hh
│ │ │ │ │ ├── action_axpy.hh
│ │ │ │ │ ├── action_cholesky.hh
│ │ │ │ │ ├── action_ger.hh
│ │ │ │ │ ├── action_hessenberg.hh
│ │ │ │ │ ├── action_lu_decomp.hh
│ │ │ │ │ ├── action_lu_solve.hh
│ │ │ │ │ ├── action_matrix_matrix_product_bis.hh
│ │ │ │ │ ├── action_matrix_matrix_product.hh
│ │ │ │ │ ├── action_matrix_vector_product.hh
│ │ │ │ │ ├── action_partial_lu.hh
│ │ │ │ │ ├── action_rot.hh
│ │ │ │ │ ├── action_symv.hh
│ │ │ │ │ ├── action_syr2.hh
│ │ │ │ │ ├── action_trisolve.hh
│ │ │ │ │ ├── action_trisolve_matrix.hh
│ │ │ │ │ ├── action_trmm.hh
│ │ │ │ │ └── basic_actions.hh
│ │ │ │ ├── cmake
│ │ │ │ │ ├── FindACML.cmake
│ │ │ │ │ ├── FindATLAS.cmake
│ │ │ │ │ ├── FindBLAZE.cmake
│ │ │ │ │ ├── FindBlitz.cmake
│ │ │ │ │ ├── FindCBLAS.cmake
│ │ │ │ │ ├── FindGMM.cmake
│ │ │ │ │ ├── FindMKL.cmake
│ │ │ │ │ ├── FindMTL4.cmake
│ │ │ │ │ ├── FindOPENBLAS.cmake
│ │ │ │ │ ├── FindPackageHandleStandardArgs.cmake
│ │ │ │ │ ├── FindTvmet.cmake
│ │ │ │ │ └── MacroOptionalAddSubdirectory.cmake
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── COPYING
│ │ │ │ ├── data
│ │ │ │ │ ├── action_settings.txt
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── gnuplot_common_settings.hh
│ │ │ │ │ ├── go_mean
│ │ │ │ │ ├── mean.cxx
│ │ │ │ │ ├── mk_gnuplot_script.sh
│ │ │ │ │ ├── mk_mean_script.sh
│ │ │ │ │ ├── mk_new_gnuplot.sh
│ │ │ │ │ ├── perlib_plot_settings.txt
│ │ │ │ │ ├── regularize.cxx
│ │ │ │ │ ├── smooth_all.sh
│ │ │ │ │ └── smooth.cxx
│ │ │ │ ├── generic_bench
│ │ │ │ │ ├── bench.hh
│ │ │ │ │ ├── bench_parameter.hh
│ │ │ │ │ ├── btl.hh
│ │ │ │ │ ├── init
│ │ │ │ │ │ ├── init_function.hh
│ │ │ │ │ │ ├── init_matrix.hh
│ │ │ │ │ │ └── init_vector.hh
│ │ │ │ │ ├── static
│ │ │ │ │ │ ├── bench_static.hh
│ │ │ │ │ │ ├── intel_bench_fixed_size.hh
│ │ │ │ │ │ └── static_size_generator.hh
│ │ │ │ │ ├── timers
│ │ │ │ │ │ ├── mixed_perf_analyzer.hh
│ │ │ │ │ │ ├── portable_perf_analyzer.hh
│ │ │ │ │ │ ├── portable_perf_analyzer_old.hh
│ │ │ │ │ │ ├── portable_timer.hh
│ │ │ │ │ │ ├── STL_perf_analyzer.hh
│ │ │ │ │ │ ├── STL_timer.hh
│ │ │ │ │ │ ├── x86_perf_analyzer.hh
│ │ │ │ │ │ └── x86_timer.hh
│ │ │ │ │ └── utils
│ │ │ │ │ ├── size_lin_log.hh
│ │ │ │ │ ├── size_log.hh
│ │ │ │ │ ├── utilities.h
│ │ │ │ │ └── xy_file.hh
│ │ │ │ ├── libs
│ │ │ │ │ ├── BLAS
│ │ │ │ │ │ ├── blas.h
│ │ │ │ │ │ ├── blas_interface.hh
│ │ │ │ │ │ ├── blas_interface_impl.hh
│ │ │ │ │ │ ├── c_interface_base.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ └── main.cpp
│ │ │ │ │ ├── blaze
│ │ │ │ │ │ ├── blaze_interface.hh
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ └── main.cpp
│ │ │ │ │ ├── blitz
│ │ │ │ │ │ ├── blitz_interface.hh
│ │ │ │ │ │ ├── blitz_LU_solve_interface.hh
│ │ │ │ │ │ ├── btl_blitz.cpp
│ │ │ │ │ │ ├── btl_tiny_blitz.cpp
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ └── tiny_blitz_interface.hh
│ │ │ │ │ ├── eigen2
│ │ │ │ │ │ ├── btl_tiny_eigen2.cpp
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── eigen2_interface.hh
│ │ │ │ │ │ ├── main_adv.cpp
│ │ │ │ │ │ ├── main_linear.cpp
│ │ │ │ │ │ ├── main_matmat.cpp
│ │ │ │ │ │ └── main_vecmat.cpp
│ │ │ │ │ ├── eigen3
│ │ │ │ │ │ ├── btl_tiny_eigen3.cpp
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── eigen3_interface.hh
│ │ │ │ │ │ ├── main_adv.cpp
│ │ │ │ │ │ ├── main_linear.cpp
│ │ │ │ │ │ ├── main_matmat.cpp
│ │ │ │ │ │ └── main_vecmat.cpp
│ │ │ │ │ ├── gmm
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── gmm_interface.hh
│ │ │ │ │ │ ├── gmm_LU_solve_interface.hh
│ │ │ │ │ │ └── main.cpp
│ │ │ │ │ ├── mtl4
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── mtl4_interface.hh
│ │ │ │ │ │ └── mtl4_LU_solve_interface.hh
│ │ │ │ │ ├── STL
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ └── STL_interface.hh
│ │ │ │ │ ├── tensors
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── main_linear.cpp
│ │ │ │ │ │ ├── main_matmat.cpp
│ │ │ │ │ │ ├── main_vecmat.cpp
│ │ │ │ │ │ └── tensor_interface.hh
│ │ │ │ │ ├── tvmet
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ └── tvmet_interface.hh
│ │ │ │ │ └── ublas
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── main.cpp
│ │ │ │ │ └── ublas_interface.hh
│ │ │ │ └── README
│ │ │ ├── check_cache_queries.cpp
│ │ │ ├── dense_solvers.cpp
│ │ │ ├── eig33.cpp
│ │ │ ├── geometry.cpp
│ │ │ ├── perf_monitoring
│ │ │ │ └── gemm
│ │ │ │ ├── changesets.txt
│ │ │ │ ├── gemm.cpp
│ │ │ │ ├── gemm_settings.txt
│ │ │ │ ├── lazy_gemm.cpp
│ │ │ │ ├── lazy_gemm_settings.txt
│ │ │ │ ├── make_plot.sh
│ │ │ │ └── run.sh
│ │ │ ├── product_threshold.cpp
│ │ │ ├── quatmul.cpp
│ │ │ ├── quat_slerp.cpp
│ │ │ ├── README.txt
│ │ │ ├── sparse_cholesky.cpp
│ │ │ ├── sparse_dense_product.cpp
│ │ │ ├── sparse_lu.cpp
│ │ │ ├── sparse_product.cpp
│ │ │ ├── sparse_randomsetter.cpp
│ │ │ ├── sparse_setter.cpp
│ │ │ ├── sparse_transpose.cpp
│ │ │ ├── sparse_trisolver.cpp
│ │ │ ├── spbench
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── spbench.dtd
│ │ │ │ ├── spbenchsolver.cpp
│ │ │ │ ├── spbenchsolver.h
│ │ │ │ ├── spbenchstyle.h
│ │ │ │ ├── sp_solver.cpp
│ │ │ │ └── test_sparseLU.cpp
│ │ │ ├── spmv.cpp
│ │ │ ├── tensors
│ │ │ │ ├── benchmark.h
│ │ │ │ ├── benchmark_main.cc
│ │ │ │ ├── contraction_benchmarks_cpu.cc
│ │ │ │ ├── README
│ │ │ │ ├── tensor_benchmarks_cpu.cc
│ │ │ │ ├── tensor_benchmarks_fp16_gpu.cu
│ │ │ │ ├── tensor_benchmarks_gpu.cu
│ │ │ │ ├── tensor_benchmarks.h
│ │ │ │ └── tensor_benchmarks_sycl.cc
│ │ │ └── vdw_new.cpp
│ │ ├── blas
│ │ │ ├── BandTriangularSolver.h
│ │ │ ├── CMakeLists.txt
│ │ │ ├── common.h
│ │ │ ├── complex_double.cpp
│ │ │ ├── complex_single.cpp
│ │ │ ├── double.cpp
│ │ │ ├── f2c
│ │ │ │ ├── chbmv.c
│ │ │ │ ├── chpmv.c
│ │ │ │ ├── complexdots.c
│ │ │ │ ├── ctbmv.c
│ │ │ │ ├── datatypes.h
│ │ │ │ ├── d_cnjg.c
│ │ │ │ ├── drotm.c
│ │ │ │ ├── drotmg.c
│ │ │ │ ├── dsbmv.c
│ │ │ │ ├── dspmv.c
│ │ │ │ ├── dtbmv.c
│ │ │ │ ├── lsame.c
│ │ │ │ ├── r_cnjg.c
│ │ │ │ ├── srotm.c
│ │ │ │ ├── srotmg.c
│ │ │ │ ├── ssbmv.c
│ │ │ │ ├── sspmv.c
│ │ │ │ ├── stbmv.c
│ │ │ │ ├── zhbmv.c
│ │ │ │ ├── zhpmv.c
│ │ │ │ └── ztbmv.c
│ │ │ ├── fortran
│ │ │ │ └── complexdots.f
│ │ │ ├── GeneralRank1Update.h
│ │ │ ├── level1_cplx_impl.h
│ │ │ ├── level1_impl.h
│ │ │ ├── level1_real_impl.h
│ │ │ ├── level2_cplx_impl.h
│ │ │ ├── level2_impl.h
│ │ │ ├── level2_real_impl.h
│ │ │ ├── level3_impl.h
│ │ │ ├── PackedSelfadjointProduct.h
│ │ │ ├── PackedTriangularMatrixVector.h
│ │ │ ├── PackedTriangularSolverVector.h
│ │ │ ├── Rank2Update.h
│ │ │ ├── README.txt
│ │ │ ├── single.cpp
│ │ │ ├── testing
│ │ │ │ ├── cblat1.f
│ │ │ │ ├── cblat2.dat
│ │ │ │ ├── cblat2.f
│ │ │ │ ├── cblat3.dat
│ │ │ │ ├── cblat3.f
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── dblat1.f
│ │ │ │ ├── dblat2.dat
│ │ │ │ ├── dblat2.f
│ │ │ │ ├── dblat3.dat
│ │ │ │ ├── dblat3.f
│ │ │ │ ├── runblastest.sh
│ │ │ │ ├── sblat1.f
│ │ │ │ ├── sblat2.dat
│ │ │ │ ├── sblat2.f
│ │ │ │ ├── sblat3.dat
│ │ │ │ ├── sblat3.f
│ │ │ │ ├── zblat1.f
│ │ │ │ ├── zblat2.dat
│ │ │ │ ├── zblat2.f
│ │ │ │ ├── zblat3.dat
│ │ │ │ └── zblat3.f
│ │ │ └── xerbla.cpp
│ │ ├── cmake
│ │ │ ├── Eigen3Config.cmake.in
│ │ │ ├── Eigen3ConfigLegacy.cmake.in
│ │ │ ├── EigenConfigureTesting.cmake
│ │ │ ├── EigenDetermineOSVersion.cmake
│ │ │ ├── EigenDetermineVSServicePack.cmake
│ │ │ ├── EigenTesting.cmake
│ │ │ ├── EigenUninstall.cmake
│ │ │ ├── FindAdolc.cmake
│ │ │ ├── FindBLAS.cmake
│ │ │ ├── FindBLASEXT.cmake
│ │ │ ├── FindCholmod.cmake
│ │ │ ├── FindComputeCpp.cmake
│ │ │ ├── FindEigen2.cmake
│ │ │ ├── FindEigen3.cmake
│ │ │ ├── FindFFTW.cmake
│ │ │ ├── FindGLEW.cmake
│ │ │ ├── FindGMP.cmake
│ │ │ ├── FindGoogleHash.cmake
│ │ │ ├── FindGSL.cmake
│ │ │ ├── FindHWLOC.cmake
│ │ │ ├── FindLAPACK.cmake
│ │ │ ├── FindMetis.cmake
│ │ │ ├── FindMPFR.cmake
│ │ │ ├── FindPastix.cmake
│ │ │ ├── FindPTSCOTCH.cmake
│ │ │ ├── FindScotch.cmake
│ │ │ ├── FindSPQR.cmake
│ │ │ ├── FindStandardMathLibrary.cmake
│ │ │ ├── FindSuperLU.cmake
│ │ │ ├── FindUmfpack.cmake
│ │ │ ├── language_support.cmake
│ │ │ ├── RegexUtils.cmake
│ │ │ └── UseEigen3.cmake
│ │ ├── CMakeLists.txt
│ │ ├── COPYING.BSD
│ │ ├── COPYING.GPL
│ │ ├── COPYING.LGPL
│ │ ├── COPYING.MINPACK
│ │ ├── COPYING.MPL2
│ │ ├── COPYING.README
│ │ ├── CTestConfig.cmake
│ │ ├── CTestCustom.cmake.in
│ │ ├── debug
│ │ │ ├── gdb
│ │ │ │ ├── __init__.py
│ │ │ │ └── printers.py
│ │ │ └── msvc
│ │ │ ├── eigen_autoexp_part.dat
│ │ │ └── eigen.natvis
│ │ ├── demos
│ │ │ ├── CMakeLists.txt
│ │ │ ├── mandelbrot
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── mandelbrot.cpp
│ │ │ │ ├── mandelbrot.h
│ │ │ │ └── README
│ │ │ ├── mix_eigen_and_c
│ │ │ │ ├── binary_library.cpp
│ │ │ │ ├── binary_library.h
│ │ │ │ ├── example.c
│ │ │ │ └── README
│ │ │ └── opengl
│ │ │ ├── camera.cpp
│ │ │ ├── camera.h
│ │ │ ├── CMakeLists.txt
│ │ │ ├── gpuhelper.cpp
│ │ │ ├── gpuhelper.h
│ │ │ ├── icosphere.cpp
│ │ │ ├── icosphere.h
│ │ │ ├── quaternion_demo.cpp
│ │ │ ├── quaternion_demo.h
│ │ │ ├── README
│ │ │ ├── trackball.cpp
│ │ │ └── trackball.h
│ │ ├── doc
│ │ │ ├── A05_PortingFrom2To3.dox
│ │ │ ├── AsciiQuickReference.txt
│ │ │ ├── B01_Experimental.dox
│ │ │ ├── ClassHierarchy.dox
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CoeffwiseMathFunctionsTable.dox
│ │ │ ├── CustomizingEigen_CustomScalar.dox
│ │ │ ├── CustomizingEigen_InheritingMatrix.dox
│ │ │ ├── CustomizingEigen_NullaryExpr.dox
│ │ │ ├── CustomizingEigen_Plugins.dox
│ │ │ ├── DenseDecompositionBenchmark.dox
│ │ │ ├── Doxyfile.in
│ │ │ ├── eigendoxy.css
│ │ │ ├── eigendoxy_footer.html.in
│ │ │ ├── eigendoxy_header.html.in
│ │ │ ├── eigendoxy_layout.xml.in
│ │ │ ├── eigendoxy_tabs.css
│ │ │ ├── eigen_navtree_hacks.js
│ │ │ ├── Eigen_Silly_Professor_64x64.png
│ │ │ ├── examples
│ │ │ │ ├── class_Block.cpp
│ │ │ │ ├── class_CwiseBinaryOp.cpp
│ │ │ │ ├── class_CwiseUnaryOp.cpp
│ │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp
│ │ │ │ ├── class_FixedBlock.cpp
│ │ │ │ ├── class_FixedVectorBlock.cpp
│ │ │ │ ├── class_VectorBlock.cpp
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── CustomizingEigen_Inheritance.cpp
│ │ │ │ ├── Cwise_erfc.cpp
│ │ │ │ ├── Cwise_erf.cpp
│ │ │ │ ├── Cwise_lgamma.cpp
│ │ │ │ ├── DenseBase_middleCols_int.cpp
│ │ │ │ ├── DenseBase_middleRows_int.cpp
│ │ │ │ ├── DenseBase_template_int_middleCols.cpp
│ │ │ │ ├── DenseBase_template_int_middleRows.cpp
│ │ │ │ ├── function_taking_eigenbase.cpp
│ │ │ │ ├── function_taking_ref.cpp
│ │ │ │ ├── make_circulant2.cpp
│ │ │ │ ├── make_circulant.cpp
│ │ │ │ ├── make_circulant.cpp.entry
│ │ │ │ ├── make_circulant.cpp.evaluator
│ │ │ │ ├── make_circulant.cpp.expression
│ │ │ │ ├── make_circulant.cpp.main
│ │ │ │ ├── make_circulant.cpp.preamble
│ │ │ │ ├── make_circulant.cpp.traits
│ │ │ │ ├── matrixfree_cg.cpp
│ │ │ │ ├── nullary_indexing.cpp
│ │ │ │ ├── QuickStart_example2_dynamic.cpp
│ │ │ │ ├── QuickStart_example2_fixed.cpp
│ │ │ │ ├── QuickStart_example.cpp
│ │ │ │ ├── TemplateKeyword_flexible.cpp
│ │ │ │ ├── TemplateKeyword_simple.cpp
│ │ │ │ ├── tut_arithmetic_add_sub.cpp
│ │ │ │ ├── tut_arithmetic_dot_cross.cpp
│ │ │ │ ├── tut_arithmetic_matrix_mul.cpp
│ │ │ │ ├── tut_arithmetic_redux_basic.cpp
│ │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp
│ │ │ │ ├── tut_matrix_coefficient_accessors.cpp
│ │ │ │ ├── tut_matrix_resize.cpp
│ │ │ │ ├── tut_matrix_resize_fixed_size.cpp
│ │ │ │ ├── Tutorial_ArrayClass_accessors.cpp
│ │ │ │ ├── Tutorial_ArrayClass_addition.cpp
│ │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp
│ │ │ │ ├── Tutorial_ArrayClass_interop.cpp
│ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp
│ │ │ │ ├── Tutorial_ArrayClass_mult.cpp
│ │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp
│ │ │ │ ├── Tutorial_BlockOperations_colrow.cpp
│ │ │ │ ├── Tutorial_BlockOperations_corner.cpp
│ │ │ │ ├── Tutorial_BlockOperations_print_block.cpp
│ │ │ │ ├── Tutorial_BlockOperations_vector.cpp
│ │ │ │ ├── TutorialInplaceLU.cpp
│ │ │ │ ├── TutorialLinAlgComputeTwice.cpp
│ │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp
│ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp
│ │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp
│ │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp
│ │ │ │ ├── TutorialLinAlgRankRevealing.cpp
│ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp
│ │ │ │ ├── TutorialLinAlgSetThreshold.cpp
│ │ │ │ ├── TutorialLinAlgSVDSolve.cpp
│ │ │ │ ├── Tutorial_PartialLU_solve.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp
│ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp
│ │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp
│ │ │ │ └── Tutorial_simple_example_fixed_size.cpp
│ │ │ ├── FixedSizeVectorizable.dox
│ │ │ ├── ftv2node.png
│ │ │ ├── ftv2pnode.png
│ │ │ ├── FunctionsTakingEigenTypes.dox
│ │ │ ├── HiPerformance.dox
│ │ │ ├── InplaceDecomposition.dox
│ │ │ ├── InsideEigenExample.dox
│ │ │ ├── LeastSquares.dox
│ │ │ ├── Manual.dox
│ │ │ ├── MatrixfreeSolverExample.dox
│ │ │ ├── NewExpressionType.dox
│ │ │ ├── Overview.dox
│ │ │ ├── PassingByValue.dox
│ │ │ ├── Pitfalls.dox
│ │ │ ├── PreprocessorDirectives.dox
│ │ │ ├── QuickReference.dox
│ │ │ ├── QuickStartGuide.dox
│ │ │ ├── snippets
│ │ │ │ ├── AngleAxis_mimic_euler.cpp
│ │ │ │ ├── BiCGSTAB_simple.cpp
│ │ │ │ ├── BiCGSTAB_step_by_step.cpp
│ │ │ │ ├── class_FullPivLU.cpp
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── ColPivHouseholderQR_solve.cpp
│ │ │ │ ├── compile_snippet.cpp.in
│ │ │ │ ├── ComplexEigenSolver_compute.cpp
│ │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp
│ │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp
│ │ │ │ ├── ComplexSchur_compute.cpp
│ │ │ │ ├── ComplexSchur_matrixT.cpp
│ │ │ │ ├── ComplexSchur_matrixU.cpp
│ │ │ │ ├── Cwise_abs2.cpp
│ │ │ │ ├── Cwise_abs.cpp
│ │ │ │ ├── Cwise_acos.cpp
│ │ │ │ ├── Cwise_arg.cpp
│ │ │ │ ├── Cwise_array_power_array.cpp
│ │ │ │ ├── Cwise_asin.cpp
│ │ │ │ ├── Cwise_atan.cpp
│ │ │ │ ├── Cwise_boolean_and.cpp
│ │ │ │ ├── Cwise_boolean_not.cpp
│ │ │ │ ├── Cwise_boolean_or.cpp
│ │ │ │ ├── Cwise_boolean_xor.cpp
│ │ │ │ ├── Cwise_ceil.cpp
│ │ │ │ ├── Cwise_cos.cpp
│ │ │ │ ├── Cwise_cosh.cpp
│ │ │ │ ├── Cwise_cube.cpp
│ │ │ │ ├── Cwise_equal_equal.cpp
│ │ │ │ ├── Cwise_exp.cpp
│ │ │ │ ├── Cwise_floor.cpp
│ │ │ │ ├── Cwise_greater.cpp
│ │ │ │ ├── Cwise_greater_equal.cpp
│ │ │ │ ├── Cwise_inverse.cpp
│ │ │ │ ├── Cwise_isFinite.cpp
│ │ │ │ ├── Cwise_isInf.cpp
│ │ │ │ ├── Cwise_isNaN.cpp
│ │ │ │ ├── Cwise_less.cpp
│ │ │ │ ├── Cwise_less_equal.cpp
│ │ │ │ ├── Cwise_log10.cpp
│ │ │ │ ├── Cwise_log.cpp
│ │ │ │ ├── Cwise_max.cpp
│ │ │ │ ├── Cwise_min.cpp
│ │ │ │ ├── Cwise_minus.cpp
│ │ │ │ ├── Cwise_minus_equal.cpp
│ │ │ │ ├── Cwise_not_equal.cpp
│ │ │ │ ├── Cwise_plus.cpp
│ │ │ │ ├── Cwise_plus_equal.cpp
│ │ │ │ ├── Cwise_pow.cpp
│ │ │ │ ├── Cwise_product.cpp
│ │ │ │ ├── Cwise_quotient.cpp
│ │ │ │ ├── Cwise_round.cpp
│ │ │ │ ├── Cwise_scalar_power_array.cpp
│ │ │ │ ├── Cwise_sign.cpp
│ │ │ │ ├── Cwise_sin.cpp
│ │ │ │ ├── Cwise_sinh.cpp
│ │ │ │ ├── Cwise_slash_equal.cpp
│ │ │ │ ├── Cwise_sqrt.cpp
│ │ │ │ ├── Cwise_square.cpp
│ │ │ │ ├── Cwise_tan.cpp
│ │ │ │ ├── Cwise_tanh.cpp
│ │ │ │ ├── Cwise_times_equal.cpp
│ │ │ │ ├── DenseBase_LinSpaced.cpp
│ │ │ │ ├── DenseBase_LinSpacedInt.cpp
│ │ │ │ ├── DenseBase_LinSpaced_seq.cpp
│ │ │ │ ├── DenseBase_setLinSpaced.cpp
│ │ │ │ ├── DirectionWise_hnormalized.cpp
│ │ │ │ ├── DirectionWise_replicate.cpp
│ │ │ │ ├── DirectionWise_replicate_int.cpp
│ │ │ │ ├── EigenSolver_compute.cpp
│ │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp
│ │ │ │ ├── EigenSolver_eigenvalues.cpp
│ │ │ │ ├── EigenSolver_eigenvectors.cpp
│ │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp
│ │ │ │ ├── FullPivHouseholderQR_solve.cpp
│ │ │ │ ├── FullPivLU_image.cpp
│ │ │ │ ├── FullPivLU_kernel.cpp
│ │ │ │ ├── FullPivLU_solve.cpp
│ │ │ │ ├── GeneralizedEigenSolver.cpp
│ │ │ │ ├── HessenbergDecomposition_compute.cpp
│ │ │ │ ├── HessenbergDecomposition_matrixH.cpp
│ │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp
│ │ │ │ ├── HouseholderQR_householderQ.cpp
│ │ │ │ ├── HouseholderQR_solve.cpp
│ │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp
│ │ │ │ ├── IOFormat.cpp
│ │ │ │ ├── Jacobi_makeGivens.cpp
│ │ │ │ ├── Jacobi_makeJacobi.cpp
│ │ │ │ ├── JacobiSVD_basic.cpp
│ │ │ │ ├── LeastSquaresNormalEquations.cpp
│ │ │ │ ├── LeastSquaresQR.cpp
│ │ │ │ ├── LLT_example.cpp
│ │ │ │ ├── LLT_solve.cpp
│ │ │ │ ├── Map_general_stride.cpp
│ │ │ │ ├── Map_inner_stride.cpp
│ │ │ │ ├── Map_outer_stride.cpp
│ │ │ │ ├── Map_placement_new.cpp
│ │ │ │ ├── Map_simple.cpp
│ │ │ │ ├── MatrixBase_adjoint.cpp
│ │ │ │ ├── MatrixBase_all.cpp
│ │ │ │ ├── MatrixBase_applyOnTheLeft.cpp
│ │ │ │ ├── MatrixBase_applyOnTheRight.cpp
│ │ │ │ ├── MatrixBase_array_const.cpp
│ │ │ │ ├── MatrixBase_array.cpp
│ │ │ │ ├── MatrixBase_asDiagonal.cpp
│ │ │ │ ├── MatrixBase_block_int_int.cpp
│ │ │ │ ├── MatrixBase_block_int_int_int_int.cpp
│ │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_bottomRows_int.cpp
│ │ │ │ ├── MatrixBase_cast.cpp
│ │ │ │ ├── MatrixBase_col.cpp
│ │ │ │ ├── MatrixBase_colwise.cpp
│ │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp
│ │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp
│ │ │ │ ├── MatrixBase_cwiseAbs2.cpp
│ │ │ │ ├── MatrixBase_cwiseAbs.cpp
│ │ │ │ ├── MatrixBase_cwiseEqual.cpp
│ │ │ │ ├── MatrixBase_cwiseInverse.cpp
│ │ │ │ ├── MatrixBase_cwiseMax.cpp
│ │ │ │ ├── MatrixBase_cwiseMin.cpp
│ │ │ │ ├── MatrixBase_cwiseNotEqual.cpp
│ │ │ │ ├── MatrixBase_cwiseProduct.cpp
│ │ │ │ ├── MatrixBase_cwiseQuotient.cpp
│ │ │ │ ├── MatrixBase_cwiseSign.cpp
│ │ │ │ ├── MatrixBase_cwiseSqrt.cpp
│ │ │ │ ├── MatrixBase_diagonal.cpp
│ │ │ │ ├── MatrixBase_diagonal_int.cpp
│ │ │ │ ├── MatrixBase_diagonal_template_int.cpp
│ │ │ │ ├── MatrixBase_eigenvalues.cpp
│ │ │ │ ├── MatrixBase_end_int.cpp
│ │ │ │ ├── MatrixBase_eval.cpp
│ │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp
│ │ │ │ ├── MatrixBase_hnormalized.cpp
│ │ │ │ ├── MatrixBase_homogeneous.cpp
│ │ │ │ ├── MatrixBase_identity.cpp
│ │ │ │ ├── MatrixBase_identity_int_int.cpp
│ │ │ │ ├── MatrixBase_inverse.cpp
│ │ │ │ ├── MatrixBase_isDiagonal.cpp
│ │ │ │ ├── MatrixBase_isIdentity.cpp
│ │ │ │ ├── MatrixBase_isOnes.cpp
│ │ │ │ ├── MatrixBase_isOrthogonal.cpp
│ │ │ │ ├── MatrixBase_isUnitary.cpp
│ │ │ │ ├── MatrixBase_isZero.cpp
│ │ │ │ ├── MatrixBase_leftCols_int.cpp
│ │ │ │ ├── MatrixBase_noalias.cpp
│ │ │ │ ├── MatrixBase_ones.cpp
│ │ │ │ ├── MatrixBase_ones_int.cpp
│ │ │ │ ├── MatrixBase_ones_int_int.cpp
│ │ │ │ ├── MatrixBase_operatorNorm.cpp
│ │ │ │ ├── MatrixBase_prod.cpp
│ │ │ │ ├── MatrixBase_random.cpp
│ │ │ │ ├── MatrixBase_random_int.cpp
│ │ │ │ ├── MatrixBase_random_int_int.cpp
│ │ │ │ ├── MatrixBase_replicate.cpp
│ │ │ │ ├── MatrixBase_replicate_int_int.cpp
│ │ │ │ ├── MatrixBase_reverse.cpp
│ │ │ │ ├── MatrixBase_rightCols_int.cpp
│ │ │ │ ├── MatrixBase_row.cpp
│ │ │ │ ├── MatrixBase_rowwise.cpp
│ │ │ │ ├── MatrixBase_segment_int_int.cpp
│ │ │ │ ├── MatrixBase_select.cpp
│ │ │ │ ├── MatrixBase_selfadjointView.cpp
│ │ │ │ ├── MatrixBase_set.cpp
│ │ │ │ ├── MatrixBase_setIdentity.cpp
│ │ │ │ ├── MatrixBase_setOnes.cpp
│ │ │ │ ├── MatrixBase_setRandom.cpp
│ │ │ │ ├── MatrixBase_setZero.cpp
│ │ │ │ ├── MatrixBase_start_int.cpp
│ │ │ │ ├── MatrixBase_template_int_bottomRows.cpp
│ │ │ │ ├── MatrixBase_template_int_end.cpp
│ │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp
│ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp
│ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp
│ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp
│ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp
│ │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_template_int_leftCols.cpp
│ │ │ │ ├── MatrixBase_template_int_rightCols.cpp
│ │ │ │ ├── MatrixBase_template_int_segment.cpp
│ │ │ │ ├── MatrixBase_template_int_start.cpp
│ │ │ │ ├── MatrixBase_template_int_topRows.cpp
│ │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp
│ │ │ │ ├── MatrixBase_topRows_int.cpp
│ │ │ │ ├── MatrixBase_transpose.cpp
│ │ │ │ ├── MatrixBase_triangularView.cpp
│ │ │ │ ├── MatrixBase_zero.cpp
│ │ │ │ ├── MatrixBase_zero_int.cpp
│ │ │ │ ├── MatrixBase_zero_int_int.cpp
│ │ │ │ ├── Matrix_Map_stride.cpp
│ │ │ │ ├── Matrix_resize_int.cpp
│ │ │ │ ├── Matrix_resize_int_int.cpp
│ │ │ │ ├── Matrix_resize_int_NoChange.cpp
│ │ │ │ ├── Matrix_resize_NoChange_int.cpp
│ │ │ │ ├── Matrix_setConstant_int.cpp
│ │ │ │ ├── Matrix_setConstant_int_int.cpp
│ │ │ │ ├── Matrix_setIdentity_int_int.cpp
│ │ │ │ ├── Matrix_setOnes_int.cpp
│ │ │ │ ├── Matrix_setOnes_int_int.cpp
│ │ │ │ ├── Matrix_setRandom_int.cpp
│ │ │ │ ├── Matrix_setRandom_int_int.cpp
│ │ │ │ ├── Matrix_setZero_int.cpp
│ │ │ │ ├── Matrix_setZero_int_int.cpp
│ │ │ │ ├── PartialPivLU_solve.cpp
│ │ │ │ ├── PartialRedux_count.cpp
│ │ │ │ ├── PartialRedux_maxCoeff.cpp
│ │ │ │ ├── PartialRedux_minCoeff.cpp
│ │ │ │ ├── PartialRedux_norm.cpp
│ │ │ │ ├── PartialRedux_prod.cpp
│ │ │ │ ├── PartialRedux_squaredNorm.cpp
│ │ │ │ ├── PartialRedux_sum.cpp
│ │ │ │ ├── RealQZ_compute.cpp
│ │ │ │ ├── RealSchur_compute.cpp
│ │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp
│ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp
│ │ │ │ ├── SelfAdjointView_eigenvalues.cpp
│ │ │ │ ├── SelfAdjointView_operatorNorm.cpp
│ │ │ │ ├── SparseMatrix_coeffs.cpp
│ │ │ │ ├── TopicAliasing_block_correct.cpp
│ │ │ │ ├── TopicAliasing_block.cpp
│ │ │ │ ├── TopicAliasing_cwise.cpp
│ │ │ │ ├── TopicAliasing_mult1.cpp
│ │ │ │ ├── TopicAliasing_mult2.cpp
│ │ │ │ ├── TopicAliasing_mult3.cpp
│ │ │ │ ├── TopicAliasing_mult4.cpp
│ │ │ │ ├── TopicAliasing_mult5.cpp
│ │ │ │ ├── TopicStorageOrders_example.cpp
│ │ │ │ ├── Triangular_solve.cpp
│ │ │ │ ├── Tridiagonalization_compute.cpp
│ │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp
│ │ │ │ ├── Tridiagonalization_diagonal.cpp
│ │ │ │ ├── Tridiagonalization_householderCoefficients.cpp
│ │ │ │ ├── Tridiagonalization_packedMatrix.cpp
│ │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp
│ │ │ │ ├── tut_arithmetic_redux_minmax.cpp
│ │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp
│ │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp
│ │ │ │ ├── tut_arithmetic_transpose_inplace.cpp
│ │ │ │ ├── tut_matrix_assignment_resizing.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp
│ │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp
│ │ │ │ ├── Tutorial_commainit_01b.cpp
│ │ │ │ ├── Tutorial_commainit_01.cpp
│ │ │ │ ├── Tutorial_commainit_02.cpp
│ │ │ │ ├── Tutorial_Map_rowmajor.cpp
│ │ │ │ ├── Tutorial_Map_using.cpp
│ │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp
│ │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp
│ │ │ │ ├── Tutorial_SlicingCol.cpp
│ │ │ │ ├── Tutorial_SlicingVec.cpp
│ │ │ │ ├── Tutorial_solve_matrix_inverse.cpp
│ │ │ │ ├── Tutorial_solve_multiple_rhs.cpp
│ │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp
│ │ │ │ ├── Tutorial_solve_singular.cpp
│ │ │ │ ├── Tutorial_solve_triangular.cpp
│ │ │ │ ├── Tutorial_solve_triangular_inplace.cpp
│ │ │ │ ├── VectorwiseOp_homogeneous.cpp
│ │ │ │ └── Vectorwise_reverse.cpp
│ │ │ ├── SparseLinearSystems.dox
│ │ │ ├── SparseQuickReference.dox
│ │ │ ├── special_examples
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── random_cpp11.cpp
│ │ │ │ ├── Tutorial_sparse_example.cpp
│ │ │ │ └── Tutorial_sparse_example_details.cpp
│ │ │ ├── StlContainers.dox
│ │ │ ├── StorageOrders.dox
│ │ │ ├── StructHavingEigenMembers.dox
│ │ │ ├── TemplateKeyword.dox
│ │ │ ├── TopicAliasing.dox
│ │ │ ├── TopicAssertions.dox
│ │ │ ├── TopicCMakeGuide.dox
│ │ │ ├── TopicEigenExpressionTemplates.dox
│ │ │ ├── TopicLazyEvaluation.dox
│ │ │ ├── TopicLinearAlgebraDecompositions.dox
│ │ │ ├── TopicMultithreading.dox
│ │ │ ├── TopicResizing.dox
│ │ │ ├── TopicScalarTypes.dox
│ │ │ ├── TopicVectorization.dox
│ │ │ ├── TutorialAdvancedInitialization.dox
│ │ │ ├── TutorialArrayClass.dox
│ │ │ ├── TutorialBlockOperations.dox
│ │ │ ├── tutorial.cpp
│ │ │ ├── TutorialGeometry.dox
│ │ │ ├── TutorialLinearAlgebra.dox
│ │ │ ├── TutorialMapClass.dox
│ │ │ ├── TutorialMatrixArithmetic.dox
│ │ │ ├── TutorialMatrixClass.dox
│ │ │ ├── TutorialReductionsVisitorsBroadcasting.dox
│ │ │ ├── TutorialReshapeSlicing.dox
│ │ │ ├── TutorialSparse.dox
│ │ │ ├── TutorialSparse_example_details.dox
│ │ │ ├── UnalignedArrayAssert.dox
│ │ │ ├── UsingBlasLapackBackends.dox
│ │ │ ├── UsingIntelMKL.dox
│ │ │ ├── UsingNVCC.dox
│ │ │ └── WrongStackAlignment.dox
│ │ ├── Eigen
│ │ │ ├── Cholesky
│ │ │ ├── CholmodSupport
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Core
│ │ │ ├── Dense
│ │ │ ├── Eigen
│ │ │ ├── Eigenvalues
│ │ │ ├── Geometry
│ │ │ ├── Householder
│ │ │ ├── IterativeLinearSolvers
│ │ │ ├── Jacobi
│ │ │ ├── LU
│ │ │ ├── MetisSupport
│ │ │ ├── OrderingMethods
│ │ │ ├── PardisoSupport
│ │ │ ├── PaStiXSupport
│ │ │ ├── QR
│ │ │ ├── QtAlignedMalloc
│ │ │ ├── Sparse
│ │ │ ├── SparseCholesky
│ │ │ ├── SparseCore
│ │ │ ├── SparseLU
│ │ │ ├── SparseQR
│ │ │ ├── SPQRSupport
│ │ │ ├── src
│ │ │ │ ├── Cholesky
│ │ │ │ │ ├── LDLT.h
│ │ │ │ │ ├── LLT.h
│ │ │ │ │ └── LLT_LAPACKE.h
│ │ │ │ ├── CholmodSupport
│ │ │ │ │ └── CholmodSupport.h
│ │ │ │ ├── Core
│ │ │ │ │ ├── arch
│ │ │ │ │ │ ├── AltiVec
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── AVX
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ ├── AVX512
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── CUDA
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── Half.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ ├── PacketMathHalf.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ ├── Default
│ │ │ │ │ │ │ ├── ConjHelper.h
│ │ │ │ │ │ │ └── Settings.h
│ │ │ │ │ │ ├── NEON
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── SSE
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ └── ZVector
│ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ ├── ArrayBase.h
│ │ │ │ │ ├── Array.h
│ │ │ │ │ ├── ArrayWrapper.h
│ │ │ │ │ ├── AssignEvaluator.h
│ │ │ │ │ ├── Assign.h
│ │ │ │ │ ├── Assign_MKL.h
│ │ │ │ │ ├── BandMatrix.h
│ │ │ │ │ ├── Block.h
│ │ │ │ │ ├── BooleanRedux.h
│ │ │ │ │ ├── CommaInitializer.h
│ │ │ │ │ ├── ConditionEstimator.h
│ │ │ │ │ ├── CoreEvaluators.h
│ │ │ │ │ ├── CoreIterators.h
│ │ │ │ │ ├── CwiseBinaryOp.h
│ │ │ │ │ ├── CwiseNullaryOp.h
│ │ │ │ │ ├── CwiseTernaryOp.h
│ │ │ │ │ ├── CwiseUnaryOp.h
│ │ │ │ │ ├── CwiseUnaryView.h
│ │ │ │ │ ├── DenseBase.h
│ │ │ │ │ ├── DenseCoeffsBase.h
│ │ │ │ │ ├── DenseStorage.h
│ │ │ │ │ ├── Diagonal.h
│ │ │ │ │ ├── DiagonalMatrix.h
│ │ │ │ │ ├── DiagonalProduct.h
│ │ │ │ │ ├── Dot.h
│ │ │ │ │ ├── EigenBase.h
│ │ │ │ │ ├── ForceAlignedAccess.h
│ │ │ │ │ ├── functors
│ │ │ │ │ │ ├── AssignmentFunctors.h
│ │ │ │ │ │ ├── BinaryFunctors.h
│ │ │ │ │ │ ├── NullaryFunctors.h
│ │ │ │ │ │ ├── StlFunctors.h
│ │ │ │ │ │ ├── TernaryFunctors.h
│ │ │ │ │ │ └── UnaryFunctors.h
│ │ │ │ │ ├── Fuzzy.h
│ │ │ │ │ ├── GeneralProduct.h
│ │ │ │ │ ├── GenericPacketMath.h
│ │ │ │ │ ├── GlobalFunctions.h
│ │ │ │ │ ├── Inverse.h
│ │ │ │ │ ├── IO.h
│ │ │ │ │ ├── MapBase.h
│ │ │ │ │ ├── Map.h
│ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ ├── MathFunctionsImpl.h
│ │ │ │ │ ├── MatrixBase.h
│ │ │ │ │ ├── Matrix.h
│ │ │ │ │ ├── NestByValue.h
│ │ │ │ │ ├── NoAlias.h
│ │ │ │ │ ├── NumTraits.h
│ │ │ │ │ ├── PermutationMatrix.h
│ │ │ │ │ ├── PlainObjectBase.h
│ │ │ │ │ ├── ProductEvaluators.h
│ │ │ │ │ ├── Product.h
│ │ │ │ │ ├── products
│ │ │ │ │ │ ├── GeneralBlockPanelKernel.h
│ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixMatrix.h
│ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h
│ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixVector.h
│ │ │ │ │ │ ├── Parallelizer.h
│ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h
│ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h
│ │ │ │ │ │ ├── SelfadjointMatrixVector.h
│ │ │ │ │ │ ├── SelfadjointProduct.h
│ │ │ │ │ │ ├── SelfadjointRank2Update.h
│ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── TriangularMatrixMatrix.h
│ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h
│ │ │ │ │ │ ├── TriangularMatrixVector.h
│ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h
│ │ │ │ │ │ ├── TriangularSolverMatrix.h
│ │ │ │ │ │ └── TriangularSolverVector.h
│ │ │ │ │ ├── Random.h
│ │ │ │ │ ├── Redux.h
│ │ │ │ │ ├── Ref.h
│ │ │ │ │ ├── Replicate.h
│ │ │ │ │ ├── ReturnByValue.h
│ │ │ │ │ ├── Reverse.h
│ │ │ │ │ ├── Select.h
│ │ │ │ │ ├── SelfAdjointView.h
│ │ │ │ │ ├── SelfCwiseBinaryOp.h
│ │ │ │ │ ├── Solve.h
│ │ │ │ │ ├── SolverBase.h
│ │ │ │ │ ├── SolveTriangular.h
│ │ │ │ │ ├── StableNorm.h
│ │ │ │ │ ├── Stride.h
│ │ │ │ │ ├── Swap.h
│ │ │ │ │ ├── Transpose.h
│ │ │ │ │ ├── Transpositions.h
│ │ │ │ │ ├── TriangularMatrix.h
│ │ │ │ │ ├── util
│ │ │ │ │ │ ├── BlasUtil.h
│ │ │ │ │ │ ├── Constants.h
│ │ │ │ │ │ ├── DisableStupidWarnings.h
│ │ │ │ │ │ ├── ForwardDeclarations.h
│ │ │ │ │ │ ├── Macros.h
│ │ │ │ │ │ ├── Memory.h
│ │ │ │ │ │ ├── Meta.h
│ │ │ │ │ │ ├── MKL_support.h
│ │ │ │ │ │ ├── NonMPL2.h
│ │ │ │ │ │ ├── ReenableStupidWarnings.h
│ │ │ │ │ │ ├── StaticAssert.h
│ │ │ │ │ │ └── XprHelper.h
│ │ │ │ │ ├── VectorBlock.h
│ │ │ │ │ ├── VectorwiseOp.h
│ │ │ │ │ └── Visitor.h
│ │ │ │ ├── Eigenvalues
│ │ │ │ │ ├── ComplexEigenSolver.h
│ │ │ │ │ ├── ComplexSchur.h
│ │ │ │ │ ├── ComplexSchur_LAPACKE.h
│ │ │ │ │ ├── EigenSolver.h
│ │ │ │ │ ├── GeneralizedEigenSolver.h
│ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h
│ │ │ │ │ ├── HessenbergDecomposition.h
│ │ │ │ │ ├── MatrixBaseEigenvalues.h
│ │ │ │ │ ├── RealQZ.h
│ │ │ │ │ ├── RealSchur.h
│ │ │ │ │ ├── RealSchur_LAPACKE.h
│ │ │ │ │ ├── SelfAdjointEigenSolver.h
│ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h
│ │ │ │ │ └── Tridiagonalization.h
│ │ │ │ ├── Geometry
│ │ │ │ │ ├── AlignedBox.h
│ │ │ │ │ ├── AngleAxis.h
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── Geometry_SSE.h
│ │ │ │ │ ├── EulerAngles.h
│ │ │ │ │ ├── Homogeneous.h
│ │ │ │ │ ├── Hyperplane.h
│ │ │ │ │ ├── OrthoMethods.h
│ │ │ │ │ ├── ParametrizedLine.h
│ │ │ │ │ ├── Quaternion.h
│ │ │ │ │ ├── Rotation2D.h
│ │ │ │ │ ├── RotationBase.h
│ │ │ │ │ ├── Scaling.h
│ │ │ │ │ ├── Transform.h
│ │ │ │ │ ├── Translation.h
│ │ │ │ │ └── Umeyama.h
│ │ │ │ ├── Householder
│ │ │ │ │ ├── BlockHouseholder.h
│ │ │ │ │ ├── Householder.h
│ │ │ │ │ └── HouseholderSequence.h
│ │ │ │ ├── IterativeLinearSolvers
│ │ │ │ │ ├── BasicPreconditioners.h
│ │ │ │ │ ├── BiCGSTAB.h
│ │ │ │ │ ├── ConjugateGradient.h
│ │ │ │ │ ├── IncompleteCholesky.h
│ │ │ │ │ ├── IncompleteLUT.h
│ │ │ │ │ ├── IterativeSolverBase.h
│ │ │ │ │ ├── LeastSquareConjugateGradient.h
│ │ │ │ │ └── SolveWithGuess.h
│ │ │ │ ├── Jacobi
│ │ │ │ │ └── Jacobi.h
│ │ │ │ ├── LU
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── Inverse_SSE.h
│ │ │ │ │ ├── Determinant.h
│ │ │ │ │ ├── FullPivLU.h
│ │ │ │ │ ├── InverseImpl.h
│ │ │ │ │ ├── PartialPivLU.h
│ │ │ │ │ └── PartialPivLU_LAPACKE.h
│ │ │ │ ├── MetisSupport
│ │ │ │ │ └── MetisSupport.h
│ │ │ │ ├── misc
│ │ │ │ │ ├── blas.h
│ │ │ │ │ ├── Image.h
│ │ │ │ │ ├── Kernel.h
│ │ │ │ │ ├── lapacke.h
│ │ │ │ │ ├── lapacke_mangling.h
│ │ │ │ │ ├── lapack.h
│ │ │ │ │ └── RealSvd2x2.h
│ │ │ │ ├── OrderingMethods
│ │ │ │ │ ├── Amd.h
│ │ │ │ │ ├── Eigen_Colamd.h
│ │ │ │ │ └── Ordering.h
│ │ │ │ ├── PardisoSupport
│ │ │ │ │ └── PardisoSupport.h
│ │ │ │ ├── PaStiXSupport
│ │ │ │ │ └── PaStiXSupport.h
│ │ │ │ ├── plugins
│ │ │ │ │ ├── ArrayCwiseBinaryOps.h
│ │ │ │ │ ├── ArrayCwiseUnaryOps.h
│ │ │ │ │ ├── BlockMethods.h
│ │ │ │ │ ├── CommonCwiseBinaryOps.h
│ │ │ │ │ ├── CommonCwiseUnaryOps.h
│ │ │ │ │ ├── MatrixCwiseBinaryOps.h
│ │ │ │ │ └── MatrixCwiseUnaryOps.h
│ │ │ │ ├── QR
│ │ │ │ │ ├── ColPivHouseholderQR.h
│ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h
│ │ │ │ │ ├── CompleteOrthogonalDecomposition.h
│ │ │ │ │ ├── FullPivHouseholderQR.h
│ │ │ │ │ ├── HouseholderQR.h
│ │ │ │ │ └── HouseholderQR_LAPACKE.h
│ │ │ │ ├── SparseCholesky
│ │ │ │ │ ├── SimplicialCholesky.h
│ │ │ │ │ └── SimplicialCholesky_impl.h
│ │ │ │ ├── SparseCore
│ │ │ │ │ ├── AmbiVector.h
│ │ │ │ │ ├── CompressedStorage.h
│ │ │ │ │ ├── ConservativeSparseSparseProduct.h
│ │ │ │ │ ├── MappedSparseMatrix.h
│ │ │ │ │ ├── SparseAssign.h
│ │ │ │ │ ├── SparseBlock.h
│ │ │ │ │ ├── SparseColEtree.h
│ │ │ │ │ ├── SparseCompressedBase.h
│ │ │ │ │ ├── SparseCwiseBinaryOp.h
│ │ │ │ │ ├── SparseCwiseUnaryOp.h
│ │ │ │ │ ├── SparseDenseProduct.h
│ │ │ │ │ ├── SparseDiagonalProduct.h
│ │ │ │ │ ├── SparseDot.h
│ │ │ │ │ ├── SparseFuzzy.h
│ │ │ │ │ ├── SparseMap.h
│ │ │ │ │ ├── SparseMatrixBase.h
│ │ │ │ │ ├── SparseMatrix.h
│ │ │ │ │ ├── SparsePermutation.h
│ │ │ │ │ ├── SparseProduct.h
│ │ │ │ │ ├── SparseRedux.h
│ │ │ │ │ ├── SparseRef.h
│ │ │ │ │ ├── SparseSelfAdjointView.h
│ │ │ │ │ ├── SparseSolverBase.h
│ │ │ │ │ ├── SparseSparseProductWithPruning.h
│ │ │ │ │ ├── SparseTranspose.h
│ │ │ │ │ ├── SparseTriangularView.h
│ │ │ │ │ ├── SparseUtil.h
│ │ │ │ │ ├── SparseVector.h
│ │ │ │ │ ├── SparseView.h
│ │ │ │ │ └── TriangularSolver.h
│ │ │ │ ├── SparseLU
│ │ │ │ │ ├── SparseLU_column_bmod.h
│ │ │ │ │ ├── SparseLU_column_dfs.h
│ │ │ │ │ ├── SparseLU_copy_to_ucol.h
│ │ │ │ │ ├── SparseLU_gemm_kernel.h
│ │ │ │ │ ├── SparseLU.h
│ │ │ │ │ ├── SparseLU_heap_relax_snode.h
│ │ │ │ │ ├── SparseLUImpl.h
│ │ │ │ │ ├── SparseLU_kernel_bmod.h
│ │ │ │ │ ├── SparseLU_Memory.h
│ │ │ │ │ ├── SparseLU_panel_bmod.h
│ │ │ │ │ ├── SparseLU_panel_dfs.h
│ │ │ │ │ ├── SparseLU_pivotL.h
│ │ │ │ │ ├── SparseLU_pruneL.h
│ │ │ │ │ ├── SparseLU_relax_snode.h
│ │ │ │ │ ├── SparseLU_Structs.h
│ │ │ │ │ ├── SparseLU_SupernodalMatrix.h
│ │ │ │ │ └── SparseLU_Utils.h
│ │ │ │ ├── SparseQR
│ │ │ │ │ └── SparseQR.h
│ │ │ │ ├── SPQRSupport
│ │ │ │ │ └── SuiteSparseQRSupport.h
│ │ │ │ ├── StlSupport
│ │ │ │ │ ├── details.h
│ │ │ │ │ ├── StdDeque.h
│ │ │ │ │ ├── StdList.h
│ │ │ │ │ └── StdVector.h
│ │ │ │ ├── SuperLUSupport
│ │ │ │ │ └── SuperLUSupport.h
│ │ │ │ ├── SVD
│ │ │ │ │ ├── BDCSVD.h
│ │ │ │ │ ├── JacobiSVD.h
│ │ │ │ │ ├── JacobiSVD_LAPACKE.h
│ │ │ │ │ ├── SVDBase.h
│ │ │ │ │ └── UpperBidiagonalization.h
│ │ │ │ └── UmfPackSupport
│ │ │ │ └── UmfPackSupport.h
│ │ │ ├── StdDeque
│ │ │ ├── StdList
│ │ │ ├── StdVector
│ │ │ ├── SuperLUSupport
│ │ │ ├── SVD
│ │ │ └── UmfPackSupport
│ │ ├── eigen3.pc.in
│ │ ├── failtest
│ │ │ ├── bdcsvd_int.cpp
│ │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp
│ │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp
│ │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp
│ │ │ ├── block_on_const_type_actually_const_0.cpp
│ │ │ ├── block_on_const_type_actually_const_1.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── colpivqr_int.cpp
│ │ │ ├── const_qualified_block_method_retval_0.cpp
│ │ │ ├── const_qualified_block_method_retval_1.cpp
│ │ │ ├── const_qualified_diagonal_method_retval.cpp
│ │ │ ├── const_qualified_transpose_method_retval.cpp
│ │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp
│ │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp
│ │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp
│ │ │ ├── diagonal_on_const_type_actually_const.cpp
│ │ │ ├── eigensolver_cplx.cpp
│ │ │ ├── eigensolver_int.cpp
│ │ │ ├── failtest_sanity_check.cpp
│ │ │ ├── fullpivlu_int.cpp
│ │ │ ├── fullpivqr_int.cpp
│ │ │ ├── jacobisvd_int.cpp
│ │ │ ├── ldlt_int.cpp
│ │ │ ├── llt_int.cpp
│ │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp
│ │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp
│ │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp
│ │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp
│ │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp
│ │ │ ├── map_on_const_type_actually_const_0.cpp
│ │ │ ├── map_on_const_type_actually_const_1.cpp
│ │ │ ├── partialpivlu_int.cpp
│ │ │ ├── qr_int.cpp
│ │ │ ├── ref_1.cpp
│ │ │ ├── ref_2.cpp
│ │ │ ├── ref_3.cpp
│ │ │ ├── ref_4.cpp
│ │ │ ├── ref_5.cpp
│ │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp
│ │ │ ├── selfadjointview_on_const_type_actually_const.cpp
│ │ │ ├── sparse_ref_1.cpp
│ │ │ ├── sparse_ref_2.cpp
│ │ │ ├── sparse_ref_3.cpp
│ │ │ ├── sparse_ref_4.cpp
│ │ │ ├── sparse_ref_5.cpp
│ │ │ ├── sparse_storage_mismatch.cpp
│ │ │ ├── swap_1.cpp
│ │ │ ├── swap_2.cpp
│ │ │ ├── ternary_1.cpp
│ │ │ ├── ternary_2.cpp
│ │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp
│ │ │ ├── transpose_on_const_type_actually_const.cpp
│ │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp
│ │ │ └── triangularview_on_const_type_actually_const.cpp
│ │ ├── INSTALL
│ │ ├── lapack
│ │ │ ├── cholesky.cpp
│ │ │ ├── clacgv.f
│ │ │ ├── cladiv.f
│ │ │ ├── clarfb.f
│ │ │ ├── clarf.f
│ │ │ ├── clarfg.f
│ │ │ ├── clarft.f
│ │ │ ├── CMakeLists.txt
│ │ │ ├── complex_double.cpp
│ │ │ ├── complex_single.cpp
│ │ │ ├── dladiv.f
│ │ │ ├── dlamch.f
│ │ │ ├── dlapy2.f
│ │ │ ├── dlapy3.f
│ │ │ ├── dlarfb.f
│ │ │ ├── dlarf.f
│ │ │ ├── dlarfg.f
│ │ │ ├── dlarft.f
│ │ │ ├── double.cpp
│ │ │ ├── dsecnd_NONE.f
│ │ │ ├── eigenvalues.cpp
│ │ │ ├── ilaclc.f
│ │ │ ├── ilaclr.f
│ │ │ ├── iladlc.f
│ │ │ ├── iladlr.f
│ │ │ ├── ilaslc.f
│ │ │ ├── ilaslr.f
│ │ │ ├── ilazlc.f
│ │ │ ├── ilazlr.f
│ │ │ ├── lapack_common.h
│ │ │ ├── lu.cpp
│ │ │ ├── second_NONE.f
│ │ │ ├── single.cpp
│ │ │ ├── sladiv.f
│ │ │ ├── slamch.f
│ │ │ ├── slapy2.f
│ │ │ ├── slapy3.f
│ │ │ ├── slarfb.f
│ │ │ ├── slarf.f
│ │ │ ├── slarfg.f
│ │ │ ├── slarft.f
│ │ │ ├── svd.cpp
│ │ │ ├── zlacgv.f
│ │ │ ├── zladiv.f
│ │ │ ├── zlarfb.f
│ │ │ ├── zlarf.f
│ │ │ ├── zlarfg.f
│ │ │ └── zlarft.f
│ │ ├── README.md
│ │ ├── scripts
│ │ │ ├── buildtests.in
│ │ │ ├── cdashtesting.cmake.in
│ │ │ ├── check.in
│ │ │ ├── CMakeLists.txt
│ │ │ ├── debug.in
│ │ │ ├── eigen_gen_credits.cpp
│ │ │ ├── eigen_gen_docs
│ │ │ ├── release.in
│ │ │ └── relicense.py
│ │ ├── signature_of_eigen3_matrix_library
│ │ ├── test
│ │ │ ├── adjoint.cpp
│ │ │ ├── array.cpp
│ │ │ ├── array_for_matrix.cpp
│ │ │ ├── array_of_string.cpp
│ │ │ ├── array_replicate.cpp
│ │ │ ├── array_reverse.cpp
│ │ │ ├── bandmatrix.cpp
│ │ │ ├── basicstuff.cpp
│ │ │ ├── bdcsvd.cpp
│ │ │ ├── bicgstab.cpp
│ │ │ ├── block.cpp
│ │ │ ├── boostmultiprec.cpp
│ │ │ ├── bug1213.cpp
│ │ │ ├── bug1213.h
│ │ │ ├── bug1213_main.cpp
│ │ │ ├── cholesky.cpp
│ │ │ ├── cholmod_support.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── commainitializer.cpp
│ │ │ ├── conjugate_gradient.cpp
│ │ │ ├── conservative_resize.cpp
│ │ │ ├── constructor.cpp
│ │ │ ├── corners.cpp
│ │ │ ├── ctorleak.cpp
│ │ │ ├── cuda_basic.cu
│ │ │ ├── cuda_common.h
│ │ │ ├── denseLM.cpp
│ │ │ ├── dense_storage.cpp
│ │ │ ├── determinant.cpp
│ │ │ ├── diagonal.cpp
│ │ │ ├── diagonalmatrices.cpp
│ │ │ ├── dontalign.cpp
│ │ │ ├── dynalloc.cpp
│ │ │ ├── eigen2support.cpp
│ │ │ ├── eigensolver_complex.cpp
│ │ │ ├── eigensolver_generalized_real.cpp
│ │ │ ├── eigensolver_generic.cpp
│ │ │ ├── eigensolver_selfadjoint.cpp
│ │ │ ├── evaluator_common.h
│ │ │ ├── evaluators.cpp
│ │ │ ├── exceptions.cpp
│ │ │ ├── fastmath.cpp
│ │ │ ├── first_aligned.cpp
│ │ │ ├── geo_alignedbox.cpp
│ │ │ ├── geo_eulerangles.cpp
│ │ │ ├── geo_homogeneous.cpp
│ │ │ ├── geo_hyperplane.cpp
│ │ │ ├── geo_orthomethods.cpp
│ │ │ ├── geo_parametrizedline.cpp
│ │ │ ├── geo_quaternion.cpp
│ │ │ ├── geo_transformations.cpp
│ │ │ ├── half_float.cpp
│ │ │ ├── hessenberg.cpp
│ │ │ ├── householder.cpp
│ │ │ ├── incomplete_cholesky.cpp
│ │ │ ├── inplace_decomposition.cpp
│ │ │ ├── integer_types.cpp
│ │ │ ├── inverse.cpp
│ │ │ ├── is_same_dense.cpp
│ │ │ ├── jacobi.cpp
│ │ │ ├── jacobisvd.cpp
│ │ │ ├── linearstructure.cpp
│ │ │ ├── lscg.cpp
│ │ │ ├── lu.cpp
│ │ │ ├── main.h
│ │ │ ├── mapped_matrix.cpp
│ │ │ ├── mapstaticmethods.cpp
│ │ │ ├── mapstride.cpp
│ │ │ ├── meta.cpp
│ │ │ ├── metis_support.cpp
│ │ │ ├── miscmatrices.cpp
│ │ │ ├── mixingtypes.cpp
│ │ │ ├── mpl2only.cpp
│ │ │ ├── nesting_ops.cpp
│ │ │ ├── nomalloc.cpp
│ │ │ ├── nullary.cpp
│ │ │ ├── numext.cpp
│ │ │ ├── packetmath.cpp
│ │ │ ├── pardiso_support.cpp
│ │ │ ├── pastix_support.cpp
│ │ │ ├── permutationmatrices.cpp
│ │ │ ├── prec_inverse_4x4.cpp
│ │ │ ├── product_extra.cpp
│ │ │ ├── product.h
│ │ │ ├── product_large.cpp
│ │ │ ├── product_mmtr.cpp
│ │ │ ├── product_notemporary.cpp
│ │ │ ├── product_selfadjoint.cpp
│ │ │ ├── product_small.cpp
│ │ │ ├── product_symm.cpp
│ │ │ ├── product_syrk.cpp
│ │ │ ├── product_trmm.cpp
│ │ │ ├── product_trmv.cpp
│ │ │ ├── product_trsolve.cpp
│ │ │ ├── qr_colpivoting.cpp
│ │ │ ├── qr.cpp
│ │ │ ├── qr_fullpivoting.cpp
│ │ │ ├── qtvector.cpp
│ │ │ ├── rand.cpp
│ │ │ ├── real_qz.cpp
│ │ │ ├── redux.cpp
│ │ │ ├── ref.cpp
│ │ │ ├── resize.cpp
│ │ │ ├── rvalue_types.cpp
│ │ │ ├── schur_complex.cpp
│ │ │ ├── schur_real.cpp
│ │ │ ├── selfadjoint.cpp
│ │ │ ├── simplicial_cholesky.cpp
│ │ │ ├── sizeof.cpp
│ │ │ ├── sizeoverflow.cpp
│ │ │ ├── smallvectors.cpp
│ │ │ ├── sparse_basic.cpp
│ │ │ ├── sparse_block.cpp
│ │ │ ├── sparse.h
│ │ │ ├── sparseLM.cpp
│ │ │ ├── sparselu.cpp
│ │ │ ├── sparse_permutations.cpp
│ │ │ ├── sparse_product.cpp
│ │ │ ├── sparseqr.cpp
│ │ │ ├── sparse_ref.cpp
│ │ │ ├── sparse_solver.h
│ │ │ ├── sparse_solvers.cpp
│ │ │ ├── sparse_vector.cpp
│ │ │ ├── special_numbers.cpp
│ │ │ ├── spqr_support.cpp
│ │ │ ├── stable_norm.cpp
│ │ │ ├── stddeque.cpp
│ │ │ ├── stddeque_overload.cpp
│ │ │ ├── stdlist.cpp
│ │ │ ├── stdlist_overload.cpp
│ │ │ ├── stdvector.cpp
│ │ │ ├── stdvector_overload.cpp
│ │ │ ├── superlu_support.cpp
│ │ │ ├── svd_common.h
│ │ │ ├── svd_fill.h
│ │ │ ├── swap.cpp
│ │ │ ├── triangular.cpp
│ │ │ ├── umeyama.cpp
│ │ │ ├── umfpack_support.cpp
│ │ │ ├── unalignedassert.cpp
│ │ │ ├── unalignedcount.cpp
│ │ │ ├── upperbidiagonalization.cpp
│ │ │ ├── vectorization_logic.cpp
│ │ │ ├── vectorwiseop.cpp
│ │ │ ├── visitor.cpp
│ │ │ └── zerosized.cpp
│ │ └── unsupported
│ │ ├── bench
│ │ │ └── bench_svd.cpp
│ │ ├── CMakeLists.txt
│ │ ├── doc
│ │ │ ├── CMakeLists.txt
│ │ │ ├── eigendoxy_layout.xml.in
│ │ │ ├── examples
│ │ │ │ ├── BVH_Example.cpp
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── EulerAngles.cpp
│ │ │ │ ├── FFT.cpp
│ │ │ │ ├── MatrixExponential.cpp
│ │ │ │ ├── MatrixFunction.cpp
│ │ │ │ ├── MatrixLogarithm.cpp
│ │ │ │ ├── MatrixPower.cpp
│ │ │ │ ├── MatrixPower_optimal.cpp
│ │ │ │ ├── MatrixSine.cpp
│ │ │ │ ├── MatrixSinh.cpp
│ │ │ │ ├── MatrixSquareRoot.cpp
│ │ │ │ ├── PolynomialSolver1.cpp
│ │ │ │ └── PolynomialUtils1.cpp
│ │ │ ├── Overview.dox
│ │ │ └── snippets
│ │ │ └── CMakeLists.txt
│ │ ├── Eigen
│ │ │ ├── AdolcForward
│ │ │ ├── AlignedVector3
│ │ │ ├── ArpackSupport
│ │ │ ├── AutoDiff
│ │ │ ├── BVH
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CXX11
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── src
│ │ │ │ │ ├── Tensor
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── TensorArgMax.h
│ │ │ │ │ │ ├── TensorAssign.h
│ │ │ │ │ │ ├── TensorBase.h
│ │ │ │ │ │ ├── TensorBroadcasting.h
│ │ │ │ │ │ ├── TensorChipping.h
│ │ │ │ │ │ ├── TensorConcatenation.h
│ │ │ │ │ │ ├── TensorContractionBlocking.h
│ │ │ │ │ │ ├── TensorContractionCuda.h
│ │ │ │ │ │ ├── TensorContraction.h
│ │ │ │ │ │ ├── TensorContractionMapper.h
│ │ │ │ │ │ ├── TensorContractionThreadPool.h
│ │ │ │ │ │ ├── TensorConversion.h
│ │ │ │ │ │ ├── TensorConvolution.h
│ │ │ │ │ │ ├── TensorCostModel.h
│ │ │ │ │ │ ├── TensorCustomOp.h
│ │ │ │ │ │ ├── TensorDeviceCuda.h
│ │ │ │ │ │ ├── TensorDeviceDefault.h
│ │ │ │ │ │ ├── TensorDevice.h
│ │ │ │ │ │ ├── TensorDeviceSycl.h
│ │ │ │ │ │ ├── TensorDeviceThreadPool.h
│ │ │ │ │ │ ├── TensorDimensionList.h
│ │ │ │ │ │ ├── TensorDimensions.h
│ │ │ │ │ │ ├── TensorEvalTo.h
│ │ │ │ │ │ ├── TensorEvaluator.h
│ │ │ │ │ │ ├── TensorExecutor.h
│ │ │ │ │ │ ├── TensorExpr.h
│ │ │ │ │ │ ├── TensorFFT.h
│ │ │ │ │ │ ├── TensorFixedSize.h
│ │ │ │ │ │ ├── TensorForcedEval.h
│ │ │ │ │ │ ├── TensorForwardDeclarations.h
│ │ │ │ │ │ ├── TensorFunctors.h
│ │ │ │ │ │ ├── TensorGenerator.h
│ │ │ │ │ │ ├── TensorGlobalFunctions.h
│ │ │ │ │ │ ├── Tensor.h
│ │ │ │ │ │ ├── TensorImagePatch.h
│ │ │ │ │ │ ├── TensorIndexList.h
│ │ │ │ │ │ ├── TensorInflation.h
│ │ │ │ │ │ ├── TensorInitializer.h
│ │ │ │ │ │ ├── TensorIntDiv.h
│ │ │ │ │ │ ├── TensorIO.h
│ │ │ │ │ │ ├── TensorLayoutSwap.h
│ │ │ │ │ │ ├── TensorMacros.h
│ │ │ │ │ │ ├── TensorMap.h
│ │ │ │ │ │ ├── TensorMeta.h
│ │ │ │ │ │ ├── TensorMorphing.h
│ │ │ │ │ │ ├── TensorPadding.h
│ │ │ │ │ │ ├── TensorPatch.h
│ │ │ │ │ │ ├── TensorRandom.h
│ │ │ │ │ │ ├── TensorReductionCuda.h
│ │ │ │ │ │ ├── TensorReduction.h
│ │ │ │ │ │ ├── TensorReductionSycl.h
│ │ │ │ │ │ ├── TensorRef.h
│ │ │ │ │ │ ├── TensorReverse.h
│ │ │ │ │ │ ├── TensorScan.h
│ │ │ │ │ │ ├── TensorShuffling.h
│ │ │ │ │ │ ├── TensorStorage.h
│ │ │ │ │ │ ├── TensorStriding.h
│ │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h
│ │ │ │ │ │ ├── TensorSyclExprConstructor.h
│ │ │ │ │ │ ├── TensorSyclExtractAccessor.h
│ │ │ │ │ │ ├── TensorSyclExtractFunctors.h
│ │ │ │ │ │ ├── TensorSycl.h
│ │ │ │ │ │ ├── TensorSyclLeafCount.h
│ │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h
│ │ │ │ │ │ ├── TensorSyclRun.h
│ │ │ │ │ │ ├── TensorSyclTuple.h
│ │ │ │ │ │ ├── TensorTraits.h
│ │ │ │ │ │ ├── TensorUInt128.h
│ │ │ │ │ │ └── TensorVolumePatch.h
│ │ │ │ │ ├── TensorSymmetry
│ │ │ │ │ │ ├── DynamicSymmetry.h
│ │ │ │ │ │ ├── StaticSymmetry.h
│ │ │ │ │ │ ├── Symmetry.h
│ │ │ │ │ │ └── util
│ │ │ │ │ │ └── TemplateGroupTheory.h
│ │ │ │ │ ├── ThreadPool
│ │ │ │ │ │ ├── EventCount.h
│ │ │ │ │ │ ├── NonBlockingThreadPool.h
│ │ │ │ │ │ ├── RunQueue.h
│ │ │ │ │ │ ├── SimpleThreadPool.h
│ │ │ │ │ │ ├── ThreadEnvironment.h
│ │ │ │ │ │ ├── ThreadLocal.h
│ │ │ │ │ │ ├── ThreadPoolInterface.h
│ │ │ │ │ │ └── ThreadYield.h
│ │ │ │ │ └── util
│ │ │ │ │ ├── CXX11Meta.h
│ │ │ │ │ ├── CXX11Workarounds.h
│ │ │ │ │ ├── EmulateArray.h
│ │ │ │ │ ├── EmulateCXX11Meta.h
│ │ │ │ │ └── MaxSizeVector.h
│ │ │ │ ├── Tensor
│ │ │ │ ├── TensorSymmetry
│ │ │ │ └── ThreadPool
│ │ │ ├── EulerAngles
│ │ │ ├── FFT
│ │ │ ├── IterativeSolvers
│ │ │ ├── KroneckerProduct
│ │ │ ├── LevenbergMarquardt
│ │ │ ├── MatrixFunctions
│ │ │ ├── MoreVectorization
│ │ │ ├── MPRealSupport
│ │ │ ├── NonLinearOptimization
│ │ │ ├── NumericalDiff
│ │ │ ├── OpenGLSupport
│ │ │ ├── Polynomials
│ │ │ ├── Skyline
│ │ │ ├── SparseExtra
│ │ │ ├── SpecialFunctions
│ │ │ ├── Splines
│ │ │ └── src
│ │ │ ├── AutoDiff
│ │ │ │ ├── AutoDiffJacobian.h
│ │ │ │ ├── AutoDiffScalar.h
│ │ │ │ └── AutoDiffVector.h
│ │ │ ├── BVH
│ │ │ │ ├── BVAlgorithms.h
│ │ │ │ └── KdBVH.h
│ │ │ ├── Eigenvalues
│ │ │ │ └── ArpackSelfAdjointEigenSolver.h
│ │ │ ├── EulerAngles
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── EulerAngles.h
│ │ │ │ └── EulerSystem.h
│ │ │ ├── FFT
│ │ │ │ ├── ei_fftw_impl.h
│ │ │ │ └── ei_kissfft_impl.h
│ │ │ ├── IterativeSolvers
│ │ │ │ ├── ConstrainedConjGrad.h
│ │ │ │ ├── DGMRES.h
│ │ │ │ ├── GMRES.h
│ │ │ │ ├── IncompleteLU.h
│ │ │ │ ├── IterationController.h
│ │ │ │ ├── MINRES.h
│ │ │ │ └── Scaling.h
│ │ │ ├── KroneckerProduct
│ │ │ │ └── KroneckerTensorProduct.h
│ │ │ ├── LevenbergMarquardt
│ │ │ │ ├── CopyrightMINPACK.txt
│ │ │ │ ├── LevenbergMarquardt.h
│ │ │ │ ├── LMcovar.h
│ │ │ │ ├── LMonestep.h
│ │ │ │ ├── LMpar.h
│ │ │ │ └── LMqrsolv.h
│ │ │ ├── MatrixFunctions
│ │ │ │ ├── MatrixExponential.h
│ │ │ │ ├── MatrixFunction.h
│ │ │ │ ├── MatrixLogarithm.h
│ │ │ │ ├── MatrixPower.h
│ │ │ │ ├── MatrixSquareRoot.h
│ │ │ │ └── StemFunction.h
│ │ │ ├── MoreVectorization
│ │ │ │ └── MathFunctions.h
│ │ │ ├── NonLinearOptimization
│ │ │ │ ├── chkder.h
│ │ │ │ ├── covar.h
│ │ │ │ ├── dogleg.h
│ │ │ │ ├── fdjac1.h
│ │ │ │ ├── HybridNonLinearSolver.h
│ │ │ │ ├── LevenbergMarquardt.h
│ │ │ │ ├── lmpar.h
│ │ │ │ ├── qrsolv.h
│ │ │ │ ├── r1mpyq.h
│ │ │ │ ├── r1updt.h
│ │ │ │ └── rwupdt.h
│ │ │ ├── NumericalDiff
│ │ │ │ └── NumericalDiff.h
│ │ │ ├── Polynomials
│ │ │ │ ├── Companion.h
│ │ │ │ ├── PolynomialSolver.h
│ │ │ │ └── PolynomialUtils.h
│ │ │ ├── Skyline
│ │ │ │ ├── SkylineInplaceLU.h
│ │ │ │ ├── SkylineMatrixBase.h
│ │ │ │ ├── SkylineMatrix.h
│ │ │ │ ├── SkylineProduct.h
│ │ │ │ ├── SkylineStorage.h
│ │ │ │ └── SkylineUtil.h
│ │ │ ├── SparseExtra
│ │ │ │ ├── BlockOfDynamicSparseMatrix.h
│ │ │ │ ├── BlockSparseMatrix.h
│ │ │ │ ├── DynamicSparseMatrix.h
│ │ │ │ ├── MarketIO.h
│ │ │ │ ├── MatrixMarketIterator.h
│ │ │ │ └── RandomSetter.h
│ │ │ ├── SpecialFunctions
│ │ │ │ ├── arch
│ │ │ │ │ └── CUDA
│ │ │ │ │ └── CudaSpecialFunctions.h
│ │ │ │ ├── SpecialFunctionsArrayAPI.h
│ │ │ │ ├── SpecialFunctionsFunctors.h
│ │ │ │ ├── SpecialFunctionsHalf.h
│ │ │ │ ├── SpecialFunctionsImpl.h
│ │ │ │ └── SpecialFunctionsPacketMath.h
│ │ │ └── Splines
│ │ │ ├── SplineFitting.h
│ │ │ ├── SplineFwd.h
│ │ │ └── Spline.h
│ │ ├── README.txt
│ │ └── test
│ │ ├── alignedvector3.cpp
│ │ ├── autodiff.cpp
│ │ ├── autodiff_scalar.cpp
│ │ ├── BVH.cpp
│ │ ├── CMakeLists.txt
│ │ ├── cxx11_eventcount.cpp
│ │ ├── cxx11_meta.cpp
│ │ ├── cxx11_non_blocking_thread_pool.cpp
│ │ ├── cxx11_runqueue.cpp
│ │ ├── cxx11_tensor_argmax.cpp
│ │ ├── cxx11_tensor_argmax_cuda.cu
│ │ ├── cxx11_tensor_assign.cpp
│ │ ├── cxx11_tensor_broadcasting.cpp
│ │ ├── cxx11_tensor_broadcast_sycl.cpp
│ │ ├── cxx11_tensor_cast_float16_cuda.cu
│ │ ├── cxx11_tensor_casts.cpp
│ │ ├── cxx11_tensor_chipping.cpp
│ │ ├── cxx11_tensor_comparisons.cpp
│ │ ├── cxx11_tensor_complex_cuda.cu
│ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu
│ │ ├── cxx11_tensor_concatenation.cpp
│ │ ├── cxx11_tensor_const.cpp
│ │ ├── cxx11_tensor_contract_cuda.cu
│ │ ├── cxx11_tensor_contraction.cpp
│ │ ├── cxx11_tensor_convolution.cpp
│ │ ├── cxx11_tensor_cuda.cu
│ │ ├── cxx11_tensor_custom_index.cpp
│ │ ├── cxx11_tensor_custom_op.cpp
│ │ ├── cxx11_tensor_device.cu
│ │ ├── cxx11_tensor_device_sycl.cpp
│ │ ├── cxx11_tensor_dimension.cpp
│ │ ├── cxx11_tensor_empty.cpp
│ │ ├── cxx11_tensor_expr.cpp
│ │ ├── cxx11_tensor_fft.cpp
│ │ ├── cxx11_tensor_fixed_size.cpp
│ │ ├── cxx11_tensor_forced_eval.cpp
│ │ ├── cxx11_tensor_forced_eval_sycl.cpp
│ │ ├── cxx11_tensor_generator.cpp
│ │ ├── cxx11_tensor_ifft.cpp
│ │ ├── cxx11_tensor_image_patch.cpp
│ │ ├── cxx11_tensor_index_list.cpp
│ │ ├── cxx11_tensor_inflation.cpp
│ │ ├── cxx11_tensor_intdiv.cpp
│ │ ├── cxx11_tensor_io.cpp
│ │ ├── cxx11_tensor_layout_swap.cpp
│ │ ├── cxx11_tensor_lvalue.cpp
│ │ ├── cxx11_tensor_map.cpp
│ │ ├── cxx11_tensor_math.cpp
│ │ ├── cxx11_tensor_mixed_indices.cpp
│ │ ├── cxx11_tensor_morphing.cpp
│ │ ├── cxx11_tensor_notification.cpp
│ │ ├── cxx11_tensor_of_complex.cpp
│ │ ├── cxx11_tensor_of_const_values.cpp
│ │ ├── cxx11_tensor_of_float16_cuda.cu
│ │ ├── cxx11_tensor_of_strings.cpp
│ │ ├── cxx11_tensor_padding.cpp
│ │ ├── cxx11_tensor_patch.cpp
│ │ ├── cxx11_tensor_random.cpp
│ │ ├── cxx11_tensor_random_cuda.cu
│ │ ├── cxx11_tensor_reduction.cpp
│ │ ├── cxx11_tensor_reduction_cuda.cu
│ │ ├── cxx11_tensor_reduction_sycl.cpp
│ │ ├── cxx11_tensor_ref.cpp
│ │ ├── cxx11_tensor_reverse.cpp
│ │ ├── cxx11_tensor_roundings.cpp
│ │ ├── cxx11_tensor_scan.cpp
│ │ ├── cxx11_tensor_scan_cuda.cu
│ │ ├── cxx11_tensor_shuffling.cpp
│ │ ├── cxx11_tensor_simple.cpp
│ │ ├── cxx11_tensor_striding.cpp
│ │ ├── cxx11_tensor_sugar.cpp
│ │ ├── cxx11_tensor_sycl.cpp
│ │ ├── cxx11_tensor_symmetry.cpp
│ │ ├── cxx11_tensor_thread_pool.cpp
│ │ ├── cxx11_tensor_uint128.cpp
│ │ ├── cxx11_tensor_volume_patch.cpp
│ │ ├── dgmres.cpp
│ │ ├── EulerAngles.cpp
│ │ ├── FFT.cpp
│ │ ├── FFTW.cpp
│ │ ├── forward_adolc.cpp
│ │ ├── gmres.cpp
│ │ ├── kronecker_product.cpp
│ │ ├── levenberg_marquardt.cpp
│ │ ├── matrix_exponential.cpp
│ │ ├── matrix_function.cpp
│ │ ├── matrix_functions.h
│ │ ├── matrix_power.cpp
│ │ ├── matrix_square_root.cpp
│ │ ├── minres.cpp
│ │ ├── mpreal
│ │ │ └── mpreal.h
│ │ ├── mpreal_support.cpp
│ │ ├── NonLinearOptimization.cpp
│ │ ├── NumericalDiff.cpp
│ │ ├── openglsupport.cpp
│ │ ├── polynomialsolver.cpp
│ │ ├── polynomialutils.cpp
│ │ ├── sparse_extra.cpp
│ │ ├── special_functions.cpp
│ │ └── splines.cpp
│ ├── Eigen3.3.7_SourceCode.7z
│ ├── eigen-3.3.8.zip
│ ├── eigen-master.zip
│ ├── eigen库.zip
│ ├── gflags-build
│ │ ├── ALL_BUILD.vcxproj
│ │ ├── ALL_BUILD.vcxproj.filters
│ │ ├── ALL_BUILD.vcxproj.user
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── gflags_debug.dll
│ │ │ │ ├── gflags_debug.ilk
│ │ │ │ ├── gflags_debug.pdb
│ │ │ │ ├── gflags_nothreads_debug.dll
│ │ │ │ ├── gflags_nothreads_debug.ilk
│ │ │ │ └── gflags_nothreads_debug.pdb
│ │ │ └── Release
│ │ │ ├── gflags.dll
│ │ │ └── gflags_nothreads.dll
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 3.19.0-rc1
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ │ ├── CompilerIdCXX.exe
│ │ │ │ │ ├── CompilerIdCXX.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCXXCompilerId.obj
│ │ │ │ │ │ └── CompilerIdCXX.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ ├── VCTargetsPath.vcxproj
│ │ │ │ └── x64
│ │ │ │ └── Debug
│ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ ├── 65e38d772a19779c0424b17cbbf7ff64
│ │ │ │ ├── generate.stamp.rule
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── uninstall.rule
│ │ │ ├── CheckTypeSize
│ │ │ │ ├── __int32.bin
│ │ │ │ └── __int32.cpp
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeError.log
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ ├── Export
│ │ │ │ └── lib
│ │ │ │ └── cmake
│ │ │ │ └── gflags
│ │ │ │ ├── gflags-nonamespace-targets.cmake
│ │ │ │ ├── gflags-nonamespace-targets-debug.cmake
│ │ │ │ ├── gflags-nonamespace-targets-minsizerel.cmake
│ │ │ │ ├── gflags-nonamespace-targets-release.cmake
│ │ │ │ ├── gflags-nonamespace-targets-relwithdebinfo.cmake
│ │ │ │ ├── gflags-targets.cmake
│ │ │ │ ├── gflags-targets-debug.cmake
│ │ │ │ ├── gflags-targets-minsizerel.cmake
│ │ │ │ ├── gflags-targets-release.cmake
│ │ │ │ └── gflags-targets-relwithdebinfo.cmake
│ │ │ ├── generate.stamp
│ │ │ ├── generate.stamp.depend
│ │ │ ├── generate.stamp.list
│ │ │ └── TargetDirectories.txt
│ │ ├── cmake_install.cmake
│ │ ├── cmake_uninstall.cmake
│ │ ├── gflags-config.cmake
│ │ ├── gflags-config-install.cmake
│ │ ├── gflags-config-version.cmake
│ │ ├── gflags-nonamespace-targets.cmake
│ │ ├── gflags_nothreads_shared.dir
│ │ │ ├── Debug
│ │ │ │ ├── gflags_completions.obj
│ │ │ │ ├── gflags_n.4CDDC3BC.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── gflags_nothreads_shared.lastbuildstate
│ │ │ │ │ ├── gflags_nothreads_shared.write.1u.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── gflags_nothreads_shared.log
│ │ │ │ ├── gflags.obj
│ │ │ │ ├── gflags_reporting.obj
│ │ │ │ ├── vc141.pdb
│ │ │ │ └── windows_port.obj
│ │ │ └── Release
│ │ │ ├── gflags_completions.obj
│ │ │ ├── gflags_n.4CDDC3BC.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── gflags_nothreads_shared.lastbuildstate
│ │ │ │ ├── gflags_nothreads_shared.write.1u.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── gflags_nothreads_shared.log
│ │ │ ├── gflags.obj
│ │ │ ├── gflags_reporting.obj
│ │ │ └── windows_port.obj
│ │ ├── gflags_nothreads_shared.vcxproj
│ │ ├── gflags_nothreads_shared.vcxproj.filters
│ │ ├── gflags_nothreads.vcxproj
│ │ ├── gflags_nothreads.vcxproj.filters
│ │ ├── gflags_shared.dir
│ │ │ ├── Debug
│ │ │ │ ├── gflags_completions.obj
│ │ │ │ ├── gflags.obj
│ │ │ │ ├── gflags_reporting.obj
│ │ │ │ ├── gflags_shared.log
│ │ │ │ ├── gflags_shared.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── gflags_shared.lastbuildstate
│ │ │ │ │ ├── gflags_shared.write.1u.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── vc141.pdb
│ │ │ │ └── windows_port.obj
│ │ │ └── Release
│ │ │ ├── gflags_completions.obj
│ │ │ ├── gflags.obj
│ │ │ ├── gflags_reporting.obj
│ │ │ ├── gflags_shared.log
│ │ │ ├── gflags_shared.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── gflags_shared.lastbuildstate
│ │ │ │ ├── gflags_shared.write.1u.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ └── windows_port.obj
│ │ ├── gflags_shared.vcxproj
│ │ ├── gflags_shared.vcxproj.filters
│ │ ├── gflags.sln
│ │ ├── gflags-targets.cmake
│ │ ├── gflags.vcxproj
│ │ ├── gflags.vcxproj.filters
│ │ ├── include
│ │ │ └── gflags
│ │ │ ├── defines.h
│ │ │ ├── gflags_completions.h
│ │ │ ├── gflags_declare.h
│ │ │ ├── gflags_gflags.h
│ │ │ └── gflags.h
│ │ ├── install_manifest.txt
│ │ ├── INSTALL.vcxproj
│ │ ├── INSTALL.vcxproj.filters
│ │ ├── lib
│ │ │ ├── Debug
│ │ │ │ ├── gflags_debug.exp
│ │ │ │ ├── gflags_debug.lib
│ │ │ │ ├── gflags_nothreads_debug.exp
│ │ │ │ └── gflags_nothreads_debug.lib
│ │ │ └── Release
│ │ │ ├── gflags.exp
│ │ │ ├── gflags.lib
│ │ │ ├── gflags_nothreads.exp
│ │ │ └── gflags_nothreads.lib
│ │ ├── uninstall.vcxproj
│ │ ├── uninstall.vcxproj.filters
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ ├── ALL_BUILD
│ │ │ │ │ ├── ALL_BUILD.log
│ │ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ └── custombuild.write.1.tlog
│ │ │ │ ├── INSTALL
│ │ │ │ │ ├── INSTALL.log
│ │ │ │ │ └── INSTALL.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ └── INSTALL.lastbuildstate
│ │ │ │ └── ZERO_CHECK
│ │ │ │ ├── ZERO_CHECK.log
│ │ │ │ └── ZERO_CHECK.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── ZERO_CHECK.lastbuildstate
│ │ │ └── Release
│ │ │ ├── ALL_BUILD
│ │ │ │ ├── ALL_BUILD.log
│ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ └── custombuild.write.1.tlog
│ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL.log
│ │ │ │ └── INSTALL.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── INSTALL.lastbuildstate
│ │ │ └── ZERO_CHECK
│ │ │ ├── ZERO_CHECK.log
│ │ │ └── ZERO_CHECK.tlog
│ │ │ ├── custombuild.command.1.tlog
│ │ │ ├── custombuild.read.1.tlog
│ │ │ ├── custombuild.write.1.tlog
│ │ │ └── ZERO_CHECK.lastbuildstate
│ │ ├── ZERO_CHECK.vcxproj
│ │ └── ZERO_CHECK.vcxproj.filters
│ ├── gflags-master
│ │ └── gflags-master
│ │ ├── appveyor.yml
│ │ ├── AUTHORS.txt
│ │ ├── bazel
│ │ │ ├── expanded_template
│ │ │ │ ├── BUILD
│ │ │ │ ├── expanded_template.bzl
│ │ │ │ └── expand_template.cc
│ │ │ └── gflags.bzl
│ │ ├── BUILD
│ │ ├── ChangeLog.txt
│ │ ├── cmake
│ │ │ ├── cmake_uninstall.cmake.in
│ │ │ ├── config.cmake.in
│ │ │ ├── execute_test.cmake
│ │ │ ├── package.cmake.in
│ │ │ ├── package.pc.in
│ │ │ ├── README_runtime.txt
│ │ │ ├── utils.cmake
│ │ │ └── version.cmake.in
│ │ ├── CMakeLists.txt
│ │ ├── COPYING.txt
│ │ ├── doc
│ │ │ ├── designstyle.css
│ │ │ ├── index.html
│ │ │ └── README.md
│ │ ├── INSTALL.md
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── config.h
│ │ │ ├── defines.h.in
│ │ │ ├── gflags.cc
│ │ │ ├── gflags_completions.cc
│ │ │ ├── gflags_completions.h.in
│ │ │ ├── gflags_completions.sh
│ │ │ ├── gflags_declare.h.in
│ │ │ ├── gflags.h.in
│ │ │ ├── gflags_ns.h.in
│ │ │ ├── gflags_reporting.cc
│ │ │ ├── mutex.h
│ │ │ ├── util.h
│ │ │ ├── windows_port.cc
│ │ │ └── windows_port.h
│ │ ├── test
│ │ │ ├── CMakeLists.txt
│ │ │ ├── config
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ └── main.cc
│ │ │ ├── flagfile.1
│ │ │ ├── flagfile.2
│ │ │ ├── flagfile.3
│ │ │ ├── gflags_build.py.in
│ │ │ ├── gflags_declare_flags.cc
│ │ │ ├── gflags_declare_test.cc
│ │ │ ├── gflags_strip_flags_test.cc
│ │ │ ├── gflags_strip_flags_test.cmake
│ │ │ ├── gflags_unittest.cc
│ │ │ ├── gflags_unittest_flagfile
│ │ │ └── nc
│ │ │ ├── CMakeLists.txt
│ │ │ └── gflags_nc.cc
│ │ └── WORKSPACE
│ ├── gflags-master.zip
│ ├── glog-build
│ │ ├── ALL_BUILD.vcxproj
│ │ ├── ALL_BUILD.vcxproj.filters
│ │ ├── ALL_BUILD.vcxproj.user
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 0dd86e72ff7dc7c8c895b69471dea04e
│ │ │ │ ├── generate.stamp.rule
│ │ │ │ ├── INSTALL_force.rule
│ │ │ │ └── PACKAGE_force.rule
│ │ │ ├── 3.19.0-rc1
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ ├── CMakeCCompilerId.c
│ │ │ │ │ ├── CompilerIdC.exe
│ │ │ │ │ ├── CompilerIdC.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCCompilerId.obj
│ │ │ │ │ │ └── CompilerIdC.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdC.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ │ ├── CompilerIdCXX.exe
│ │ │ │ │ ├── CompilerIdCXX.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCXXCompilerId.obj
│ │ │ │ │ │ └── CompilerIdCXX.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ ├── VCTargetsPath.vcxproj
│ │ │ │ └── x64
│ │ │ │ └── Debug
│ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ ├── CheckTypeSize
│ │ │ │ ├── HAVE___UINT16.bin
│ │ │ │ ├── HAVE___UINT16.c
│ │ │ │ ├── HAVE_UINT16_T.bin
│ │ │ │ ├── HAVE_U_INT16_T.c
│ │ │ │ └── HAVE_UINT16_T.c
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeError.log
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ │ └── glog-modules.cmake
│ │ │ ├── Export
│ │ │ │ └── lib
│ │ │ │ └── cmake
│ │ │ │ └── glog
│ │ │ │ ├── glog-targets.cmake
│ │ │ │ ├── glog-targets-debug.cmake
│ │ │ │ ├── glog-targets-minsizerel.cmake
│ │ │ │ ├── glog-targets-release.cmake
│ │ │ │ └── glog-targets-relwithdebinfo.cmake
│ │ │ ├── generate.stamp
│ │ │ ├── generate.stamp.depend
│ │ │ ├── generate.stamp.list
│ │ │ └── TargetDirectories.txt
│ │ ├── cmake_install.cmake
│ │ ├── config.h
│ │ ├── CPackConfig.cmake
│ │ ├── CPackSourceConfig.cmake
│ │ ├── DartConfiguration.tcl
│ │ ├── Debug
│ │ │ ├── glogd.dll
│ │ │ ├── glogd.exp
│ │ │ ├── glogd.ilk
│ │ │ ├── glogd.lib
│ │ │ └── glogd.pdb
│ │ ├── glog
│ │ │ ├── logging.h
│ │ │ ├── raw_logging.h
│ │ │ ├── stl_logging.h
│ │ │ └── vlog_is_on.h
│ │ ├── glog-config.cmake
│ │ ├── glog-config-version.cmake
│ │ ├── glog.dir
│ │ │ ├── Debug
│ │ │ │ ├── demangle.obj
│ │ │ │ ├── glog.log
│ │ │ │ ├── glog.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── glog.lastbuildstate
│ │ │ │ │ ├── glog.write.1u.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ └── link.write.1.tlog
│ │ │ │ ├── logging.obj
│ │ │ │ ├── port.obj
│ │ │ │ ├── raw_logging.obj
│ │ │ │ ├── signalhandler.obj
│ │ │ │ ├── symbolize.obj
│ │ │ │ ├── utilities.obj
│ │ │ │ ├── vc141.pdb
│ │ │ │ └── vlog_is_on.obj
│ │ │ └── Release
│ │ │ ├── demangle.obj
│ │ │ ├── glog.log
│ │ │ ├── glog.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ ├── glog.lastbuildstate
│ │ │ │ ├── glog.write.1u.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ └── link.write.1.tlog
│ │ │ ├── logging.obj
│ │ │ ├── port.obj
│ │ │ ├── raw_logging.obj
│ │ │ ├── signalhandler.obj
│ │ │ ├── symbolize.obj
│ │ │ ├── utilities.obj
│ │ │ └── vlog_is_on.obj
│ │ ├── glog-modules.cmake
│ │ ├── glog.sln
│ │ ├── glog-targets.cmake
│ │ ├── glog.vcxproj
│ │ ├── glog.vcxproj.filters
│ │ ├── install_manifest.txt
│ │ ├── INSTALL.vcxproj
│ │ ├── INSTALL.vcxproj.filters
│ │ ├── libglog.pc
│ │ ├── PACKAGE.vcxproj
│ │ ├── PACKAGE.vcxproj.filters
│ │ ├── Release
│ │ │ ├── glog.dll
│ │ │ ├── glog.exp
│ │ │ └── glog.lib
│ │ ├── Testing
│ │ │ └── Temporary
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ ├── ALL_BUILD
│ │ │ │ │ ├── ALL_BUILD.log
│ │ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ └── custombuild.write.1.tlog
│ │ │ │ ├── INSTALL
│ │ │ │ │ ├── INSTALL.log
│ │ │ │ │ └── INSTALL.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ └── INSTALL.lastbuildstate
│ │ │ │ └── ZERO_CHECK
│ │ │ │ ├── ZERO_CHECK.log
│ │ │ │ └── ZERO_CHECK.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── ZERO_CHECK.lastbuildstate
│ │ │ └── Release
│ │ │ ├── ALL_BUILD
│ │ │ │ ├── ALL_BUILD.log
│ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ └── custombuild.write.1.tlog
│ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL.log
│ │ │ │ └── INSTALL.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── INSTALL.lastbuildstate
│ │ │ └── ZERO_CHECK
│ │ │ ├── ZERO_CHECK.log
│ │ │ └── ZERO_CHECK.tlog
│ │ │ ├── custombuild.command.1.tlog
│ │ │ ├── custombuild.read.1.tlog
│ │ │ ├── custombuild.write.1.tlog
│ │ │ └── ZERO_CHECK.lastbuildstate
│ │ ├── ZERO_CHECK.vcxproj
│ │ └── ZERO_CHECK.vcxproj.filters
│ ├── glog-master
│ │ └── glog-master
│ │ ├── appveyor.yml
│ │ ├── AUTHORS
│ │ ├── bazel
│ │ │ ├── example
│ │ │ │ ├── BUILD
│ │ │ │ └── main.cc
│ │ │ └── glog.bzl
│ │ ├── BUILD
│ │ ├── ChangeLog
│ │ ├── cmake
│ │ │ ├── DetermineGflagsNamespace.cmake
│ │ │ ├── FindUnwind.cmake
│ │ │ ├── GetCacheVariables.cmake
│ │ │ ├── TestInitPackageConfig.cmake
│ │ │ └── TestPackageConfig.cmake
│ │ ├── CMakeLists.txt
│ │ ├── CONTRIBUTORS
│ │ ├── COPYING
│ │ ├── Dockerfile.ubuntu.template
│ │ ├── glog-config.cmake.in
│ │ ├── glog-modules.cmake.in
│ │ ├── libglog.pc.in
│ │ ├── README.rst
│ │ ├── README.windows
│ │ ├── src
│ │ │ ├── base
│ │ │ │ ├── commandlineflags.h
│ │ │ │ ├── googleinit.h
│ │ │ │ └── mutex.h
│ │ │ ├── config_for_unittests.h
│ │ │ ├── config.h.cmake.in
│ │ │ ├── demangle.cc
│ │ │ ├── demangle.h
│ │ │ ├── demangle_unittest.cc
│ │ │ ├── demangle_unittest.sh
│ │ │ ├── demangle_unittest.txt
│ │ │ ├── glog
│ │ │ │ ├── logging.h.in
│ │ │ │ ├── log_severity.h
│ │ │ │ ├── raw_logging.h.in
│ │ │ │ ├── stl_logging.h.in
│ │ │ │ └── vlog_is_on.h.in
│ │ │ ├── googletest.h
│ │ │ ├── logging.cc
│ │ │ ├── logging_striplog_test.sh
│ │ │ ├── logging_striptest10.cc
│ │ │ ├── logging_striptest2.cc
│ │ │ ├── logging_striptest_main.cc
│ │ │ ├── logging_unittest.cc
│ │ │ ├── logging_unittest.err
│ │ │ ├── mock-log.h
│ │ │ ├── mock-log_test.cc
│ │ │ ├── package_config_unittest
│ │ │ │ └── working_config
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ └── glog_package_config.cc
│ │ │ ├── raw_logging.cc
│ │ │ ├── signalhandler.cc
│ │ │ ├── signalhandler_unittest.cc
│ │ │ ├── signalhandler_unittest.sh
│ │ │ ├── stacktrace_generic-inl.h
│ │ │ ├── stacktrace.h
│ │ │ ├── stacktrace_libunwind-inl.h
│ │ │ ├── stacktrace_powerpc-inl.h
│ │ │ ├── stacktrace_unittest.cc
│ │ │ ├── stacktrace_windows-inl.h
│ │ │ ├── stacktrace_x86_64-inl.h
│ │ │ ├── stacktrace_x86-inl.h
│ │ │ ├── stl_logging_unittest.cc
│ │ │ ├── symbolize.cc
│ │ │ ├── symbolize.h
│ │ │ ├── symbolize_unittest.cc
│ │ │ ├── utilities.cc
│ │ │ ├── utilities.h
│ │ │ ├── utilities_unittest.cc
│ │ │ ├── vlog_is_on.cc
│ │ │ └── windows
│ │ │ ├── config.h
│ │ │ ├── dirent.h
│ │ │ ├── glog
│ │ │ │ ├── logging.h
│ │ │ │ ├── log_severity.h
│ │ │ │ ├── raw_logging.h
│ │ │ │ ├── stl_logging.h
│ │ │ │ └── vlog_is_on.h
│ │ │ ├── port.cc
│ │ │ ├── port.h
│ │ │ └── preprocess.sh
│ │ ├── toolchains
│ │ │ ├── clang-cxx17.cmake
│ │ │ ├── gcc-cxx11.cmake
│ │ │ ├── gcc-cxx17.cmake
│ │ │ ├── gcc-cxx98.cmake
│ │ │ ├── gcc-gnuxx11.cmake
│ │ │ ├── linux-mingw-w64-cxx11.cmake
│ │ │ ├── linux-mingw-w64-cxx17.cmake
│ │ │ ├── linux-mingw-w64-gnuxx11.cmake
│ │ │ ├── mingw-cxx11.cmake
│ │ │ ├── mingw-cxx17.cmake
│ │ │ ├── mingw-gnuxx11.cmake
│ │ │ ├── vs-14-2015-sdk-8-1.cmake
│ │ │ ├── vs-14-2015-win64.cmake
│ │ │ ├── vs-15-2017-win64.cmake
│ │ │ └── vs-15-2017-win64-cxx17.cmake
│ │ └── WORKSPACE
│ ├── glog-master.zip
│ ├── suitesparse-build
│ │ ├── ALL_BUILD.vcxproj
│ │ ├── ALL_BUILD.vcxproj.filters
│ │ ├── ALL_BUILD.vcxproj.user
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── cmpfillin.exe
│ │ │ │ ├── cmpfillin.ilk
│ │ │ │ ├── cmpfillin.pdb
│ │ │ │ ├── gpmetis.exe
│ │ │ │ ├── gpmetis.ilk
│ │ │ │ ├── gpmetis.pdb
│ │ │ │ ├── graphchk.exe
│ │ │ │ ├── graphchk.ilk
│ │ │ │ ├── graphchk.pdb
│ │ │ │ ├── m2gmetis.exe
│ │ │ │ ├── m2gmetis.ilk
│ │ │ │ ├── m2gmetis.pdb
│ │ │ │ ├── mpmetis.exe
│ │ │ │ ├── mpmetis.ilk
│ │ │ │ ├── mpmetis.pdb
│ │ │ │ ├── ndmetis.exe
│ │ │ │ ├── ndmetis.ilk
│ │ │ │ └── ndmetis.pdb
│ │ │ └── Release
│ │ │ ├── cmpfillin.exe
│ │ │ ├── gpmetis.exe
│ │ │ ├── graphchk.exe
│ │ │ ├── m2gmetis.exe
│ │ │ ├── mpmetis.exe
│ │ │ └── ndmetis.exe
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 0487fb31bb428bcc2a43abcd99727290
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 0ed567fe5e31a702685c72ef7e8bba31
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 16ec7067913f3940c1f7273256d56b95
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 18d2ed5cc9a2a31b2e227bbd12e892a3
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 1f5770ae524b36d6d326501659beb6bf
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 3.19.0-rc1
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ ├── CMakeCCompilerId.c
│ │ │ │ │ ├── CompilerIdC.exe
│ │ │ │ │ ├── CompilerIdC.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCCompilerId.obj
│ │ │ │ │ │ └── CompilerIdC.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdC.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ │ ├── CompilerIdCXX.exe
│ │ │ │ │ ├── CompilerIdCXX.vcxproj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── CMakeCXXCompilerId.obj
│ │ │ │ │ │ └── CompilerIdCXX.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── CompilerIdCXX.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── tmp
│ │ │ │ ├── VCTargetsPath.txt
│ │ │ │ ├── VCTargetsPath.vcxproj
│ │ │ │ └── x64
│ │ │ │ └── Debug
│ │ │ │ └── VCTargetsPath.tlog
│ │ │ │ └── VCTargetsPath.lastbuildstate
│ │ │ ├── 32f6318b235b5bdb0c5633d42a968bd9
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 39ebc7e5b5680c835d715adc1ff071c7
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 3ee4764d064334a4773e1b0500033c8e
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 596403077b0f0b1a14054386ce1e83f6
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 754f65f1652f5a04cd469617354b0573
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── 7ca5abef2feb6e78d3bdeac205825ee0
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── a2bed5c81529dc68241e6336185d8b1d
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── b0e244ee67b7d97f157041bdee1fcdc0
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── bb5d4d0174c946066d452f7c18d5bd9a
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── c34d8d38f842a2e3f6f8ff2e0e66421b
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── cf8f45aa870c786fb5e1940622ef6773
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeError.log
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ ├── Export
│ │ │ │ └── lib
│ │ │ │ └── cmake
│ │ │ │ └── suitesparse-5.4.0
│ │ │ │ ├── SuiteSparse-targets.cmake
│ │ │ │ ├── SuiteSparse-targets-debug.cmake
│ │ │ │ ├── SuiteSparse-targets-minsizerel.cmake
│ │ │ │ ├── SuiteSparse-targets-release.cmake
│ │ │ │ └── SuiteSparse-targets-relwithdebinfo.cmake
│ │ │ ├── f0a15dd3077928de5b49c86591b605cf
│ │ │ │ ├── generate.stamp.rule
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── f71071d893af5da175d97b44862e0e39
│ │ │ │ └── INSTALL_force.rule
│ │ │ ├── generate.stamp
│ │ │ ├── generate.stamp.depend
│ │ │ ├── generate.stamp.list
│ │ │ └── TargetDirectories.txt
│ │ ├── cmake_install.cmake
│ │ ├── install
│ │ │ ├── bin
│ │ │ │ ├── libamdd.dll
│ │ │ │ ├── libamd.dll
│ │ │ │ ├── libbtfd.dll
│ │ │ │ ├── libbtf.dll
│ │ │ │ ├── libcamdd.dll
│ │ │ │ ├── libcamd.dll
│ │ │ │ ├── libccolamdd.dll
│ │ │ │ ├── libccolamd.dll
│ │ │ │ ├── libcholmodd.dll
│ │ │ │ ├── libcholmod.dll
│ │ │ │ ├── libcolamdd.dll
│ │ │ │ ├── libcolamd.dll
│ │ │ │ ├── libcxsparsed.dll
│ │ │ │ ├── libcxsparse.dll
│ │ │ │ ├── libklud.dll
│ │ │ │ ├── libklu.dll
│ │ │ │ ├── libldld.dll
│ │ │ │ ├── libldl.dll
│ │ │ │ ├── libspqrd.dll
│ │ │ │ ├── libspqr.dll
│ │ │ │ ├── libumfpackd.dll
│ │ │ │ └── libumfpack.dll
│ │ │ ├── include
│ │ │ │ ├── metis.h
│ │ │ │ └── suitesparse
│ │ │ │ ├── amd.h
│ │ │ │ ├── amd_internal.h
│ │ │ │ ├── btf.h
│ │ │ │ ├── btf_internal.h
│ │ │ │ ├── camd.h
│ │ │ │ ├── camd_internal.h
│ │ │ │ ├── ccolamd.h
│ │ │ │ ├── cholmod_blas.h
│ │ │ │ ├── cholmod_camd.h
│ │ │ │ ├── cholmod_check.h
│ │ │ │ ├── cholmod_cholesky.h
│ │ │ │ ├── cholmod_complexity.h
│ │ │ │ ├── cholmod_config.h
│ │ │ │ ├── cholmod_core.h
│ │ │ │ ├── cholmod_function.h
│ │ │ │ ├── cholmod_gpu.h
│ │ │ │ ├── cholmod_gpu_kernels.h
│ │ │ │ ├── cholmod.h
│ │ │ │ ├── cholmod_internal.h
│ │ │ │ ├── cholmod_io64.h
│ │ │ │ ├── cholmod_matrixops.h
│ │ │ │ ├── cholmod_modify.h
│ │ │ │ ├── cholmod_partition.h
│ │ │ │ ├── cholmod_supernodal.h
│ │ │ │ ├── cholmod_template.h
│ │ │ │ ├── colamd.h
│ │ │ │ ├── cs.h
│ │ │ │ ├── klu.h
│ │ │ │ ├── klu_internal.h
│ │ │ │ ├── klu_version.h
│ │ │ │ ├── ldl.h
│ │ │ │ ├── spqrgpu.hpp
│ │ │ │ ├── spqr.hpp
│ │ │ │ ├── SuiteSparse_config.h
│ │ │ │ ├── SuiteSparseQR_C.h
│ │ │ │ ├── SuiteSparseQR_definitions.h
│ │ │ │ ├── SuiteSparseQR.hpp
│ │ │ │ ├── umfpack_col_to_triplet.h
│ │ │ │ ├── umfpack_defaults.h
│ │ │ │ ├── umfpack_free_numeric.h
│ │ │ │ ├── umfpack_free_symbolic.h
│ │ │ │ ├── umfpack_get_determinant.h
│ │ │ │ ├── umfpack_get_lunz.h
│ │ │ │ ├── umfpack_get_numeric.h
│ │ │ │ ├── umfpack_get_symbolic.h
│ │ │ │ ├── umfpack_global.h
│ │ │ │ ├── umfpack.h
│ │ │ │ ├── umfpack_load_numeric.h
│ │ │ │ ├── umfpack_load_symbolic.h
│ │ │ │ ├── umfpack_numeric.h
│ │ │ │ ├── umfpack_qsymbolic.h
│ │ │ │ ├── umfpack_report_control.h
│ │ │ │ ├── umfpack_report_info.h
│ │ │ │ ├── umfpack_report_matrix.h
│ │ │ │ ├── umfpack_report_numeric.h
│ │ │ │ ├── umfpack_report_perm.h
│ │ │ │ ├── umfpack_report_status.h
│ │ │ │ ├── umfpack_report_symbolic.h
│ │ │ │ ├── umfpack_report_triplet.h
│ │ │ │ ├── umfpack_report_vector.h
│ │ │ │ ├── umfpack_save_numeric.h
│ │ │ │ ├── umfpack_save_symbolic.h
│ │ │ │ ├── umfpack_scale.h
│ │ │ │ ├── umfpack_solve.h
│ │ │ │ ├── umfpack_symbolic.h
│ │ │ │ ├── umfpack_tictoc.h
│ │ │ │ ├── umfpack_timer.h
│ │ │ │ ├── umfpack_transpose.h
│ │ │ │ ├── umfpack_triplet_to_col.h
│ │ │ │ └── umfpack_wsolve.h
│ │ │ └── lib
│ │ │ ├── cmake
│ │ │ │ └── suitesparse-5.4.0
│ │ │ │ ├── suitesparse-config.cmake
│ │ │ │ ├── suitesparse-config-version.cmake
│ │ │ │ ├── SuiteSparse-targets.cmake
│ │ │ │ ├── SuiteSparse-targets-debug.cmake
│ │ │ │ └── SuiteSparse-targets-release.cmake
│ │ │ ├── libamdd.lib
│ │ │ ├── libamd.lib
│ │ │ ├── libbtfd.lib
│ │ │ ├── libbtf.lib
│ │ │ ├── libcamdd.lib
│ │ │ ├── libcamd.lib
│ │ │ ├── libccolamdd.lib
│ │ │ ├── libccolamd.lib
│ │ │ ├── libcholmodd.lib
│ │ │ ├── libcholmod.lib
│ │ │ ├── libcolamdd.lib
│ │ │ ├── libcolamd.lib
│ │ │ ├── libcxsparsed.lib
│ │ │ ├── libcxsparse.lib
│ │ │ ├── libklud.lib
│ │ │ ├── libklu.lib
│ │ │ ├── libldld.lib
│ │ │ ├── libldl.lib
│ │ │ ├── libspqrd.lib
│ │ │ ├── libspqr.lib
│ │ │ ├── libumfpackd.lib
│ │ │ ├── libumfpack.lib
│ │ │ ├── metisd.lib
│ │ │ ├── metis.lib
│ │ │ ├── suitesparseconfigd.lib
│ │ │ └── suitesparseconfig.lib
│ │ ├── install_manifest.txt
│ │ ├── INSTALL.vcxproj
│ │ ├── INSTALL.vcxproj.filters
│ │ ├── lib
│ │ │ ├── Debug
│ │ │ │ ├── libamdd.dll
│ │ │ │ ├── libamdd.exp
│ │ │ │ ├── libamdd.ilk
│ │ │ │ ├── libamdd.lib
│ │ │ │ ├── libamdd.pdb
│ │ │ │ ├── libbtfd.dll
│ │ │ │ ├── libbtfd.exp
│ │ │ │ ├── libbtfd.ilk
│ │ │ │ ├── libbtfd.lib
│ │ │ │ ├── libbtfd.pdb
│ │ │ │ ├── libcamdd.dll
│ │ │ │ ├── libcamdd.exp
│ │ │ │ ├── libcamdd.ilk
│ │ │ │ ├── libcamdd.lib
│ │ │ │ ├── libcamdd.pdb
│ │ │ │ ├── libccolamdd.dll
│ │ │ │ ├── libccolamdd.exp
│ │ │ │ ├── libccolamdd.ilk
│ │ │ │ ├── libccolamdd.lib
│ │ │ │ ├── libccolamdd.pdb
│ │ │ │ ├── libcholmodd.dll
│ │ │ │ ├── libcholmodd.exp
│ │ │ │ ├── libcholmodd.ilk
│ │ │ │ ├── libcholmodd.lib
│ │ │ │ ├── libcholmodd.pdb
│ │ │ │ ├── libcolamdd.dll
│ │ │ │ ├── libcolamdd.exp
│ │ │ │ ├── libcolamdd.ilk
│ │ │ │ ├── libcolamdd.lib
│ │ │ │ ├── libcolamdd.pdb
│ │ │ │ ├── libcxsparsed.dll
│ │ │ │ ├── libcxsparsed.exp
│ │ │ │ ├── libcxsparsed.ilk
│ │ │ │ ├── libcxsparsed.lib
│ │ │ │ ├── libcxsparsed.pdb
│ │ │ │ ├── libklud.dll
│ │ │ │ ├── libklud.exp
│ │ │ │ ├── libklud.ilk
│ │ │ │ ├── libklud.lib
│ │ │ │ ├── libklud.pdb
│ │ │ │ ├── libldld.dll
│ │ │ │ ├── libldld.exp
│ │ │ │ ├── libldld.ilk
│ │ │ │ ├── libldld.lib
│ │ │ │ ├── libldld.pdb
│ │ │ │ ├── libspqrd.dll
│ │ │ │ ├── libspqrd.exp
│ │ │ │ ├── libspqrd.ilk
│ │ │ │ ├── libspqrd.lib
│ │ │ │ ├── libspqrd.pdb
│ │ │ │ ├── libumfpackd.dll
│ │ │ │ ├── libumfpackd.exp
│ │ │ │ ├── libumfpackd.ilk
│ │ │ │ ├── libumfpackd.lib
│ │ │ │ ├── libumfpackd.pdb
│ │ │ │ ├── metisd.lib
│ │ │ │ └── suitesparseconfigd.lib
│ │ │ └── Release
│ │ │ ├── libamd.dll
│ │ │ ├── libamd.exp
│ │ │ ├── libamd.lib
│ │ │ ├── libbtf.dll
│ │ │ ├── libbtf.exp
│ │ │ ├── libbtf.lib
│ │ │ ├── libcamd.dll
│ │ │ ├── libcamd.exp
│ │ │ ├── libcamd.lib
│ │ │ ├── libccolamd.dll
│ │ │ ├── libccolamd.exp
│ │ │ ├── libccolamd.lib
│ │ │ ├── libcholmod.dll
│ │ │ ├── libcholmod.exp
│ │ │ ├── libcholmod.lib
│ │ │ ├── libcolamd.dll
│ │ │ ├── libcolamd.exp
│ │ │ ├── libcolamd.lib
│ │ │ ├── libcxsparse.dll
│ │ │ ├── libcxsparse.exp
│ │ │ ├── libcxsparse.lib
│ │ │ ├── libklu.dll
│ │ │ ├── libklu.exp
│ │ │ ├── libklu.lib
│ │ │ ├── libldl.dll
│ │ │ ├── libldl.exp
│ │ │ ├── libldl.lib
│ │ │ ├── libspqr.dll
│ │ │ ├── libspqr.exp
│ │ │ ├── libspqr.lib
│ │ │ ├── libumfpack.dll
│ │ │ ├── libumfpack.exp
│ │ │ ├── libumfpack.lib
│ │ │ ├── metis.lib
│ │ │ └── suitesparseconfig.lib
│ │ ├── SuiteSparse
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── AMD
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── amd.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── amd_global.obj
│ │ │ │ │ │ ├── amd_i_1.o.obj
│ │ │ │ │ │ ├── amd_i_2.o.obj
│ │ │ │ │ │ ├── amd_i_aat.o.obj
│ │ │ │ │ │ ├── amd_i_control.o.obj
│ │ │ │ │ │ ├── amd_i_defaults.o.obj
│ │ │ │ │ │ ├── amd_i_dump.o.obj
│ │ │ │ │ │ ├── amd_i_info.o.obj
│ │ │ │ │ │ ├── amd_i_order.o.obj
│ │ │ │ │ │ ├── amd_i_postorder.o.obj
│ │ │ │ │ │ ├── amd_i_post_tree.o.obj
│ │ │ │ │ │ ├── amd_i_preprocess.o.obj
│ │ │ │ │ │ ├── amd_i_valid.o.obj
│ │ │ │ │ │ ├── amd_l_1.o.obj
│ │ │ │ │ │ ├── amd_l_2.o.obj
│ │ │ │ │ │ ├── amd_l_aat.o.obj
│ │ │ │ │ │ ├── amd_l_control.o.obj
│ │ │ │ │ │ ├── amd_l_defaults.o.obj
│ │ │ │ │ │ ├── amd_l_dump.o.obj
│ │ │ │ │ │ ├── amd_l_info.o.obj
│ │ │ │ │ │ ├── amd.log
│ │ │ │ │ │ ├── amd_l_order.o.obj
│ │ │ │ │ │ ├── amd_l_postorder.o.obj
│ │ │ │ │ │ ├── amd_l_post_tree.o.obj
│ │ │ │ │ │ ├── amd_l_preprocess.o.obj
│ │ │ │ │ │ ├── amd_l_valid.o.obj
│ │ │ │ │ │ ├── amd.tlog
│ │ │ │ │ │ │ ├── amd.lastbuildstate
│ │ │ │ │ │ │ ├── amd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── amd_global.obj
│ │ │ │ │ │ ├── amd_i_1.o.obj
│ │ │ │ │ │ ├── amd_i_2.o.obj
│ │ │ │ │ │ ├── amd_i_aat.o.obj
│ │ │ │ │ │ ├── amd_i_control.o.obj
│ │ │ │ │ │ ├── amd_i_defaults.o.obj
│ │ │ │ │ │ ├── amd_i_dump.o.obj
│ │ │ │ │ │ ├── amd_i_info.o.obj
│ │ │ │ │ │ ├── amd_i_order.o.obj
│ │ │ │ │ │ ├── amd_i_postorder.o.obj
│ │ │ │ │ │ ├── amd_i_post_tree.o.obj
│ │ │ │ │ │ ├── amd_i_preprocess.o.obj
│ │ │ │ │ │ ├── amd_i_valid.o.obj
│ │ │ │ │ │ ├── amd_l_1.o.obj
│ │ │ │ │ │ ├── amd_l_2.o.obj
│ │ │ │ │ │ ├── amd_l_aat.o.obj
│ │ │ │ │ │ ├── amd_l_control.o.obj
│ │ │ │ │ │ ├── amd_l_defaults.o.obj
│ │ │ │ │ │ ├── amd_l_dump.o.obj
│ │ │ │ │ │ ├── amd_l_info.o.obj
│ │ │ │ │ │ ├── amd.log
│ │ │ │ │ │ ├── amd_l_order.o.obj
│ │ │ │ │ │ ├── amd_l_postorder.o.obj
│ │ │ │ │ │ ├── amd_l_post_tree.o.obj
│ │ │ │ │ │ ├── amd_l_preprocess.o.obj
│ │ │ │ │ │ ├── amd_l_valid.o.obj
│ │ │ │ │ │ ├── amd.tlog
│ │ │ │ │ │ │ ├── amd.lastbuildstate
│ │ │ │ │ │ │ ├── amd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── AMD.sln
│ │ │ │ ├── amd.vcxproj
│ │ │ │ ├── amd.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── BTF
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── btf.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── btf_l_maxtrans.o.obj
│ │ │ │ │ │ ├── btf.log
│ │ │ │ │ │ ├── btf_l_order.o.obj
│ │ │ │ │ │ ├── btf_l_strongcomp.o.obj
│ │ │ │ │ │ ├── btf_maxtrans.o.obj
│ │ │ │ │ │ ├── btf_order.o.obj
│ │ │ │ │ │ ├── btf_strongcomp.o.obj
│ │ │ │ │ │ ├── btf.tlog
│ │ │ │ │ │ │ ├── btf.lastbuildstate
│ │ │ │ │ │ │ ├── btf.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── btf_l_maxtrans.o.obj
│ │ │ │ │ │ ├── btf.log
│ │ │ │ │ │ ├── btf_l_order.o.obj
│ │ │ │ │ │ ├── btf_l_strongcomp.o.obj
│ │ │ │ │ │ ├── btf_maxtrans.o.obj
│ │ │ │ │ │ ├── btf_order.o.obj
│ │ │ │ │ │ ├── btf_strongcomp.o.obj
│ │ │ │ │ │ ├── btf.tlog
│ │ │ │ │ │ │ ├── btf.lastbuildstate
│ │ │ │ │ │ │ ├── btf.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── BTF.sln
│ │ │ │ ├── btf.vcxproj
│ │ │ │ ├── btf.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── CAMD
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── camd.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── camd_global.obj
│ │ │ │ │ │ ├── camd_i_1.o.obj
│ │ │ │ │ │ ├── camd_i_2.o.obj
│ │ │ │ │ │ ├── camd_i_aat.o.obj
│ │ │ │ │ │ ├── camd_i_control.o.obj
│ │ │ │ │ │ ├── camd_i_defaults.o.obj
│ │ │ │ │ │ ├── camd_i_dump.o.obj
│ │ │ │ │ │ ├── camd_i_info.o.obj
│ │ │ │ │ │ ├── camd_i_order.o.obj
│ │ │ │ │ │ ├── camd_i_postorder.o.obj
│ │ │ │ │ │ ├── camd_i_preprocess.o.obj
│ │ │ │ │ │ ├── camd_i_valid.o.obj
│ │ │ │ │ │ ├── camd_l_1.o.obj
│ │ │ │ │ │ ├── camd_l_2.o.obj
│ │ │ │ │ │ ├── camd_l_aat.o.obj
│ │ │ │ │ │ ├── camd_l_control.o.obj
│ │ │ │ │ │ ├── camd_l_defaults.o.obj
│ │ │ │ │ │ ├── camd_l_dump.o.obj
│ │ │ │ │ │ ├── camd_l_info.o.obj
│ │ │ │ │ │ ├── camd.log
│ │ │ │ │ │ ├── camd_l_order.o.obj
│ │ │ │ │ │ ├── camd_l_postorder.o.obj
│ │ │ │ │ │ ├── camd_l_preprocess.o.obj
│ │ │ │ │ │ ├── camd_l_valid.o.obj
│ │ │ │ │ │ ├── camd.tlog
│ │ │ │ │ │ │ ├── camd.lastbuildstate
│ │ │ │ │ │ │ ├── camd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── camd_global.obj
│ │ │ │ │ │ ├── camd_i_1.o.obj
│ │ │ │ │ │ ├── camd_i_2.o.obj
│ │ │ │ │ │ ├── camd_i_aat.o.obj
│ │ │ │ │ │ ├── camd_i_control.o.obj
│ │ │ │ │ │ ├── camd_i_defaults.o.obj
│ │ │ │ │ │ ├── camd_i_dump.o.obj
│ │ │ │ │ │ ├── camd_i_info.o.obj
│ │ │ │ │ │ ├── camd_i_order.o.obj
│ │ │ │ │ │ ├── camd_i_postorder.o.obj
│ │ │ │ │ │ ├── camd_i_preprocess.o.obj
│ │ │ │ │ │ ├── camd_i_valid.o.obj
│ │ │ │ │ │ ├── camd_l_1.o.obj
│ │ │ │ │ │ ├── camd_l_2.o.obj
│ │ │ │ │ │ ├── camd_l_aat.o.obj
│ │ │ │ │ │ ├── camd_l_control.o.obj
│ │ │ │ │ │ ├── camd_l_defaults.o.obj
│ │ │ │ │ │ ├── camd_l_dump.o.obj
│ │ │ │ │ │ ├── camd_l_info.o.obj
│ │ │ │ │ │ ├── camd.log
│ │ │ │ │ │ ├── camd_l_order.o.obj
│ │ │ │ │ │ ├── camd_l_postorder.o.obj
│ │ │ │ │ │ ├── camd_l_preprocess.o.obj
│ │ │ │ │ │ ├── camd_l_valid.o.obj
│ │ │ │ │ │ ├── camd.tlog
│ │ │ │ │ │ │ ├── camd.lastbuildstate
│ │ │ │ │ │ │ ├── camd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── CAMD.sln
│ │ │ │ ├── camd.vcxproj
│ │ │ │ ├── camd.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── CCOLAMD
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── ccolamd.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── ccolamd.log
│ │ │ │ │ │ ├── ccolamd_l.o.obj
│ │ │ │ │ │ ├── ccolamd.obj
│ │ │ │ │ │ ├── ccolamd.tlog
│ │ │ │ │ │ │ ├── ccolamd.lastbuildstate
│ │ │ │ │ │ │ ├── ccolamd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── ccolamd.log
│ │ │ │ │ │ ├── ccolamd_l.o.obj
│ │ │ │ │ │ ├── ccolamd.obj
│ │ │ │ │ │ ├── ccolamd.tlog
│ │ │ │ │ │ │ ├── ccolamd.lastbuildstate
│ │ │ │ │ │ │ ├── ccolamd.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── CCOLAMD.sln
│ │ │ │ ├── ccolamd.vcxproj
│ │ │ │ ├── ccolamd.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── CHOLMOD
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── cholmod.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cholmod_aat.o.obj
│ │ │ │ │ │ ├── cholmod_add.o.obj
│ │ │ │ │ │ ├── cholmod_amd.o.obj
│ │ │ │ │ │ ├── cholmod_analyze.o.obj
│ │ │ │ │ │ ├── cholmod_band.o.obj
│ │ │ │ │ │ ├── cholmod_camd.o.obj
│ │ │ │ │ │ ├── cholmod_ccolamd.o.obj
│ │ │ │ │ │ ├── cholmod_change_factor.o.obj
│ │ │ │ │ │ ├── cholmod_check.o.obj
│ │ │ │ │ │ ├── cholmod_colamd.o.obj
│ │ │ │ │ │ ├── cholmod_common.o.obj
│ │ │ │ │ │ ├── cholmod_complex.o.obj
│ │ │ │ │ │ ├── cholmod_copy.o.obj
│ │ │ │ │ │ ├── cholmod_csymamd.o.obj
│ │ │ │ │ │ ├── cholmod_dense.o.obj
│ │ │ │ │ │ ├── cholmod_drop.o.obj
│ │ │ │ │ │ ├── cholmod_error.o.obj
│ │ │ │ │ │ ├── cholmod_etree.o.obj
│ │ │ │ │ │ ├── cholmod_factorize.o.obj
│ │ │ │ │ │ ├── cholmod_factor.o.obj
│ │ │ │ │ │ ├── cholmod_gpu.o.obj
│ │ │ │ │ │ ├── cholmod_horzcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_aat.o.obj
│ │ │ │ │ │ ├── cholmod_l_add.o.obj
│ │ │ │ │ │ ├── cholmod_l_amd.o.obj
│ │ │ │ │ │ ├── cholmod_l_analyze.o.obj
│ │ │ │ │ │ ├── cholmod_l_band.o.obj
│ │ │ │ │ │ ├── cholmod_l_camd.o.obj
│ │ │ │ │ │ ├── cholmod_l_ccolamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_change_factor.o.obj
│ │ │ │ │ │ ├── cholmod_l_check.o.obj
│ │ │ │ │ │ ├── cholmod_l_colamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_common.o.obj
│ │ │ │ │ │ ├── cholmod_l_complex.o.obj
│ │ │ │ │ │ ├── cholmod_l_copy.o.obj
│ │ │ │ │ │ ├── cholmod_l_csymamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_dense.o.obj
│ │ │ │ │ │ ├── cholmod_l_drop.o.obj
│ │ │ │ │ │ ├── cholmod_l_error.o.obj
│ │ │ │ │ │ ├── cholmod_l_etree.o.obj
│ │ │ │ │ │ ├── cholmod_l_factorize.o.obj
│ │ │ │ │ │ ├── cholmod_l_factor.o.obj
│ │ │ │ │ │ ├── cholmod_l_gpu.o.obj
│ │ │ │ │ │ ├── cholmod_l_horzcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_memory.o.obj
│ │ │ │ │ │ ├── cholmod_l_metis.o.obj
│ │ │ │ │ │ ├── cholmod_l_nesdis.o.obj
│ │ │ │ │ │ ├── cholmod_l_norm.o.obj
│ │ │ │ │ │ ├── cholmod.log
│ │ │ │ │ │ ├── cholmod_l_postorder.o.obj
│ │ │ │ │ │ ├── cholmod_l_rcond.o.obj
│ │ │ │ │ │ ├── cholmod_l_read.o.obj
│ │ │ │ │ │ ├── cholmod_l_resymbol.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowadd.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowcolcounts.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowdel.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowfac.o.obj
│ │ │ │ │ │ ├── cholmod_l_scale.o.obj
│ │ │ │ │ │ ├── cholmod_l_sdmult.o.obj
│ │ │ │ │ │ ├── cholmod_l_solve.o.obj
│ │ │ │ │ │ ├── cholmod_l_sparse.o.obj
│ │ │ │ │ │ ├── cholmod_l_spsolve.o.obj
│ │ │ │ │ │ ├── cholmod_l_ssmult.o.obj
│ │ │ │ │ │ ├── cholmod_l_submatrix.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_numeric.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_solve.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_symbolic.o.obj
│ │ │ │ │ │ ├── cholmod_l_symmetry.o.obj
│ │ │ │ │ │ ├── cholmod_l_transpose.o.obj
│ │ │ │ │ │ ├── cholmod_l_triplet.o.obj
│ │ │ │ │ │ ├── cholmod_l_updown.o.obj
│ │ │ │ │ │ ├── cholmod_l_vertcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_write.o.obj
│ │ │ │ │ │ ├── cholmod_memory.o.obj
│ │ │ │ │ │ ├── cholmod_metis.o.obj
│ │ │ │ │ │ ├── cholmod_nesdis.o.obj
│ │ │ │ │ │ ├── cholmod_norm.o.obj
│ │ │ │ │ │ ├── cholmod_postorder.o.obj
│ │ │ │ │ │ ├── cholmod_rcond.o.obj
│ │ │ │ │ │ ├── cholmod_read.o.obj
│ │ │ │ │ │ ├── cholmod_resymbol.o.obj
│ │ │ │ │ │ ├── cholmod_rowadd.o.obj
│ │ │ │ │ │ ├── cholmod_rowcolcounts.o.obj
│ │ │ │ │ │ ├── cholmod_rowdel.o.obj
│ │ │ │ │ │ ├── cholmod_rowfac.o.obj
│ │ │ │ │ │ ├── cholmod_scale.o.obj
│ │ │ │ │ │ ├── cholmod_sdmult.o.obj
│ │ │ │ │ │ ├── cholmod_solve.o.obj
│ │ │ │ │ │ ├── cholmod_sparse.o.obj
│ │ │ │ │ │ ├── cholmod_spsolve.o.obj
│ │ │ │ │ │ ├── cholmod_ssmult.o.obj
│ │ │ │ │ │ ├── cholmod_submatrix.o.obj
│ │ │ │ │ │ ├── cholmod_super_numeric.o.obj
│ │ │ │ │ │ ├── cholmod_super_solve.o.obj
│ │ │ │ │ │ ├── cholmod_super_symbolic.o.obj
│ │ │ │ │ │ ├── cholmod_symmetry.o.obj
│ │ │ │ │ │ ├── cholmod.tlog
│ │ │ │ │ │ │ ├── cholmod.lastbuildstate
│ │ │ │ │ │ │ ├── cholmod.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── cholmod_transpose.o.obj
│ │ │ │ │ │ ├── cholmod_triplet.o.obj
│ │ │ │ │ │ ├── cholmod_updown.o.obj
│ │ │ │ │ │ ├── cholmod_vertcat.o.obj
│ │ │ │ │ │ ├── cholmod_write.o.obj
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── cholmod_aat.o.obj
│ │ │ │ │ │ ├── cholmod_add.o.obj
│ │ │ │ │ │ ├── cholmod_amd.o.obj
│ │ │ │ │ │ ├── cholmod_analyze.o.obj
│ │ │ │ │ │ ├── cholmod_band.o.obj
│ │ │ │ │ │ ├── cholmod_camd.o.obj
│ │ │ │ │ │ ├── cholmod_ccolamd.o.obj
│ │ │ │ │ │ ├── cholmod_change_factor.o.obj
│ │ │ │ │ │ ├── cholmod_check.o.obj
│ │ │ │ │ │ ├── cholmod_colamd.o.obj
│ │ │ │ │ │ ├── cholmod_common.o.obj
│ │ │ │ │ │ ├── cholmod_complex.o.obj
│ │ │ │ │ │ ├── cholmod_copy.o.obj
│ │ │ │ │ │ ├── cholmod_csymamd.o.obj
│ │ │ │ │ │ ├── cholmod_dense.o.obj
│ │ │ │ │ │ ├── cholmod_drop.o.obj
│ │ │ │ │ │ ├── cholmod_error.o.obj
│ │ │ │ │ │ ├── cholmod_etree.o.obj
│ │ │ │ │ │ ├── cholmod_factorize.o.obj
│ │ │ │ │ │ ├── cholmod_factor.o.obj
│ │ │ │ │ │ ├── cholmod_gpu.o.obj
│ │ │ │ │ │ ├── cholmod_horzcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_aat.o.obj
│ │ │ │ │ │ ├── cholmod_l_add.o.obj
│ │ │ │ │ │ ├── cholmod_l_amd.o.obj
│ │ │ │ │ │ ├── cholmod_l_analyze.o.obj
│ │ │ │ │ │ ├── cholmod_l_band.o.obj
│ │ │ │ │ │ ├── cholmod_l_camd.o.obj
│ │ │ │ │ │ ├── cholmod_l_ccolamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_change_factor.o.obj
│ │ │ │ │ │ ├── cholmod_l_check.o.obj
│ │ │ │ │ │ ├── cholmod_l_colamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_common.o.obj
│ │ │ │ │ │ ├── cholmod_l_complex.o.obj
│ │ │ │ │ │ ├── cholmod_l_copy.o.obj
│ │ │ │ │ │ ├── cholmod_l_csymamd.o.obj
│ │ │ │ │ │ ├── cholmod_l_dense.o.obj
│ │ │ │ │ │ ├── cholmod_l_drop.o.obj
│ │ │ │ │ │ ├── cholmod_l_error.o.obj
│ │ │ │ │ │ ├── cholmod_l_etree.o.obj
│ │ │ │ │ │ ├── cholmod_l_factorize.o.obj
│ │ │ │ │ │ ├── cholmod_l_factor.o.obj
│ │ │ │ │ │ ├── cholmod_l_gpu.o.obj
│ │ │ │ │ │ ├── cholmod_l_horzcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_memory.o.obj
│ │ │ │ │ │ ├── cholmod_l_metis.o.obj
│ │ │ │ │ │ ├── cholmod_l_nesdis.o.obj
│ │ │ │ │ │ ├── cholmod_l_norm.o.obj
│ │ │ │ │ │ ├── cholmod.log
│ │ │ │ │ │ ├── cholmod_l_postorder.o.obj
│ │ │ │ │ │ ├── cholmod_l_rcond.o.obj
│ │ │ │ │ │ ├── cholmod_l_read.o.obj
│ │ │ │ │ │ ├── cholmod_l_resymbol.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowadd.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowcolcounts.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowdel.o.obj
│ │ │ │ │ │ ├── cholmod_l_rowfac.o.obj
│ │ │ │ │ │ ├── cholmod_l_scale.o.obj
│ │ │ │ │ │ ├── cholmod_l_sdmult.o.obj
│ │ │ │ │ │ ├── cholmod_l_solve.o.obj
│ │ │ │ │ │ ├── cholmod_l_sparse.o.obj
│ │ │ │ │ │ ├── cholmod_l_spsolve.o.obj
│ │ │ │ │ │ ├── cholmod_l_ssmult.o.obj
│ │ │ │ │ │ ├── cholmod_l_submatrix.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_numeric.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_solve.o.obj
│ │ │ │ │ │ ├── cholmod_l_super_symbolic.o.obj
│ │ │ │ │ │ ├── cholmod_l_symmetry.o.obj
│ │ │ │ │ │ ├── cholmod_l_transpose.o.obj
│ │ │ │ │ │ ├── cholmod_l_triplet.o.obj
│ │ │ │ │ │ ├── cholmod_l_updown.o.obj
│ │ │ │ │ │ ├── cholmod_l_vertcat.o.obj
│ │ │ │ │ │ ├── cholmod_l_write.o.obj
│ │ │ │ │ │ ├── cholmod_memory.o.obj
│ │ │ │ │ │ ├── cholmod_metis.o.obj
│ │ │ │ │ │ ├── cholmod_nesdis.o.obj
│ │ │ │ │ │ ├── cholmod_norm.o.obj
│ │ │ │ │ │ ├── cholmod_postorder.o.obj
│ │ │ │ │ │ ├── cholmod_rcond.o.obj
│ │ │ │ │ │ ├── cholmod_read.o.obj
│ │ │ │ │ │ ├── cholmod_resymbol.o.obj
│ │ │ │ │ │ ├── cholmod_rowadd.o.obj
│ │ │ │ │ │ ├── cholmod_rowcolcounts.o.obj
│ │ │ │ │ │ ├── cholmod_rowdel.o.obj
│ │ │ │ │ │ ├── cholmod_rowfac.o.obj
│ │ │ │ │ │ ├── cholmod_scale.o.obj
│ │ │ │ │ │ ├── cholmod_sdmult.o.obj
│ │ │ │ │ │ ├── cholmod_solve.o.obj
│ │ │ │ │ │ ├── cholmod_sparse.o.obj
│ │ │ │ │ │ ├── cholmod_spsolve.o.obj
│ │ │ │ │ │ ├── cholmod_ssmult.o.obj
│ │ │ │ │ │ ├── cholmod_submatrix.o.obj
│ │ │ │ │ │ ├── cholmod_super_numeric.o.obj
│ │ │ │ │ │ ├── cholmod_super_solve.o.obj
│ │ │ │ │ │ ├── cholmod_super_symbolic.o.obj
│ │ │ │ │ │ ├── cholmod_symmetry.o.obj
│ │ │ │ │ │ ├── cholmod.tlog
│ │ │ │ │ │ │ ├── cholmod.lastbuildstate
│ │ │ │ │ │ │ ├── cholmod.write.1u.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── cholmod_transpose.o.obj
│ │ │ │ │ │ ├── cholmod_triplet.o.obj
│ │ │ │ │ │ ├── cholmod_updown.o.obj
│ │ │ │ │ │ ├── cholmod_vertcat.o.obj
│ │ │ │ │ │ ├── cholmod_write.o.obj
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── CHOLMOD.sln
│ │ │ │ ├── cholmod.vcxproj
│ │ │ │ ├── cholmod.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── COLAMD
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── colamd.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── colamd.log
│ │ │ │ │ │ ├── colamd_l.o.obj
│ │ │ │ │ │ ├── colamd.obj
│ │ │ │ │ │ ├── colamd.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── colamd.lastbuildstate
│ │ │ │ │ │ │ ├── colamd.write.1u.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── colamd.log
│ │ │ │ │ │ ├── colamd_l.o.obj
│ │ │ │ │ │ ├── colamd.obj
│ │ │ │ │ │ ├── colamd.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── colamd.lastbuildstate
│ │ │ │ │ │ │ ├── colamd.write.1u.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── COLAMD.sln
│ │ │ │ ├── colamd.vcxproj
│ │ │ │ ├── colamd.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── CXSparse
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── cxsparse.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cs_add_ci.o.obj
│ │ │ │ │ │ ├── cs_add_cl.o.obj
│ │ │ │ │ │ ├── cs_add_di.o.obj
│ │ │ │ │ │ ├── cs_add_dl.o.obj
│ │ │ │ │ │ ├── cs_amd_ci.o.obj
│ │ │ │ │ │ ├── cs_amd_cl.o.obj
│ │ │ │ │ │ ├── cs_amd_di.o.obj
│ │ │ │ │ │ ├── cs_amd_dl.o.obj
│ │ │ │ │ │ ├── cs_chol_ci.o.obj
│ │ │ │ │ │ ├── cs_chol_cl.o.obj
│ │ │ │ │ │ ├── cs_chol_di.o.obj
│ │ │ │ │ │ ├── cs_chol_dl.o.obj
│ │ │ │ │ │ ├── cs_cholsol_ci.o.obj
│ │ │ │ │ │ ├── cs_cholsol_cl.o.obj
│ │ │ │ │ │ ├── cs_cholsol_di.o.obj
│ │ │ │ │ │ ├── cs_cholsol_dl.o.obj
│ │ │ │ │ │ ├── cs_compress_ci.o.obj
│ │ │ │ │ │ ├── cs_compress_cl.o.obj
│ │ │ │ │ │ ├── cs_compress_di.o.obj
│ │ │ │ │ │ ├── cs_compress_dl.o.obj
│ │ │ │ │ │ ├── cs_convert.o.obj
│ │ │ │ │ │ ├── cs_counts_ci.o.obj
│ │ │ │ │ │ ├── cs_counts_cl.o.obj
│ │ │ │ │ │ ├── cs_counts_di.o.obj
│ │ │ │ │ │ ├── cs_counts_dl.o.obj
│ │ │ │ │ │ ├── cs_cumsum_ci.o.obj
│ │ │ │ │ │ ├── cs_cumsum_cl.o.obj
│ │ │ │ │ │ ├── cs_cumsum_di.o.obj
│ │ │ │ │ │ ├── cs_cumsum_dl.o.obj
│ │ │ │ │ │ ├── cs_dfs_ci.o.obj
│ │ │ │ │ │ ├── cs_dfs_cl.o.obj
│ │ │ │ │ │ ├── cs_dfs_di.o.obj
│ │ │ │ │ │ ├── cs_dfs_dl.o.obj
│ │ │ │ │ │ ├── cs_dmperm_ci.o.obj
│ │ │ │ │ │ ├── cs_dmperm_cl.o.obj
│ │ │ │ │ │ ├── cs_dmperm_di.o.obj
│ │ │ │ │ │ ├── cs_dmperm_dl.o.obj
│ │ │ │ │ │ ├── cs_droptol_ci.o.obj
│ │ │ │ │ │ ├── cs_droptol_cl.o.obj
│ │ │ │ │ │ ├── cs_droptol_di.o.obj
│ │ │ │ │ │ ├── cs_droptol_dl.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_ci.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_cl.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_di.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_dl.o.obj
│ │ │ │ │ │ ├── cs_dupl_ci.o.obj
│ │ │ │ │ │ ├── cs_dupl_cl.o.obj
│ │ │ │ │ │ ├── cs_dupl_di.o.obj
│ │ │ │ │ │ ├── cs_dupl_dl.o.obj
│ │ │ │ │ │ ├── cs_entry_ci.o.obj
│ │ │ │ │ │ ├── cs_entry_cl.o.obj
│ │ │ │ │ │ ├── cs_entry_di.o.obj
│ │ │ │ │ │ ├── cs_entry_dl.o.obj
│ │ │ │ │ │ ├── cs_ereach_ci.o.obj
│ │ │ │ │ │ ├── cs_ereach_cl.o.obj
│ │ │ │ │ │ ├── cs_ereach_di.o.obj
│ │ │ │ │ │ ├── cs_ereach_dl.o.obj
│ │ │ │ │ │ ├── cs_etree_ci.o.obj
│ │ │ │ │ │ ├── cs_etree_cl.o.obj
│ │ │ │ │ │ ├── cs_etree_di.o.obj
│ │ │ │ │ │ ├── cs_etree_dl.o.obj
│ │ │ │ │ │ ├── cs_fkeep_ci.o.obj
│ │ │ │ │ │ ├── cs_fkeep_cl.o.obj
│ │ │ │ │ │ ├── cs_fkeep_di.o.obj
│ │ │ │ │ │ ├── cs_fkeep_dl.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_ci.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_cl.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_di.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_dl.o.obj
│ │ │ │ │ │ ├── cs_happly_ci.o.obj
│ │ │ │ │ │ ├── cs_happly_cl.o.obj
│ │ │ │ │ │ ├── cs_happly_di.o.obj
│ │ │ │ │ │ ├── cs_happly_dl.o.obj
│ │ │ │ │ │ ├── cs_house_ci.o.obj
│ │ │ │ │ │ ├── cs_house_cl.o.obj
│ │ │ │ │ │ ├── cs_house_di.o.obj
│ │ │ │ │ │ ├── cs_house_dl.o.obj
│ │ │ │ │ │ ├── cs_ipvec_ci.o.obj
│ │ │ │ │ │ ├── cs_ipvec_cl.o.obj
│ │ │ │ │ │ ├── cs_ipvec_di.o.obj
│ │ │ │ │ │ ├── cs_ipvec_dl.o.obj
│ │ │ │ │ │ ├── cs_leaf_ci.o.obj
│ │ │ │ │ │ ├── cs_leaf_cl.o.obj
│ │ │ │ │ │ ├── cs_leaf_di.o.obj
│ │ │ │ │ │ ├── cs_leaf_dl.o.obj
│ │ │ │ │ │ ├── cs_load_ci.o.obj
│ │ │ │ │ │ ├── cs_load_cl.o.obj
│ │ │ │ │ │ ├── cs_load_di.o.obj
│ │ │ │ │ │ ├── cs_load_dl.o.obj
│ │ │ │ │ │ ├── cs_lsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_lsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_lsolve_di.o.obj
│ │ │ │ │ │ ├── cs_lsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_di.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_lu_ci.o.obj
│ │ │ │ │ │ ├── cs_lu_cl.o.obj
│ │ │ │ │ │ ├── cs_lu_di.o.obj
│ │ │ │ │ │ ├── cs_lu_dl.o.obj
│ │ │ │ │ │ ├── cs_lusol_ci.o.obj
│ │ │ │ │ │ ├── cs_lusol_cl.o.obj
│ │ │ │ │ │ ├── cs_lusol_di.o.obj
│ │ │ │ │ │ ├── cs_lusol_dl.o.obj
│ │ │ │ │ │ ├── cs_malloc_ci.o.obj
│ │ │ │ │ │ ├── cs_malloc_cl.o.obj
│ │ │ │ │ │ ├── cs_malloc_di.o.obj
│ │ │ │ │ │ ├── cs_malloc_dl.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_ci.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_cl.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_di.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_dl.o.obj
│ │ │ │ │ │ ├── cs_multiply_ci.o.obj
│ │ │ │ │ │ ├── cs_multiply_cl.o.obj
│ │ │ │ │ │ ├── cs_multiply_di.o.obj
│ │ │ │ │ │ ├── cs_multiply_dl.o.obj
│ │ │ │ │ │ ├── cs_norm_ci.o.obj
│ │ │ │ │ │ ├── cs_norm_cl.o.obj
│ │ │ │ │ │ ├── cs_norm_di.o.obj
│ │ │ │ │ │ ├── cs_norm_dl.o.obj
│ │ │ │ │ │ ├── cs_permute_ci.o.obj
│ │ │ │ │ │ ├── cs_permute_cl.o.obj
│ │ │ │ │ │ ├── cs_permute_di.o.obj
│ │ │ │ │ │ ├── cs_permute_dl.o.obj
│ │ │ │ │ │ ├── cs_pinv_ci.o.obj
│ │ │ │ │ │ ├── cs_pinv_cl.o.obj
│ │ │ │ │ │ ├── cs_pinv_di.o.obj
│ │ │ │ │ │ ├── cs_pinv_dl.o.obj
│ │ │ │ │ │ ├── cs_post_ci.o.obj
│ │ │ │ │ │ ├── cs_post_cl.o.obj
│ │ │ │ │ │ ├── cs_post_di.o.obj
│ │ │ │ │ │ ├── cs_post_dl.o.obj
│ │ │ │ │ │ ├── cs_print_ci.o.obj
│ │ │ │ │ │ ├── cs_print_cl.o.obj
│ │ │ │ │ │ ├── cs_print_di.o.obj
│ │ │ │ │ │ ├── cs_print_dl.o.obj
│ │ │ │ │ │ ├── cs_pvec_ci.o.obj
│ │ │ │ │ │ ├── cs_pvec_cl.o.obj
│ │ │ │ │ │ ├── cs_pvec_di.o.obj
│ │ │ │ │ │ ├── cs_pvec_dl.o.obj
│ │ │ │ │ │ ├── cs_qr_ci.o.obj
│ │ │ │ │ │ ├── cs_qr_cl.o.obj
│ │ │ │ │ │ ├── cs_qr_di.o.obj
│ │ │ │ │ │ ├── cs_qr_dl.o.obj
│ │ │ │ │ │ ├── cs_qrsol_ci.o.obj
│ │ │ │ │ │ ├── cs_qrsol_cl.o.obj
│ │ │ │ │ │ ├── cs_qrsol_di.o.obj
│ │ │ │ │ │ ├── cs_qrsol_dl.o.obj
│ │ │ │ │ │ ├── cs_randperm_ci.o.obj
│ │ │ │ │ │ ├── cs_randperm_cl.o.obj
│ │ │ │ │ │ ├── cs_randperm_di.o.obj
│ │ │ │ │ │ ├── cs_randperm_dl.o.obj
│ │ │ │ │ │ ├── cs_reach_ci.o.obj
│ │ │ │ │ │ ├── cs_reach_cl.o.obj
│ │ │ │ │ │ ├── cs_reach_di.o.obj
│ │ │ │ │ │ ├── cs_reach_dl.o.obj
│ │ │ │ │ │ ├── cs_scatter_ci.o.obj
│ │ │ │ │ │ ├── cs_scatter_cl.o.obj
│ │ │ │ │ │ ├── cs_scatter_di.o.obj
│ │ │ │ │ │ ├── cs_scatter_dl.o.obj
│ │ │ │ │ │ ├── cs_scc_ci.o.obj
│ │ │ │ │ │ ├── cs_scc_cl.o.obj
│ │ │ │ │ │ ├── cs_scc_di.o.obj
│ │ │ │ │ │ ├── cs_scc_dl.o.obj
│ │ │ │ │ │ ├── cs_schol_ci.o.obj
│ │ │ │ │ │ ├── cs_schol_cl.o.obj
│ │ │ │ │ │ ├── cs_schol_di.o.obj
│ │ │ │ │ │ ├── cs_schol_dl.o.obj
│ │ │ │ │ │ ├── cs_spsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_spsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_spsolve_di.o.obj
│ │ │ │ │ │ ├── cs_spsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_sqr_ci.o.obj
│ │ │ │ │ │ ├── cs_sqr_cl.o.obj
│ │ │ │ │ │ ├── cs_sqr_di.o.obj
│ │ │ │ │ │ ├── cs_sqr_dl.o.obj
│ │ │ │ │ │ ├── cs_symperm_ci.o.obj
│ │ │ │ │ │ ├── cs_symperm_cl.o.obj
│ │ │ │ │ │ ├── cs_symperm_di.o.obj
│ │ │ │ │ │ ├── cs_symperm_dl.o.obj
│ │ │ │ │ │ ├── cs_tdfs_ci.o.obj
│ │ │ │ │ │ ├── cs_tdfs_cl.o.obj
│ │ │ │ │ │ ├── cs_tdfs_di.o.obj
│ │ │ │ │ │ ├── cs_tdfs_dl.o.obj
│ │ │ │ │ │ ├── cs_transpose_ci.o.obj
│ │ │ │ │ │ ├── cs_transpose_cl.o.obj
│ │ │ │ │ │ ├── cs_transpose_di.o.obj
│ │ │ │ │ │ ├── cs_transpose_dl.o.obj
│ │ │ │ │ │ ├── cs_updown_ci.o.obj
│ │ │ │ │ │ ├── cs_updown_cl.o.obj
│ │ │ │ │ │ ├── cs_updown_di.o.obj
│ │ │ │ │ │ ├── cs_updown_dl.o.obj
│ │ │ │ │ │ ├── cs_usolve_ci.o.obj
│ │ │ │ │ │ ├── cs_usolve_cl.o.obj
│ │ │ │ │ │ ├── cs_usolve_di.o.obj
│ │ │ │ │ │ ├── cs_usolve_dl.o.obj
│ │ │ │ │ │ ├── cs_util_ci.o.obj
│ │ │ │ │ │ ├── cs_util_cl.o.obj
│ │ │ │ │ │ ├── cs_util_di.o.obj
│ │ │ │ │ │ ├── cs_util_dl.o.obj
│ │ │ │ │ │ ├── cs_utsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_utsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_utsolve_di.o.obj
│ │ │ │ │ │ ├── cs_utsolve_dl.o.obj
│ │ │ │ │ │ ├── cxsparse.log
│ │ │ │ │ │ ├── cxsparse.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── cxsparse.lastbuildstate
│ │ │ │ │ │ │ ├── cxsparse.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── cs_add_ci.o.obj
│ │ │ │ │ │ ├── cs_add_cl.o.obj
│ │ │ │ │ │ ├── cs_add_di.o.obj
│ │ │ │ │ │ ├── cs_add_dl.o.obj
│ │ │ │ │ │ ├── cs_amd_ci.o.obj
│ │ │ │ │ │ ├── cs_amd_cl.o.obj
│ │ │ │ │ │ ├── cs_amd_di.o.obj
│ │ │ │ │ │ ├── cs_amd_dl.o.obj
│ │ │ │ │ │ ├── cs_chol_ci.o.obj
│ │ │ │ │ │ ├── cs_chol_cl.o.obj
│ │ │ │ │ │ ├── cs_chol_di.o.obj
│ │ │ │ │ │ ├── cs_chol_dl.o.obj
│ │ │ │ │ │ ├── cs_cholsol_ci.o.obj
│ │ │ │ │ │ ├── cs_cholsol_cl.o.obj
│ │ │ │ │ │ ├── cs_cholsol_di.o.obj
│ │ │ │ │ │ ├── cs_cholsol_dl.o.obj
│ │ │ │ │ │ ├── cs_compress_ci.o.obj
│ │ │ │ │ │ ├── cs_compress_cl.o.obj
│ │ │ │ │ │ ├── cs_compress_di.o.obj
│ │ │ │ │ │ ├── cs_compress_dl.o.obj
│ │ │ │ │ │ ├── cs_convert.o.obj
│ │ │ │ │ │ ├── cs_counts_ci.o.obj
│ │ │ │ │ │ ├── cs_counts_cl.o.obj
│ │ │ │ │ │ ├── cs_counts_di.o.obj
│ │ │ │ │ │ ├── cs_counts_dl.o.obj
│ │ │ │ │ │ ├── cs_cumsum_ci.o.obj
│ │ │ │ │ │ ├── cs_cumsum_cl.o.obj
│ │ │ │ │ │ ├── cs_cumsum_di.o.obj
│ │ │ │ │ │ ├── cs_cumsum_dl.o.obj
│ │ │ │ │ │ ├── cs_dfs_ci.o.obj
│ │ │ │ │ │ ├── cs_dfs_cl.o.obj
│ │ │ │ │ │ ├── cs_dfs_di.o.obj
│ │ │ │ │ │ ├── cs_dfs_dl.o.obj
│ │ │ │ │ │ ├── cs_dmperm_ci.o.obj
│ │ │ │ │ │ ├── cs_dmperm_cl.o.obj
│ │ │ │ │ │ ├── cs_dmperm_di.o.obj
│ │ │ │ │ │ ├── cs_dmperm_dl.o.obj
│ │ │ │ │ │ ├── cs_droptol_ci.o.obj
│ │ │ │ │ │ ├── cs_droptol_cl.o.obj
│ │ │ │ │ │ ├── cs_droptol_di.o.obj
│ │ │ │ │ │ ├── cs_droptol_dl.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_ci.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_cl.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_di.o.obj
│ │ │ │ │ │ ├── cs_dropzeros_dl.o.obj
│ │ │ │ │ │ ├── cs_dupl_ci.o.obj
│ │ │ │ │ │ ├── cs_dupl_cl.o.obj
│ │ │ │ │ │ ├── cs_dupl_di.o.obj
│ │ │ │ │ │ ├── cs_dupl_dl.o.obj
│ │ │ │ │ │ ├── cs_entry_ci.o.obj
│ │ │ │ │ │ ├── cs_entry_cl.o.obj
│ │ │ │ │ │ ├── cs_entry_di.o.obj
│ │ │ │ │ │ ├── cs_entry_dl.o.obj
│ │ │ │ │ │ ├── cs_ereach_ci.o.obj
│ │ │ │ │ │ ├── cs_ereach_cl.o.obj
│ │ │ │ │ │ ├── cs_ereach_di.o.obj
│ │ │ │ │ │ ├── cs_ereach_dl.o.obj
│ │ │ │ │ │ ├── cs_etree_ci.o.obj
│ │ │ │ │ │ ├── cs_etree_cl.o.obj
│ │ │ │ │ │ ├── cs_etree_di.o.obj
│ │ │ │ │ │ ├── cs_etree_dl.o.obj
│ │ │ │ │ │ ├── cs_fkeep_ci.o.obj
│ │ │ │ │ │ ├── cs_fkeep_cl.o.obj
│ │ │ │ │ │ ├── cs_fkeep_di.o.obj
│ │ │ │ │ │ ├── cs_fkeep_dl.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_ci.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_cl.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_di.o.obj
│ │ │ │ │ │ ├── cs_gaxpy_dl.o.obj
│ │ │ │ │ │ ├── cs_happly_ci.o.obj
│ │ │ │ │ │ ├── cs_happly_cl.o.obj
│ │ │ │ │ │ ├── cs_happly_di.o.obj
│ │ │ │ │ │ ├── cs_happly_dl.o.obj
│ │ │ │ │ │ ├── cs_house_ci.o.obj
│ │ │ │ │ │ ├── cs_house_cl.o.obj
│ │ │ │ │ │ ├── cs_house_di.o.obj
│ │ │ │ │ │ ├── cs_house_dl.o.obj
│ │ │ │ │ │ ├── cs_ipvec_ci.o.obj
│ │ │ │ │ │ ├── cs_ipvec_cl.o.obj
│ │ │ │ │ │ ├── cs_ipvec_di.o.obj
│ │ │ │ │ │ ├── cs_ipvec_dl.o.obj
│ │ │ │ │ │ ├── cs_leaf_ci.o.obj
│ │ │ │ │ │ ├── cs_leaf_cl.o.obj
│ │ │ │ │ │ ├── cs_leaf_di.o.obj
│ │ │ │ │ │ ├── cs_leaf_dl.o.obj
│ │ │ │ │ │ ├── cs_load_ci.o.obj
│ │ │ │ │ │ ├── cs_load_cl.o.obj
│ │ │ │ │ │ ├── cs_load_di.o.obj
│ │ │ │ │ │ ├── cs_load_dl.o.obj
│ │ │ │ │ │ ├── cs_lsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_lsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_lsolve_di.o.obj
│ │ │ │ │ │ ├── cs_lsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_di.o.obj
│ │ │ │ │ │ ├── cs_ltsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_lu_ci.o.obj
│ │ │ │ │ │ ├── cs_lu_cl.o.obj
│ │ │ │ │ │ ├── cs_lu_di.o.obj
│ │ │ │ │ │ ├── cs_lu_dl.o.obj
│ │ │ │ │ │ ├── cs_lusol_ci.o.obj
│ │ │ │ │ │ ├── cs_lusol_cl.o.obj
│ │ │ │ │ │ ├── cs_lusol_di.o.obj
│ │ │ │ │ │ ├── cs_lusol_dl.o.obj
│ │ │ │ │ │ ├── cs_malloc_ci.o.obj
│ │ │ │ │ │ ├── cs_malloc_cl.o.obj
│ │ │ │ │ │ ├── cs_malloc_di.o.obj
│ │ │ │ │ │ ├── cs_malloc_dl.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_ci.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_cl.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_di.o.obj
│ │ │ │ │ │ ├── cs_maxtrans_dl.o.obj
│ │ │ │ │ │ ├── cs_multiply_ci.o.obj
│ │ │ │ │ │ ├── cs_multiply_cl.o.obj
│ │ │ │ │ │ ├── cs_multiply_di.o.obj
│ │ │ │ │ │ ├── cs_multiply_dl.o.obj
│ │ │ │ │ │ ├── cs_norm_ci.o.obj
│ │ │ │ │ │ ├── cs_norm_cl.o.obj
│ │ │ │ │ │ ├── cs_norm_di.o.obj
│ │ │ │ │ │ ├── cs_norm_dl.o.obj
│ │ │ │ │ │ ├── cs_permute_ci.o.obj
│ │ │ │ │ │ ├── cs_permute_cl.o.obj
│ │ │ │ │ │ ├── cs_permute_di.o.obj
│ │ │ │ │ │ ├── cs_permute_dl.o.obj
│ │ │ │ │ │ ├── cs_pinv_ci.o.obj
│ │ │ │ │ │ ├── cs_pinv_cl.o.obj
│ │ │ │ │ │ ├── cs_pinv_di.o.obj
│ │ │ │ │ │ ├── cs_pinv_dl.o.obj
│ │ │ │ │ │ ├── cs_post_ci.o.obj
│ │ │ │ │ │ ├── cs_post_cl.o.obj
│ │ │ │ │ │ ├── cs_post_di.o.obj
│ │ │ │ │ │ ├── cs_post_dl.o.obj
│ │ │ │ │ │ ├── cs_print_ci.o.obj
│ │ │ │ │ │ ├── cs_print_cl.o.obj
│ │ │ │ │ │ ├── cs_print_di.o.obj
│ │ │ │ │ │ ├── cs_print_dl.o.obj
│ │ │ │ │ │ ├── cs_pvec_ci.o.obj
│ │ │ │ │ │ ├── cs_pvec_cl.o.obj
│ │ │ │ │ │ ├── cs_pvec_di.o.obj
│ │ │ │ │ │ ├── cs_pvec_dl.o.obj
│ │ │ │ │ │ ├── cs_qr_ci.o.obj
│ │ │ │ │ │ ├── cs_qr_cl.o.obj
│ │ │ │ │ │ ├── cs_qr_di.o.obj
│ │ │ │ │ │ ├── cs_qr_dl.o.obj
│ │ │ │ │ │ ├── cs_qrsol_ci.o.obj
│ │ │ │ │ │ ├── cs_qrsol_cl.o.obj
│ │ │ │ │ │ ├── cs_qrsol_di.o.obj
│ │ │ │ │ │ ├── cs_qrsol_dl.o.obj
│ │ │ │ │ │ ├── cs_randperm_ci.o.obj
│ │ │ │ │ │ ├── cs_randperm_cl.o.obj
│ │ │ │ │ │ ├── cs_randperm_di.o.obj
│ │ │ │ │ │ ├── cs_randperm_dl.o.obj
│ │ │ │ │ │ ├── cs_reach_ci.o.obj
│ │ │ │ │ │ ├── cs_reach_cl.o.obj
│ │ │ │ │ │ ├── cs_reach_di.o.obj
│ │ │ │ │ │ ├── cs_reach_dl.o.obj
│ │ │ │ │ │ ├── cs_scatter_ci.o.obj
│ │ │ │ │ │ ├── cs_scatter_cl.o.obj
│ │ │ │ │ │ ├── cs_scatter_di.o.obj
│ │ │ │ │ │ ├── cs_scatter_dl.o.obj
│ │ │ │ │ │ ├── cs_scc_ci.o.obj
│ │ │ │ │ │ ├── cs_scc_cl.o.obj
│ │ │ │ │ │ ├── cs_scc_di.o.obj
│ │ │ │ │ │ ├── cs_scc_dl.o.obj
│ │ │ │ │ │ ├── cs_schol_ci.o.obj
│ │ │ │ │ │ ├── cs_schol_cl.o.obj
│ │ │ │ │ │ ├── cs_schol_di.o.obj
│ │ │ │ │ │ ├── cs_schol_dl.o.obj
│ │ │ │ │ │ ├── cs_spsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_spsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_spsolve_di.o.obj
│ │ │ │ │ │ ├── cs_spsolve_dl.o.obj
│ │ │ │ │ │ ├── cs_sqr_ci.o.obj
│ │ │ │ │ │ ├── cs_sqr_cl.o.obj
│ │ │ │ │ │ ├── cs_sqr_di.o.obj
│ │ │ │ │ │ ├── cs_sqr_dl.o.obj
│ │ │ │ │ │ ├── cs_symperm_ci.o.obj
│ │ │ │ │ │ ├── cs_symperm_cl.o.obj
│ │ │ │ │ │ ├── cs_symperm_di.o.obj
│ │ │ │ │ │ ├── cs_symperm_dl.o.obj
│ │ │ │ │ │ ├── cs_tdfs_ci.o.obj
│ │ │ │ │ │ ├── cs_tdfs_cl.o.obj
│ │ │ │ │ │ ├── cs_tdfs_di.o.obj
│ │ │ │ │ │ ├── cs_tdfs_dl.o.obj
│ │ │ │ │ │ ├── cs_transpose_ci.o.obj
│ │ │ │ │ │ ├── cs_transpose_cl.o.obj
│ │ │ │ │ │ ├── cs_transpose_di.o.obj
│ │ │ │ │ │ ├── cs_transpose_dl.o.obj
│ │ │ │ │ │ ├── cs_updown_ci.o.obj
│ │ │ │ │ │ ├── cs_updown_cl.o.obj
│ │ │ │ │ │ ├── cs_updown_di.o.obj
│ │ │ │ │ │ ├── cs_updown_dl.o.obj
│ │ │ │ │ │ ├── cs_usolve_ci.o.obj
│ │ │ │ │ │ ├── cs_usolve_cl.o.obj
│ │ │ │ │ │ ├── cs_usolve_di.o.obj
│ │ │ │ │ │ ├── cs_usolve_dl.o.obj
│ │ │ │ │ │ ├── cs_util_ci.o.obj
│ │ │ │ │ │ ├── cs_util_cl.o.obj
│ │ │ │ │ │ ├── cs_util_di.o.obj
│ │ │ │ │ │ ├── cs_util_dl.o.obj
│ │ │ │ │ │ ├── cs_utsolve_ci.o.obj
│ │ │ │ │ │ ├── cs_utsolve_cl.o.obj
│ │ │ │ │ │ ├── cs_utsolve_di.o.obj
│ │ │ │ │ │ ├── cs_utsolve_dl.o.obj
│ │ │ │ │ │ ├── cxsparse.log
│ │ │ │ │ │ ├── cxsparse.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── cxsparse.lastbuildstate
│ │ │ │ │ │ │ ├── cxsparse.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── CXSparse.sln
│ │ │ │ ├── cxsparse.vcxproj
│ │ │ │ ├── cxsparse.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── KLU
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── klu.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── klu_analyze_given.o.obj
│ │ │ │ │ │ ├── klu_analyze.o.obj
│ │ │ │ │ │ ├── klu_d_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_d_dump.o.obj
│ │ │ │ │ │ ├── klu_defaults.o.obj
│ │ │ │ │ │ ├── klu_d_extract.o.obj
│ │ │ │ │ │ ├── klu_d_factor.o.obj
│ │ │ │ │ │ ├── klu_d_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_d_kernel.o.obj
│ │ │ │ │ │ ├── klu_d.o.obj
│ │ │ │ │ │ ├── klu_d_refactor.o.obj
│ │ │ │ │ │ ├── klu_d_scale.o.obj
│ │ │ │ │ │ ├── klu_d_solve.o.obj
│ │ │ │ │ │ ├── klu_d_sort.o.obj
│ │ │ │ │ │ ├── klu_d_tsolve.o.obj
│ │ │ │ │ │ ├── klu_free_symbolic.o.obj
│ │ │ │ │ │ ├── klu_l_analyze_given.o.obj
│ │ │ │ │ │ ├── klu_l_analyze.o.obj
│ │ │ │ │ │ ├── klu_l_defaults.o.obj
│ │ │ │ │ │ ├── klu_l_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_l_dump.o.obj
│ │ │ │ │ │ ├── klu_l_extract.o.obj
│ │ │ │ │ │ ├── klu_l_factor.o.obj
│ │ │ │ │ │ ├── klu_l_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_l_free_symbolic.o.obj
│ │ │ │ │ │ ├── klu_l_kernel.o.obj
│ │ │ │ │ │ ├── klu_l_memory.o.obj
│ │ │ │ │ │ ├── klu.log
│ │ │ │ │ │ ├── klu_l.o.obj
│ │ │ │ │ │ ├── klu_l_refactor.o.obj
│ │ │ │ │ │ ├── klu_l_scale.o.obj
│ │ │ │ │ │ ├── klu_l_solve.o.obj
│ │ │ │ │ │ ├── klu_l_sort.o.obj
│ │ │ │ │ │ ├── klu_l_tsolve.o.obj
│ │ │ │ │ │ ├── klu_memory.o.obj
│ │ │ │ │ │ ├── klu.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── klu.lastbuildstate
│ │ │ │ │ │ │ ├── klu.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── klu_z_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_z_dump.o.obj
│ │ │ │ │ │ ├── klu_z_extract.o.obj
│ │ │ │ │ │ ├── klu_z_factor.o.obj
│ │ │ │ │ │ ├── klu_z_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_z_kernel.o.obj
│ │ │ │ │ │ ├── klu_zl_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_zl_dump.o.obj
│ │ │ │ │ │ ├── klu_zl_extract.o.obj
│ │ │ │ │ │ ├── klu_zl_factor.o.obj
│ │ │ │ │ │ ├── klu_zl_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_zl_kernel.o.obj
│ │ │ │ │ │ ├── klu_zl.o.obj
│ │ │ │ │ │ ├── klu_zl_refactor.o.obj
│ │ │ │ │ │ ├── klu_zl_scale.o.obj
│ │ │ │ │ │ ├── klu_zl_solve.o.obj
│ │ │ │ │ │ ├── klu_zl_sort.o.obj
│ │ │ │ │ │ ├── klu_zl_tsolve.o.obj
│ │ │ │ │ │ ├── klu_z.o.obj
│ │ │ │ │ │ ├── klu_z_refactor.o.obj
│ │ │ │ │ │ ├── klu_z_scale.o.obj
│ │ │ │ │ │ ├── klu_z_solve.o.obj
│ │ │ │ │ │ ├── klu_z_sort.o.obj
│ │ │ │ │ │ ├── klu_z_tsolve.o.obj
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── klu_analyze_given.o.obj
│ │ │ │ │ │ ├── klu_analyze.o.obj
│ │ │ │ │ │ ├── klu_d_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_d_dump.o.obj
│ │ │ │ │ │ ├── klu_defaults.o.obj
│ │ │ │ │ │ ├── klu_d_extract.o.obj
│ │ │ │ │ │ ├── klu_d_factor.o.obj
│ │ │ │ │ │ ├── klu_d_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_d_kernel.o.obj
│ │ │ │ │ │ ├── klu_d.o.obj
│ │ │ │ │ │ ├── klu_d_refactor.o.obj
│ │ │ │ │ │ ├── klu_d_scale.o.obj
│ │ │ │ │ │ ├── klu_d_solve.o.obj
│ │ │ │ │ │ ├── klu_d_sort.o.obj
│ │ │ │ │ │ ├── klu_d_tsolve.o.obj
│ │ │ │ │ │ ├── klu_free_symbolic.o.obj
│ │ │ │ │ │ ├── klu_l_analyze_given.o.obj
│ │ │ │ │ │ ├── klu_l_analyze.o.obj
│ │ │ │ │ │ ├── klu_l_defaults.o.obj
│ │ │ │ │ │ ├── klu_l_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_l_dump.o.obj
│ │ │ │ │ │ ├── klu_l_extract.o.obj
│ │ │ │ │ │ ├── klu_l_factor.o.obj
│ │ │ │ │ │ ├── klu_l_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_l_free_symbolic.o.obj
│ │ │ │ │ │ ├── klu_l_kernel.o.obj
│ │ │ │ │ │ ├── klu_l_memory.o.obj
│ │ │ │ │ │ ├── klu.log
│ │ │ │ │ │ ├── klu_l.o.obj
│ │ │ │ │ │ ├── klu_l_refactor.o.obj
│ │ │ │ │ │ ├── klu_l_scale.o.obj
│ │ │ │ │ │ ├── klu_l_solve.o.obj
│ │ │ │ │ │ ├── klu_l_sort.o.obj
│ │ │ │ │ │ ├── klu_l_tsolve.o.obj
│ │ │ │ │ │ ├── klu_memory.o.obj
│ │ │ │ │ │ ├── klu.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── klu.lastbuildstate
│ │ │ │ │ │ │ ├── klu.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── klu_z_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_z_dump.o.obj
│ │ │ │ │ │ ├── klu_z_extract.o.obj
│ │ │ │ │ │ ├── klu_z_factor.o.obj
│ │ │ │ │ │ ├── klu_z_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_z_kernel.o.obj
│ │ │ │ │ │ ├── klu_zl_diagnostics.o.obj
│ │ │ │ │ │ ├── klu_zl_dump.o.obj
│ │ │ │ │ │ ├── klu_zl_extract.o.obj
│ │ │ │ │ │ ├── klu_zl_factor.o.obj
│ │ │ │ │ │ ├── klu_zl_free_numeric.o.obj
│ │ │ │ │ │ ├── klu_zl_kernel.o.obj
│ │ │ │ │ │ ├── klu_zl.o.obj
│ │ │ │ │ │ ├── klu_zl_refactor.o.obj
│ │ │ │ │ │ ├── klu_zl_scale.o.obj
│ │ │ │ │ │ ├── klu_zl_solve.o.obj
│ │ │ │ │ │ ├── klu_zl_sort.o.obj
│ │ │ │ │ │ ├── klu_zl_tsolve.o.obj
│ │ │ │ │ │ ├── klu_z.o.obj
│ │ │ │ │ │ ├── klu_z_refactor.o.obj
│ │ │ │ │ │ ├── klu_z_scale.o.obj
│ │ │ │ │ │ ├── klu_z_solve.o.obj
│ │ │ │ │ │ ├── klu_z_sort.o.obj
│ │ │ │ │ │ ├── klu_z_tsolve.o.obj
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── KLU.sln
│ │ │ │ ├── klu.vcxproj
│ │ │ │ └── klu.vcxproj.filters
│ │ │ ├── LDL
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── ldl.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── ldl.log
│ │ │ │ │ │ ├── ldll.o.obj
│ │ │ │ │ │ ├── ldl.o.obj
│ │ │ │ │ │ ├── ldl.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── ldl.lastbuildstate
│ │ │ │ │ │ │ ├── ldl.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── ldl.log
│ │ │ │ │ │ ├── ldll.o.obj
│ │ │ │ │ │ ├── ldl.o.obj
│ │ │ │ │ │ ├── ldl.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── ldl.lastbuildstate
│ │ │ │ │ │ │ ├── ldl.write.1u.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── LDL.sln
│ │ │ │ ├── ldl.vcxproj
│ │ │ │ └── ldl.vcxproj.filters
│ │ │ ├── metis-5.1.0
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── include
│ │ │ │ │ ├── CMakeFiles
│ │ │ │ │ │ ├── generate.stamp
│ │ │ │ │ │ └── generate.stamp.depend
│ │ │ │ │ ├── cmake_install.cmake
│ │ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ │ └── INSTALL.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── libmetis
│ │ │ │ │ ├── CMakeFiles
│ │ │ │ │ │ ├── generate.stamp
│ │ │ │ │ │ └── generate.stamp.depend
│ │ │ │ │ ├── cmake_install.cmake
│ │ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ │ ├── metis.dir
│ │ │ │ │ │ ├── Debug
│ │ │ │ │ │ │ ├── __
│ │ │ │ │ │ │ │ └── GKlib
│ │ │ │ │ │ │ │ ├── graph.c.obj
│ │ │ │ │ │ │ │ └── util.c.obj
│ │ │ │ │ │ │ ├── auxapi.obj
│ │ │ │ │ │ │ ├── b64.obj
│ │ │ │ │ │ │ ├── balance.obj
│ │ │ │ │ │ │ ├── blas.obj
│ │ │ │ │ │ │ ├── bucketsort.obj
│ │ │ │ │ │ │ ├── checkgraph.obj
│ │ │ │ │ │ │ ├── coarsen.obj
│ │ │ │ │ │ │ ├── compress.obj
│ │ │ │ │ │ │ ├── contig.obj
│ │ │ │ │ │ │ ├── csr.obj
│ │ │ │ │ │ │ ├── debug.obj
│ │ │ │ │ │ │ ├── error.obj
│ │ │ │ │ │ │ ├── evaluate.obj
│ │ │ │ │ │ │ ├── fkvkselect.obj
│ │ │ │ │ │ │ ├── fm.obj
│ │ │ │ │ │ │ ├── fortran.obj
│ │ │ │ │ │ │ ├── frename.obj
│ │ │ │ │ │ │ ├── fs.obj
│ │ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ │ ├── gklib.obj
│ │ │ │ │ │ │ ├── gkregex.obj
│ │ │ │ │ │ │ ├── graph.c.obj
│ │ │ │ │ │ │ ├── htable.obj
│ │ │ │ │ │ │ ├── initpart.obj
│ │ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ │ ├── itemsets.obj
│ │ │ │ │ │ │ ├── kmetis.obj
│ │ │ │ │ │ │ ├── kwayfm.obj
│ │ │ │ │ │ │ ├── kwayrefine.obj
│ │ │ │ │ │ │ ├── mcore.obj
│ │ │ │ │ │ │ ├── mcutil.obj
│ │ │ │ │ │ │ ├── memory.obj
│ │ │ │ │ │ │ ├── mesh.obj
│ │ │ │ │ │ │ ├── meshpart.obj
│ │ │ │ │ │ │ ├── metis.log
│ │ │ │ │ │ │ ├── metis.pdb
│ │ │ │ │ │ │ ├── metis.tlog
│ │ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ │ ├── Lib.command.1.tlog
│ │ │ │ │ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ │ │ │ │ ├── Lib-link.write.1.tlog
│ │ │ │ │ │ │ │ └── metis.lastbuildstate
│ │ │ │ │ │ │ ├── minconn.obj
│ │ │ │ │ │ │ ├── mincover.obj
│ │ │ │ │ │ │ ├── mmd.obj
│ │ │ │ │ │ │ ├── ometis.obj
│ │ │ │ │ │ │ ├── omp.obj
│ │ │ │ │ │ │ ├── options.obj
│ │ │ │ │ │ │ ├── parmetis.obj
│ │ │ │ │ │ │ ├── pdb.obj
│ │ │ │ │ │ │ ├── pmetis.obj
│ │ │ │ │ │ │ ├── pqueue.obj
│ │ │ │ │ │ │ ├── random.obj
│ │ │ │ │ │ │ ├── refine.obj
│ │ │ │ │ │ │ ├── rw.obj
│ │ │ │ │ │ │ ├── separator.obj
│ │ │ │ │ │ │ ├── seq.obj
│ │ │ │ │ │ │ ├── sfm.obj
│ │ │ │ │ │ │ ├── sort.obj
│ │ │ │ │ │ │ ├── srefine.obj
│ │ │ │ │ │ │ ├── stat.obj
│ │ │ │ │ │ │ ├── string.obj
│ │ │ │ │ │ │ ├── timers.obj
│ │ │ │ │ │ │ ├── timing.obj
│ │ │ │ │ │ │ ├── tokenizer.obj
│ │ │ │ │ │ │ ├── util.c.obj
│ │ │ │ │ │ │ └── wspace.obj
│ │ │ │ │ │ └── Release
│ │ │ │ │ │ ├── __
│ │ │ │ │ │ │ └── GKlib
│ │ │ │ │ │ │ ├── graph.c.obj
│ │ │ │ │ │ │ └── util.c.obj
│ │ │ │ │ │ ├── auxapi.obj
│ │ │ │ │ │ ├── b64.obj
│ │ │ │ │ │ ├── balance.obj
│ │ │ │ │ │ ├── blas.obj
│ │ │ │ │ │ ├── bucketsort.obj
│ │ │ │ │ │ ├── checkgraph.obj
│ │ │ │ │ │ ├── coarsen.obj
│ │ │ │ │ │ ├── compress.obj
│ │ │ │ │ │ ├── contig.obj
│ │ │ │ │ │ ├── csr.obj
│ │ │ │ │ │ ├── debug.obj
│ │ │ │ │ │ ├── error.obj
│ │ │ │ │ │ ├── evaluate.obj
│ │ │ │ │ │ ├── fkvkselect.obj
│ │ │ │ │ │ ├── fm.obj
│ │ │ │ │ │ ├── fortran.obj
│ │ │ │ │ │ ├── frename.obj
│ │ │ │ │ │ ├── fs.obj
│ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ ├── gklib.obj
│ │ │ │ │ │ ├── gkregex.obj
│ │ │ │ │ │ ├── graph.c.obj
│ │ │ │ │ │ ├── htable.obj
│ │ │ │ │ │ ├── initpart.obj
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── itemsets.obj
│ │ │ │ │ │ ├── kmetis.obj
│ │ │ │ │ │ ├── kwayfm.obj
│ │ │ │ │ │ ├── kwayrefine.obj
│ │ │ │ │ │ ├── mcore.obj
│ │ │ │ │ │ ├── mcutil.obj
│ │ │ │ │ │ ├── memory.obj
│ │ │ │ │ │ ├── mesh.obj
│ │ │ │ │ │ ├── meshpart.obj
│ │ │ │ │ │ ├── metis.log
│ │ │ │ │ │ ├── metis.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── Lib.command.1.tlog
│ │ │ │ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ │ │ │ ├── Lib-link.write.1.tlog
│ │ │ │ │ │ │ └── metis.lastbuildstate
│ │ │ │ │ │ ├── minconn.obj
│ │ │ │ │ │ ├── mincover.obj
│ │ │ │ │ │ ├── mmd.obj
│ │ │ │ │ │ ├── ometis.obj
│ │ │ │ │ │ ├── omp.obj
│ │ │ │ │ │ ├── options.obj
│ │ │ │ │ │ ├── parmetis.obj
│ │ │ │ │ │ ├── pdb.obj
│ │ │ │ │ │ ├── pmetis.obj
│ │ │ │ │ │ ├── pqueue.obj
│ │ │ │ │ │ ├── random.obj
│ │ │ │ │ │ ├── refine.obj
│ │ │ │ │ │ ├── rw.obj
│ │ │ │ │ │ ├── separator.obj
│ │ │ │ │ │ ├── seq.obj
│ │ │ │ │ │ ├── sfm.obj
│ │ │ │ │ │ ├── sort.obj
│ │ │ │ │ │ ├── srefine.obj
│ │ │ │ │ │ ├── stat.obj
│ │ │ │ │ │ ├── string.obj
│ │ │ │ │ │ ├── timers.obj
│ │ │ │ │ │ ├── timing.obj
│ │ │ │ │ │ ├── tokenizer.obj
│ │ │ │ │ │ ├── util.c.obj
│ │ │ │ │ │ └── wspace.obj
│ │ │ │ │ ├── metis.vcxproj
│ │ │ │ │ └── metis.vcxproj.filters
│ │ │ │ ├── METIS.sln
│ │ │ │ └── programs
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── cmpfillin.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cmpfillin.log
│ │ │ │ │ │ ├── cmpfillin.obj
│ │ │ │ │ │ ├── cmpfillin.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── cmpfillin.lastbuildstate
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── smbfactor.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── cmpfillin.log
│ │ │ │ │ ├── cmpfillin.obj
│ │ │ │ │ ├── cmpfillin.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── cmpfillin.lastbuildstate
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── io.obj
│ │ │ │ │ └── smbfactor.obj
│ │ │ │ ├── cmpfillin.vcxproj
│ │ │ │ ├── cmpfillin.vcxproj.filters
│ │ │ │ ├── gpmetis.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cmdline_gpmetis.obj
│ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ ├── gpmetis.log
│ │ │ │ │ │ ├── gpmetis.obj
│ │ │ │ │ │ ├── gpmetis.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── gpmetis.lastbuildstate
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── stat.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── cmdline_gpmetis.obj
│ │ │ │ │ ├── getopt.obj
│ │ │ │ │ ├── gpmetis.log
│ │ │ │ │ ├── gpmetis.obj
│ │ │ │ │ ├── gpmetis.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── gpmetis.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ ├── io.obj
│ │ │ │ │ └── stat.obj
│ │ │ │ ├── gpmetis.vcxproj
│ │ │ │ ├── gpmetis.vcxproj.filters
│ │ │ │ ├── graphchk.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── graphchk.log
│ │ │ │ │ │ ├── graphchk.obj
│ │ │ │ │ │ ├── graphchk.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── graphchk.lastbuildstate
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── graphchk.log
│ │ │ │ │ ├── graphchk.obj
│ │ │ │ │ ├── graphchk.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── graphchk.lastbuildstate
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ └── link.write.1.tlog
│ │ │ │ │ └── io.obj
│ │ │ │ ├── graphchk.vcxproj
│ │ │ │ ├── graphchk.vcxproj.filters
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── m2gmetis.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cmdline_m2gmetis.obj
│ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── m2gmetis.log
│ │ │ │ │ │ ├── m2gmetis.obj
│ │ │ │ │ │ ├── m2gmetis.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ └── m2gmetis.lastbuildstate
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── cmdline_m2gmetis.obj
│ │ │ │ │ ├── getopt.obj
│ │ │ │ │ ├── io.obj
│ │ │ │ │ ├── m2gmetis.log
│ │ │ │ │ ├── m2gmetis.obj
│ │ │ │ │ └── m2gmetis.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ └── m2gmetis.lastbuildstate
│ │ │ │ ├── m2gmetis.vcxproj
│ │ │ │ ├── m2gmetis.vcxproj.filters
│ │ │ │ ├── mpmetis.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cmdline_mpmetis.obj
│ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── mpmetis.log
│ │ │ │ │ │ ├── mpmetis.obj
│ │ │ │ │ │ ├── mpmetis.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ └── mpmetis.lastbuildstate
│ │ │ │ │ │ ├── stat.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── cmdline_mpmetis.obj
│ │ │ │ │ ├── getopt.obj
│ │ │ │ │ ├── io.obj
│ │ │ │ │ ├── mpmetis.log
│ │ │ │ │ ├── mpmetis.obj
│ │ │ │ │ ├── mpmetis.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ └── mpmetis.lastbuildstate
│ │ │ │ │ └── stat.obj
│ │ │ │ ├── mpmetis.vcxproj
│ │ │ │ ├── mpmetis.vcxproj.filters
│ │ │ │ ├── ndmetis.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── cmdline_ndmetis.obj
│ │ │ │ │ │ ├── getopt.obj
│ │ │ │ │ │ ├── io.obj
│ │ │ │ │ │ ├── ndmetis.log
│ │ │ │ │ │ ├── ndmetis.obj
│ │ │ │ │ │ ├── ndmetis.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ └── ndmetis.lastbuildstate
│ │ │ │ │ │ ├── smbfactor.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── cmdline_ndmetis.obj
│ │ │ │ │ ├── getopt.obj
│ │ │ │ │ ├── io.obj
│ │ │ │ │ ├── ndmetis.log
│ │ │ │ │ ├── ndmetis.obj
│ │ │ │ │ ├── ndmetis.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ └── ndmetis.lastbuildstate
│ │ │ │ │ └── smbfactor.obj
│ │ │ │ ├── ndmetis.vcxproj
│ │ │ │ └── ndmetis.vcxproj.filters
│ │ │ ├── SPQR
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── spqr.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ ├── spqr_1colamd.obj
│ │ │ │ │ │ ├── spqr_1factor.obj
│ │ │ │ │ │ ├── spqr_1fixed.obj
│ │ │ │ │ │ ├── spqr_analyze.obj
│ │ │ │ │ │ ├── spqr_append.obj
│ │ │ │ │ │ ├── spqr_assemble.obj
│ │ │ │ │ │ ├── spqr_cpack.obj
│ │ │ │ │ │ ├── spqr_csize.obj
│ │ │ │ │ │ ├── spqr_cumsum.obj
│ │ │ │ │ │ ├── spqr_debug.obj
│ │ │ │ │ │ ├── spqr_factorize.obj
│ │ │ │ │ │ ├── spqr_fcsize.obj
│ │ │ │ │ │ ├── spqr_freefac.obj
│ │ │ │ │ │ ├── spqr_freenum.obj
│ │ │ │ │ │ ├── spqr_freesym.obj
│ │ │ │ │ │ ├── spqr_front.obj
│ │ │ │ │ │ ├── spqr_fsize.obj
│ │ │ │ │ │ ├── spqrgpu_buildAssemblyMaps.obj
│ │ │ │ │ │ ├── spqrgpu_computeFrontStaging.obj
│ │ │ │ │ │ ├── spqrgpu_kernel.obj
│ │ │ │ │ │ ├── spqr_happly.obj
│ │ │ │ │ │ ├── spqr_happly_work.obj
│ │ │ │ │ │ ├── spqr_hpinv.obj
│ │ │ │ │ │ ├── spqr_kernel.obj
│ │ │ │ │ │ ├── spqr_larftb.obj
│ │ │ │ │ │ ├── spqr.log
│ │ │ │ │ │ ├── spqr_maxcolnorm.obj
│ │ │ │ │ │ ├── spqr_panel.obj
│ │ │ │ │ │ ├── spqr_parallel.obj
│ │ │ │ │ │ ├── spqr_rconvert.obj
│ │ │ │ │ │ ├── spqr_rcount.obj
│ │ │ │ │ │ ├── spqr_rhpack.obj
│ │ │ │ │ │ ├── spqr_rmap.obj
│ │ │ │ │ │ ├── spqr_rsolve.obj
│ │ │ │ │ │ ├── spqr_shift.obj
│ │ │ │ │ │ ├── spqr_stranspose1.obj
│ │ │ │ │ │ ├── spqr_stranspose2.obj
│ │ │ │ │ │ ├── spqr.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ ├── spqr.lastbuildstate
│ │ │ │ │ │ │ └── spqr.write.1u.tlog
│ │ │ │ │ │ ├── spqr_tol.obj
│ │ │ │ │ │ ├── spqr_trapezoidal.obj
│ │ │ │ │ │ ├── spqr_type.obj
│ │ │ │ │ │ ├── SuiteSparseQR_C.obj
│ │ │ │ │ │ ├── SuiteSparseQR_expert.obj
│ │ │ │ │ │ ├── SuiteSparseQR.obj
│ │ │ │ │ │ ├── SuiteSparseQR_qmult.obj
│ │ │ │ │ │ └── vc141.pdb
│ │ │ │ │ ├── MinSizeRel
│ │ │ │ │ │ └── objects.txt
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── exports.def
│ │ │ │ │ │ ├── objects.txt
│ │ │ │ │ │ ├── spqr_1colamd.obj
│ │ │ │ │ │ ├── spqr_1factor.obj
│ │ │ │ │ │ ├── spqr_1fixed.obj
│ │ │ │ │ │ ├── spqr_analyze.obj
│ │ │ │ │ │ ├── spqr_append.obj
│ │ │ │ │ │ ├── spqr_assemble.obj
│ │ │ │ │ │ ├── spqr_cpack.obj
│ │ │ │ │ │ ├── spqr_csize.obj
│ │ │ │ │ │ ├── spqr_cumsum.obj
│ │ │ │ │ │ ├── spqr_debug.obj
│ │ │ │ │ │ ├── spqr_factorize.obj
│ │ │ │ │ │ ├── spqr_fcsize.obj
│ │ │ │ │ │ ├── spqr_freefac.obj
│ │ │ │ │ │ ├── spqr_freenum.obj
│ │ │ │ │ │ ├── spqr_freesym.obj
│ │ │ │ │ │ ├── spqr_front.obj
│ │ │ │ │ │ ├── spqr_fsize.obj
│ │ │ │ │ │ ├── spqrgpu_buildAssemblyMaps.obj
│ │ │ │ │ │ ├── spqrgpu_computeFrontStaging.obj
│ │ │ │ │ │ ├── spqrgpu_kernel.obj
│ │ │ │ │ │ ├── spqr_happly.obj
│ │ │ │ │ │ ├── spqr_happly_work.obj
│ │ │ │ │ │ ├── spqr_hpinv.obj
│ │ │ │ │ │ ├── spqr_kernel.obj
│ │ │ │ │ │ ├── spqr_larftb.obj
│ │ │ │ │ │ ├── spqr.log
│ │ │ │ │ │ ├── spqr_maxcolnorm.obj
│ │ │ │ │ │ ├── spqr_panel.obj
│ │ │ │ │ │ ├── spqr_parallel.obj
│ │ │ │ │ │ ├── spqr_rconvert.obj
│ │ │ │ │ │ ├── spqr_rcount.obj
│ │ │ │ │ │ ├── spqr_rhpack.obj
│ │ │ │ │ │ ├── spqr_rmap.obj
│ │ │ │ │ │ ├── spqr_rsolve.obj
│ │ │ │ │ │ ├── spqr_shift.obj
│ │ │ │ │ │ ├── spqr_stranspose1.obj
│ │ │ │ │ │ ├── spqr_stranspose2.obj
│ │ │ │ │ │ ├── spqr.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ │ ├── spqr.lastbuildstate
│ │ │ │ │ │ │ └── spqr.write.1u.tlog
│ │ │ │ │ │ ├── spqr_tol.obj
│ │ │ │ │ │ ├── spqr_trapezoidal.obj
│ │ │ │ │ │ ├── spqr_type.obj
│ │ │ │ │ │ ├── SuiteSparseQR_C.obj
│ │ │ │ │ │ ├── SuiteSparseQR_expert.obj
│ │ │ │ │ │ ├── SuiteSparseQR.obj
│ │ │ │ │ │ └── SuiteSparseQR_qmult.obj
│ │ │ │ │ └── RelWithDebInfo
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── SPQR.sln
│ │ │ │ ├── spqr.vcxproj
│ │ │ │ └── spqr.vcxproj.filters
│ │ │ ├── SuiteSparse_config
│ │ │ │ ├── ALL_BUILD.vcxproj
│ │ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ │ ├── CMakeFiles
│ │ │ │ │ ├── generate.stamp
│ │ │ │ │ └── generate.stamp.depend
│ │ │ │ ├── cmake_install.cmake
│ │ │ │ ├── INSTALL.vcxproj
│ │ │ │ ├── INSTALL.vcxproj.filters
│ │ │ │ ├── suitesparseconfig.dir
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── suitespa.3B60E727.tlog
│ │ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ │ ├── Lib.command.1.tlog
│ │ │ │ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ │ │ │ ├── Lib-link.write.1.tlog
│ │ │ │ │ │ │ └── suitesparseconfig.lastbuildstate
│ │ │ │ │ │ ├── suitesparseconfig.log
│ │ │ │ │ │ ├── SuiteSparse_config.obj
│ │ │ │ │ │ └── suitesparseconfig.pdb
│ │ │ │ │ └── Release
│ │ │ │ │ ├── suitespa.3B60E727.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── Lib.command.1.tlog
│ │ │ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ │ │ ├── Lib-link.write.1.tlog
│ │ │ │ │ │ └── suitesparseconfig.lastbuildstate
│ │ │ │ │ ├── suitesparseconfig.log
│ │ │ │ │ └── SuiteSparse_config.obj
│ │ │ │ ├── suitesparseconfig.sln
│ │ │ │ ├── suitesparseconfig.vcxproj
│ │ │ │ └── suitesparseconfig.vcxproj.filters
│ │ │ ├── suitesparse-config.cmake
│ │ │ ├── suitesparse-config-version.cmake
│ │ │ ├── SuiteSparse.sln
│ │ │ ├── suitesparse-targets.cmake
│ │ │ └── UMFPACK
│ │ │ ├── ALL_BUILD.vcxproj
│ │ │ ├── ALL_BUILD.vcxproj.filters
│ │ │ ├── CMakeFiles
│ │ │ │ ├── generate.stamp
│ │ │ │ └── generate.stamp.depend
│ │ │ ├── cmake_install.cmake
│ │ │ ├── INSTALL.vcxproj
│ │ │ ├── INSTALL.vcxproj.filters
│ │ │ ├── umfpack.dir
│ │ │ │ ├── Debug
│ │ │ │ │ ├── exports.def
│ │ │ │ │ ├── objects.txt
│ │ │ │ │ ├── umf_di_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_di_assemble.o.obj
│ │ │ │ │ ├── umf_di_blas3_update.o.obj
│ │ │ │ │ ├── umf_di_build_tuples.o.obj
│ │ │ │ │ ├── umf_di_create_element.o.obj
│ │ │ │ │ ├── umf_di_dump.o.obj
│ │ │ │ │ ├── umf_di_extend_front.o.obj
│ │ │ │ │ ├── umf_di_garbage_collection.o.obj
│ │ │ │ │ ├── umf_di_get_memory.o.obj
│ │ │ │ │ ├── umf_di_grow_front.o.obj
│ │ │ │ │ ├── umf_di_init_front.o.obj
│ │ │ │ │ ├── umf_di_kernel_init.o.obj
│ │ │ │ │ ├── umf_di_kernel.o.obj
│ │ │ │ │ ├── umf_di_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_di_lhsolve.o.obj
│ │ │ │ │ ├── umf_di_local_search.o.obj
│ │ │ │ │ ├── umf_di_lsolve.o.obj
│ │ │ │ │ ├── umf_di_ltsolve.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_di_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_di_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_di_report_vector.o.obj
│ │ │ │ │ ├── umf_di_row_search.o.obj
│ │ │ │ │ ├── umf_di_scale_column.o.obj
│ │ │ │ │ ├── umf_di_scale.o.obj
│ │ │ │ │ ├── umf_di_set_stats.o.obj
│ │ │ │ │ ├── umf_di_solve.o.obj
│ │ │ │ │ ├── umf_di_start_front.o.obj
│ │ │ │ │ ├── umf_di_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_di_store_lu.o.obj
│ │ │ │ │ ├── umf_di_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_di_transpose.o.obj
│ │ │ │ │ ├── umf_di_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_di_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_di_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_di_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_di_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_di_uhsolve.o.obj
│ │ │ │ │ ├── umf_di_usolve.o.obj
│ │ │ │ │ ├── umf_di_utsolve.o.obj
│ │ │ │ │ ├── umf_di_valid_numeric.o.obj
│ │ │ │ │ ├── umf_di_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_dl_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_dl_assemble.o.obj
│ │ │ │ │ ├── umf_dl_blas3_update.o.obj
│ │ │ │ │ ├── umf_dl_build_tuples.o.obj
│ │ │ │ │ ├── umf_dl_create_element.o.obj
│ │ │ │ │ ├── umf_dl_dump.o.obj
│ │ │ │ │ ├── umf_dl_extend_front.o.obj
│ │ │ │ │ ├── umf_dl_garbage_collection.o.obj
│ │ │ │ │ ├── umf_dl_get_memory.o.obj
│ │ │ │ │ ├── umf_dl_grow_front.o.obj
│ │ │ │ │ ├── umf_dl_init_front.o.obj
│ │ │ │ │ ├── umf_dl_kernel_init.o.obj
│ │ │ │ │ ├── umf_dl_kernel.o.obj
│ │ │ │ │ ├── umf_dl_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_dl_lhsolve.o.obj
│ │ │ │ │ ├── umf_dl_local_search.o.obj
│ │ │ │ │ ├── umf_dl_lsolve.o.obj
│ │ │ │ │ ├── umf_dl_ltsolve.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_dl_report_vector.o.obj
│ │ │ │ │ ├── umf_dl_row_search.o.obj
│ │ │ │ │ ├── umf_dl_scale_column.o.obj
│ │ │ │ │ ├── umf_dl_scale.o.obj
│ │ │ │ │ ├── umf_dl_set_stats.o.obj
│ │ │ │ │ ├── umf_dl_solve.o.obj
│ │ │ │ │ ├── umf_dl_start_front.o.obj
│ │ │ │ │ ├── umf_dl_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_dl_store_lu.o.obj
│ │ │ │ │ ├── umf_dl_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_dl_transpose.o.obj
│ │ │ │ │ ├── umf_dl_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_dl_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_dl_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_dl_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_dl_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_dl_uhsolve.o.obj
│ │ │ │ │ ├── umf_dl_usolve.o.obj
│ │ │ │ │ ├── umf_dl_utsolve.o.obj
│ │ │ │ │ ├── umf_dl_valid_numeric.o.obj
│ │ │ │ │ ├── umf_dl_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_i_analyze.o.obj
│ │ │ │ │ ├── umf_i_apply_order.o.obj
│ │ │ │ │ ├── umf_i_cholmod.o.obj
│ │ │ │ │ ├── umf_i_colamd.o.obj
│ │ │ │ │ ├── umf_i_free.o.obj
│ │ │ │ │ ├── umf_i_fsize.o.obj
│ │ │ │ │ ├── umf_i_is_permutation.o.obj
│ │ │ │ │ ├── umf_i_malloc.o.obj
│ │ │ │ │ ├── umf_i_realloc.o.obj
│ │ │ │ │ ├── umf_i_report_perm.o.obj
│ │ │ │ │ ├── umf_i_singletons.o.obj
│ │ │ │ │ ├── umf_l_analyze.o.obj
│ │ │ │ │ ├── umf_l_apply_order.o.obj
│ │ │ │ │ ├── umf_l_cholmod.o.obj
│ │ │ │ │ ├── umf_l_colamd.o.obj
│ │ │ │ │ ├── umf_l_free.o.obj
│ │ │ │ │ ├── umf_l_fsize.o.obj
│ │ │ │ │ ├── umf_l_is_permutation.o.obj
│ │ │ │ │ ├── umf_l_malloc.o.obj
│ │ │ │ │ ├── umf_l_realloc.o.obj
│ │ │ │ │ ├── umf_l_report_perm.o.obj
│ │ │ │ │ ├── umf_l_singletons.o.obj
│ │ │ │ │ ├── umfpack_di_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_di_defaults.o.obj
│ │ │ │ │ ├── umfpack_di_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_di_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_di_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_di_report_control.o.obj
│ │ │ │ │ ├── umfpack_di_report_info.o.obj
│ │ │ │ │ ├── umfpack_di_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_di_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_report_perm.o.obj
│ │ │ │ │ ├── umfpack_di_report_status.o.obj
│ │ │ │ │ ├── umfpack_di_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_di_report_vector.o.obj
│ │ │ │ │ ├── umfpack_di_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_scale.o.obj
│ │ │ │ │ ├── umfpack_di_solve.o.obj
│ │ │ │ │ ├── umfpack_di_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_transpose.o.obj
│ │ │ │ │ ├── umfpack_di_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_di_wsolve.o.obj
│ │ │ │ │ ├── umfpack_dl_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_dl_defaults.o.obj
│ │ │ │ │ ├── umfpack_dl_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_dl_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_dl_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_report_control.o.obj
│ │ │ │ │ ├── umfpack_dl_report_info.o.obj
│ │ │ │ │ ├── umfpack_dl_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_dl_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_report_perm.o.obj
│ │ │ │ │ ├── umfpack_dl_report_status.o.obj
│ │ │ │ │ ├── umfpack_dl_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_dl_report_vector.o.obj
│ │ │ │ │ ├── umfpack_dl_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_scale.o.obj
│ │ │ │ │ ├── umfpack_dl_solve.o.obj
│ │ │ │ │ ├── umfpack_dl_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_transpose.o.obj
│ │ │ │ │ ├── umfpack_dl_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_dl_wsolve.o.obj
│ │ │ │ │ ├── umfpack_gn_global.o.obj
│ │ │ │ │ ├── umfpack_gn_tictoc.o.obj
│ │ │ │ │ ├── umfpack_gn_timer.o.obj
│ │ │ │ │ ├── umfpack.log
│ │ │ │ │ ├── umfpack.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── umfpack.lastbuildstate
│ │ │ │ │ │ └── umfpack.write.1u.tlog
│ │ │ │ │ ├── umfpack_zi_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_zi_defaults.o.obj
│ │ │ │ │ ├── umfpack_zi_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_zi_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_zi_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_report_control.o.obj
│ │ │ │ │ ├── umfpack_zi_report_info.o.obj
│ │ │ │ │ ├── umfpack_zi_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_zi_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_report_perm.o.obj
│ │ │ │ │ ├── umfpack_zi_report_status.o.obj
│ │ │ │ │ ├── umfpack_zi_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_zi_report_vector.o.obj
│ │ │ │ │ ├── umfpack_zi_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_scale.o.obj
│ │ │ │ │ ├── umfpack_zi_solve.o.obj
│ │ │ │ │ ├── umfpack_zi_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_transpose.o.obj
│ │ │ │ │ ├── umfpack_zi_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_zi_wsolve.o.obj
│ │ │ │ │ ├── umfpack_zl_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_zl_defaults.o.obj
│ │ │ │ │ ├── umfpack_zl_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_zl_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_zl_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_report_control.o.obj
│ │ │ │ │ ├── umfpack_zl_report_info.o.obj
│ │ │ │ │ ├── umfpack_zl_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_zl_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_report_perm.o.obj
│ │ │ │ │ ├── umfpack_zl_report_status.o.obj
│ │ │ │ │ ├── umfpack_zl_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_zl_report_vector.o.obj
│ │ │ │ │ ├── umfpack_zl_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_scale.o.obj
│ │ │ │ │ ├── umfpack_zl_solve.o.obj
│ │ │ │ │ ├── umfpack_zl_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_transpose.o.obj
│ │ │ │ │ ├── umfpack_zl_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_zl_wsolve.o.obj
│ │ │ │ │ ├── umf_zi_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_zi_assemble.o.obj
│ │ │ │ │ ├── umf_zi_blas3_update.o.obj
│ │ │ │ │ ├── umf_zi_build_tuples.o.obj
│ │ │ │ │ ├── umf_zi_create_element.o.obj
│ │ │ │ │ ├── umf_zi_dump.o.obj
│ │ │ │ │ ├── umf_zi_extend_front.o.obj
│ │ │ │ │ ├── umf_zi_garbage_collection.o.obj
│ │ │ │ │ ├── umf_zi_get_memory.o.obj
│ │ │ │ │ ├── umf_zi_grow_front.o.obj
│ │ │ │ │ ├── umf_zi_init_front.o.obj
│ │ │ │ │ ├── umf_zi_kernel_init.o.obj
│ │ │ │ │ ├── umf_zi_kernel.o.obj
│ │ │ │ │ ├── umf_zi_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_zi_lhsolve.o.obj
│ │ │ │ │ ├── umf_zi_local_search.o.obj
│ │ │ │ │ ├── umf_zi_lsolve.o.obj
│ │ │ │ │ ├── umf_zi_ltsolve.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_zi_report_vector.o.obj
│ │ │ │ │ ├── umf_zi_row_search.o.obj
│ │ │ │ │ ├── umf_zi_scale_column.o.obj
│ │ │ │ │ ├── umf_zi_scale.o.obj
│ │ │ │ │ ├── umf_zi_set_stats.o.obj
│ │ │ │ │ ├── umf_zi_solve.o.obj
│ │ │ │ │ ├── umf_zi_start_front.o.obj
│ │ │ │ │ ├── umf_zi_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_zi_store_lu.o.obj
│ │ │ │ │ ├── umf_zi_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_zi_transpose.o.obj
│ │ │ │ │ ├── umf_zi_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_zi_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_zi_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_zi_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_zi_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_zi_uhsolve.o.obj
│ │ │ │ │ ├── umf_zi_usolve.o.obj
│ │ │ │ │ ├── umf_zi_utsolve.o.obj
│ │ │ │ │ ├── umf_zi_valid_numeric.o.obj
│ │ │ │ │ ├── umf_zi_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_zl_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_zl_assemble.o.obj
│ │ │ │ │ ├── umf_zl_blas3_update.o.obj
│ │ │ │ │ ├── umf_zl_build_tuples.o.obj
│ │ │ │ │ ├── umf_zl_create_element.o.obj
│ │ │ │ │ ├── umf_zl_dump.o.obj
│ │ │ │ │ ├── umf_zl_extend_front.o.obj
│ │ │ │ │ ├── umf_zl_garbage_collection.o.obj
│ │ │ │ │ ├── umf_zl_get_memory.o.obj
│ │ │ │ │ ├── umf_zl_grow_front.o.obj
│ │ │ │ │ ├── umf_zl_init_front.o.obj
│ │ │ │ │ ├── umf_zl_kernel_init.o.obj
│ │ │ │ │ ├── umf_zl_kernel.o.obj
│ │ │ │ │ ├── umf_zl_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_zl_lhsolve.o.obj
│ │ │ │ │ ├── umf_zl_local_search.o.obj
│ │ │ │ │ ├── umf_zl_lsolve.o.obj
│ │ │ │ │ ├── umf_zl_ltsolve.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_zl_report_vector.o.obj
│ │ │ │ │ ├── umf_zl_row_search.o.obj
│ │ │ │ │ ├── umf_zl_scale_column.o.obj
│ │ │ │ │ ├── umf_zl_scale.o.obj
│ │ │ │ │ ├── umf_zl_set_stats.o.obj
│ │ │ │ │ ├── umf_zl_solve.o.obj
│ │ │ │ │ ├── umf_zl_start_front.o.obj
│ │ │ │ │ ├── umf_zl_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_zl_store_lu.o.obj
│ │ │ │ │ ├── umf_zl_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_zl_transpose.o.obj
│ │ │ │ │ ├── umf_zl_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_zl_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_zl_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_zl_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_zl_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_zl_uhsolve.o.obj
│ │ │ │ │ ├── umf_zl_usolve.o.obj
│ │ │ │ │ ├── umf_zl_utsolve.o.obj
│ │ │ │ │ ├── umf_zl_valid_numeric.o.obj
│ │ │ │ │ ├── umf_zl_valid_symbolic.o.obj
│ │ │ │ │ └── vc141.pdb
│ │ │ │ ├── MinSizeRel
│ │ │ │ │ └── objects.txt
│ │ │ │ ├── Release
│ │ │ │ │ ├── exports.def
│ │ │ │ │ ├── objects.txt
│ │ │ │ │ ├── umf_di_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_di_assemble.o.obj
│ │ │ │ │ ├── umf_di_blas3_update.o.obj
│ │ │ │ │ ├── umf_di_build_tuples.o.obj
│ │ │ │ │ ├── umf_di_create_element.o.obj
│ │ │ │ │ ├── umf_di_dump.o.obj
│ │ │ │ │ ├── umf_di_extend_front.o.obj
│ │ │ │ │ ├── umf_di_garbage_collection.o.obj
│ │ │ │ │ ├── umf_di_get_memory.o.obj
│ │ │ │ │ ├── umf_di_grow_front.o.obj
│ │ │ │ │ ├── umf_di_init_front.o.obj
│ │ │ │ │ ├── umf_di_kernel_init.o.obj
│ │ │ │ │ ├── umf_di_kernel.o.obj
│ │ │ │ │ ├── umf_di_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_di_lhsolve.o.obj
│ │ │ │ │ ├── umf_di_local_search.o.obj
│ │ │ │ │ ├── umf_di_lsolve.o.obj
│ │ │ │ │ ├── umf_di_ltsolve.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_di_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_di_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_di_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_di_report_vector.o.obj
│ │ │ │ │ ├── umf_di_row_search.o.obj
│ │ │ │ │ ├── umf_di_scale_column.o.obj
│ │ │ │ │ ├── umf_di_scale.o.obj
│ │ │ │ │ ├── umf_di_set_stats.o.obj
│ │ │ │ │ ├── umf_di_solve.o.obj
│ │ │ │ │ ├── umf_di_start_front.o.obj
│ │ │ │ │ ├── umf_di_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_di_store_lu.o.obj
│ │ │ │ │ ├── umf_di_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_di_transpose.o.obj
│ │ │ │ │ ├── umf_di_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_di_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_di_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_di_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_di_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_di_uhsolve.o.obj
│ │ │ │ │ ├── umf_di_usolve.o.obj
│ │ │ │ │ ├── umf_di_utsolve.o.obj
│ │ │ │ │ ├── umf_di_valid_numeric.o.obj
│ │ │ │ │ ├── umf_di_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_dl_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_dl_assemble.o.obj
│ │ │ │ │ ├── umf_dl_blas3_update.o.obj
│ │ │ │ │ ├── umf_dl_build_tuples.o.obj
│ │ │ │ │ ├── umf_dl_create_element.o.obj
│ │ │ │ │ ├── umf_dl_dump.o.obj
│ │ │ │ │ ├── umf_dl_extend_front.o.obj
│ │ │ │ │ ├── umf_dl_garbage_collection.o.obj
│ │ │ │ │ ├── umf_dl_get_memory.o.obj
│ │ │ │ │ ├── umf_dl_grow_front.o.obj
│ │ │ │ │ ├── umf_dl_init_front.o.obj
│ │ │ │ │ ├── umf_dl_kernel_init.o.obj
│ │ │ │ │ ├── umf_dl_kernel.o.obj
│ │ │ │ │ ├── umf_dl_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_dl_lhsolve.o.obj
│ │ │ │ │ ├── umf_dl_local_search.o.obj
│ │ │ │ │ ├── umf_dl_lsolve.o.obj
│ │ │ │ │ ├── umf_dl_ltsolve.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_dl_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_dl_report_vector.o.obj
│ │ │ │ │ ├── umf_dl_row_search.o.obj
│ │ │ │ │ ├── umf_dl_scale_column.o.obj
│ │ │ │ │ ├── umf_dl_scale.o.obj
│ │ │ │ │ ├── umf_dl_set_stats.o.obj
│ │ │ │ │ ├── umf_dl_solve.o.obj
│ │ │ │ │ ├── umf_dl_start_front.o.obj
│ │ │ │ │ ├── umf_dl_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_dl_store_lu.o.obj
│ │ │ │ │ ├── umf_dl_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_dl_transpose.o.obj
│ │ │ │ │ ├── umf_dl_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_dl_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_dl_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_dl_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_dl_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_dl_uhsolve.o.obj
│ │ │ │ │ ├── umf_dl_usolve.o.obj
│ │ │ │ │ ├── umf_dl_utsolve.o.obj
│ │ │ │ │ ├── umf_dl_valid_numeric.o.obj
│ │ │ │ │ ├── umf_dl_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_i_analyze.o.obj
│ │ │ │ │ ├── umf_i_apply_order.o.obj
│ │ │ │ │ ├── umf_i_cholmod.o.obj
│ │ │ │ │ ├── umf_i_colamd.o.obj
│ │ │ │ │ ├── umf_i_free.o.obj
│ │ │ │ │ ├── umf_i_fsize.o.obj
│ │ │ │ │ ├── umf_i_is_permutation.o.obj
│ │ │ │ │ ├── umf_i_malloc.o.obj
│ │ │ │ │ ├── umf_i_realloc.o.obj
│ │ │ │ │ ├── umf_i_report_perm.o.obj
│ │ │ │ │ ├── umf_i_singletons.o.obj
│ │ │ │ │ ├── umf_l_analyze.o.obj
│ │ │ │ │ ├── umf_l_apply_order.o.obj
│ │ │ │ │ ├── umf_l_cholmod.o.obj
│ │ │ │ │ ├── umf_l_colamd.o.obj
│ │ │ │ │ ├── umf_l_free.o.obj
│ │ │ │ │ ├── umf_l_fsize.o.obj
│ │ │ │ │ ├── umf_l_is_permutation.o.obj
│ │ │ │ │ ├── umf_l_malloc.o.obj
│ │ │ │ │ ├── umf_l_realloc.o.obj
│ │ │ │ │ ├── umf_l_report_perm.o.obj
│ │ │ │ │ ├── umf_l_singletons.o.obj
│ │ │ │ │ ├── umfpack_di_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_di_defaults.o.obj
│ │ │ │ │ ├── umfpack_di_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_di_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_di_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_di_report_control.o.obj
│ │ │ │ │ ├── umfpack_di_report_info.o.obj
│ │ │ │ │ ├── umfpack_di_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_di_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_report_perm.o.obj
│ │ │ │ │ ├── umfpack_di_report_status.o.obj
│ │ │ │ │ ├── umfpack_di_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_di_report_vector.o.obj
│ │ │ │ │ ├── umfpack_di_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_di_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_scale.o.obj
│ │ │ │ │ ├── umfpack_di_solve.o.obj
│ │ │ │ │ ├── umfpack_di_symbolic.o.obj
│ │ │ │ │ ├── umfpack_di_transpose.o.obj
│ │ │ │ │ ├── umfpack_di_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_di_wsolve.o.obj
│ │ │ │ │ ├── umfpack_dl_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_dl_defaults.o.obj
│ │ │ │ │ ├── umfpack_dl_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_dl_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_dl_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_report_control.o.obj
│ │ │ │ │ ├── umfpack_dl_report_info.o.obj
│ │ │ │ │ ├── umfpack_dl_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_dl_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_report_perm.o.obj
│ │ │ │ │ ├── umfpack_dl_report_status.o.obj
│ │ │ │ │ ├── umfpack_dl_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_dl_report_vector.o.obj
│ │ │ │ │ ├── umfpack_dl_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_dl_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_scale.o.obj
│ │ │ │ │ ├── umfpack_dl_solve.o.obj
│ │ │ │ │ ├── umfpack_dl_symbolic.o.obj
│ │ │ │ │ ├── umfpack_dl_transpose.o.obj
│ │ │ │ │ ├── umfpack_dl_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_dl_wsolve.o.obj
│ │ │ │ │ ├── umfpack_gn_global.o.obj
│ │ │ │ │ ├── umfpack_gn_tictoc.o.obj
│ │ │ │ │ ├── umfpack_gn_timer.o.obj
│ │ │ │ │ ├── umfpack.log
│ │ │ │ │ ├── umfpack.tlog
│ │ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ │ ├── link.command.1.tlog
│ │ │ │ │ │ ├── link.read.1.tlog
│ │ │ │ │ │ ├── link.write.1.tlog
│ │ │ │ │ │ ├── umfpack.lastbuildstate
│ │ │ │ │ │ └── umfpack.write.1u.tlog
│ │ │ │ │ ├── umfpack_zi_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_zi_defaults.o.obj
│ │ │ │ │ ├── umfpack_zi_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_zi_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_zi_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_report_control.o.obj
│ │ │ │ │ ├── umfpack_zi_report_info.o.obj
│ │ │ │ │ ├── umfpack_zi_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_zi_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_report_perm.o.obj
│ │ │ │ │ ├── umfpack_zi_report_status.o.obj
│ │ │ │ │ ├── umfpack_zi_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_zi_report_vector.o.obj
│ │ │ │ │ ├── umfpack_zi_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_zi_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_scale.o.obj
│ │ │ │ │ ├── umfpack_zi_solve.o.obj
│ │ │ │ │ ├── umfpack_zi_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zi_transpose.o.obj
│ │ │ │ │ ├── umfpack_zi_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_zi_wsolve.o.obj
│ │ │ │ │ ├── umfpack_zl_col_to_triplet.o.obj
│ │ │ │ │ ├── umfpack_zl_defaults.o.obj
│ │ │ │ │ ├── umfpack_zl_free_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_free_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_get_determinant.o.obj
│ │ │ │ │ ├── umfpack_zl_get_lunz.o.obj
│ │ │ │ │ ├── umfpack_zl_get_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_get_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_load_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_load_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_qsymbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_report_control.o.obj
│ │ │ │ │ ├── umfpack_zl_report_info.o.obj
│ │ │ │ │ ├── umfpack_zl_report_matrix.o.obj
│ │ │ │ │ ├── umfpack_zl_report_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_report_perm.o.obj
│ │ │ │ │ ├── umfpack_zl_report_status.o.obj
│ │ │ │ │ ├── umfpack_zl_report_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_report_triplet.o.obj
│ │ │ │ │ ├── umfpack_zl_report_vector.o.obj
│ │ │ │ │ ├── umfpack_zl_save_numeric.o.obj
│ │ │ │ │ ├── umfpack_zl_save_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_scale.o.obj
│ │ │ │ │ ├── umfpack_zl_solve.o.obj
│ │ │ │ │ ├── umfpack_zl_symbolic.o.obj
│ │ │ │ │ ├── umfpack_zl_transpose.o.obj
│ │ │ │ │ ├── umfpack_zl_triplet_to_col.o.obj
│ │ │ │ │ ├── umfpack_zl_wsolve.o.obj
│ │ │ │ │ ├── umf_zi_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_zi_assemble.o.obj
│ │ │ │ │ ├── umf_zi_blas3_update.o.obj
│ │ │ │ │ ├── umf_zi_build_tuples.o.obj
│ │ │ │ │ ├── umf_zi_create_element.o.obj
│ │ │ │ │ ├── umf_zi_dump.o.obj
│ │ │ │ │ ├── umf_zi_extend_front.o.obj
│ │ │ │ │ ├── umf_zi_garbage_collection.o.obj
│ │ │ │ │ ├── umf_zi_get_memory.o.obj
│ │ │ │ │ ├── umf_zi_grow_front.o.obj
│ │ │ │ │ ├── umf_zi_init_front.o.obj
│ │ │ │ │ ├── umf_zi_kernel_init.o.obj
│ │ │ │ │ ├── umf_zi_kernel.o.obj
│ │ │ │ │ ├── umf_zi_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_zi_lhsolve.o.obj
│ │ │ │ │ ├── umf_zi_local_search.o.obj
│ │ │ │ │ ├── umf_zi_lsolve.o.obj
│ │ │ │ │ ├── umf_zi_ltsolve.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_zi_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_zi_report_vector.o.obj
│ │ │ │ │ ├── umf_zi_row_search.o.obj
│ │ │ │ │ ├── umf_zi_scale_column.o.obj
│ │ │ │ │ ├── umf_zi_scale.o.obj
│ │ │ │ │ ├── umf_zi_set_stats.o.obj
│ │ │ │ │ ├── umf_zi_solve.o.obj
│ │ │ │ │ ├── umf_zi_start_front.o.obj
│ │ │ │ │ ├── umf_zi_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_zi_store_lu.o.obj
│ │ │ │ │ ├── umf_zi_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_zi_transpose.o.obj
│ │ │ │ │ ├── umf_zi_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_zi_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_zi_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_zi_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_zi_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_zi_uhsolve.o.obj
│ │ │ │ │ ├── umf_zi_usolve.o.obj
│ │ │ │ │ ├── umf_zi_utsolve.o.obj
│ │ │ │ │ ├── umf_zi_valid_numeric.o.obj
│ │ │ │ │ ├── umf_zi_valid_symbolic.o.obj
│ │ │ │ │ ├── umf_zl_assemble_fixq.o.obj
│ │ │ │ │ ├── umf_zl_assemble.o.obj
│ │ │ │ │ ├── umf_zl_blas3_update.o.obj
│ │ │ │ │ ├── umf_zl_build_tuples.o.obj
│ │ │ │ │ ├── umf_zl_create_element.o.obj
│ │ │ │ │ ├── umf_zl_dump.o.obj
│ │ │ │ │ ├── umf_zl_extend_front.o.obj
│ │ │ │ │ ├── umf_zl_garbage_collection.o.obj
│ │ │ │ │ ├── umf_zl_get_memory.o.obj
│ │ │ │ │ ├── umf_zl_grow_front.o.obj
│ │ │ │ │ ├── umf_zl_init_front.o.obj
│ │ │ │ │ ├── umf_zl_kernel_init.o.obj
│ │ │ │ │ ├── umf_zl_kernel.o.obj
│ │ │ │ │ ├── umf_zl_kernel_wrapup.o.obj
│ │ │ │ │ ├── umf_zl_lhsolve.o.obj
│ │ │ │ │ ├── umf_zl_local_search.o.obj
│ │ │ │ │ ├── umf_zl_lsolve.o.obj
│ │ │ │ │ ├── umf_zl_ltsolve.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_element.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_head_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_alloc_tail_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_free_tail_block.o.obj
│ │ │ │ │ ├── umf_zl_mem_init_memoryspace.o.obj
│ │ │ │ │ ├── umf_zl_report_vector.o.obj
│ │ │ │ │ ├── umf_zl_row_search.o.obj
│ │ │ │ │ ├── umf_zl_scale_column.o.obj
│ │ │ │ │ ├── umf_zl_scale.o.obj
│ │ │ │ │ ├── umf_zl_set_stats.o.obj
│ │ │ │ │ ├── umf_zl_solve.o.obj
│ │ │ │ │ ├── umf_zl_start_front.o.obj
│ │ │ │ │ ├── umf_zl_store_lu_drop.o.obj
│ │ │ │ │ ├── umf_zl_store_lu.o.obj
│ │ │ │ │ ├── umf_zl_symbolic_usage.o.obj
│ │ │ │ │ ├── umf_zl_transpose.o.obj
│ │ │ │ │ ├── umf_zl_triplet_map_nox.o.obj
│ │ │ │ │ ├── umf_zl_triplet_map_x.o.obj
│ │ │ │ │ ├── umf_zl_triplet_nomap_nox.o.obj
│ │ │ │ │ ├── umf_zl_triplet_nomap_x.o.obj
│ │ │ │ │ ├── umf_zl_tuple_lengths.o.obj
│ │ │ │ │ ├── umf_zl_uhsolve.o.obj
│ │ │ │ │ ├── umf_zl_usolve.o.obj
│ │ │ │ │ ├── umf_zl_utsolve.o.obj
│ │ │ │ │ ├── umf_zl_valid_numeric.o.obj
│ │ │ │ │ └── umf_zl_valid_symbolic.o.obj
│ │ │ │ └── RelWithDebInfo
│ │ │ │ └── objects.txt
│ │ │ ├── UMFPACK.sln
│ │ │ ├── umfpack.vcxproj
│ │ │ └── umfpack.vcxproj.filters
│ │ ├── SuiteSparseProject.sln
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ ├── ALL_BUILD
│ │ │ │ │ ├── ALL_BUILD.log
│ │ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ └── custombuild.write.1.tlog
│ │ │ │ ├── INSTALL
│ │ │ │ │ ├── INSTALL.log
│ │ │ │ │ └── INSTALL.tlog
│ │ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ │ └── INSTALL.lastbuildstate
│ │ │ │ └── ZERO_CHECK
│ │ │ │ ├── ZERO_CHECK.log
│ │ │ │ └── ZERO_CHECK.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── ZERO_CHECK.lastbuildstate
│ │ │ └── Release
│ │ │ ├── ALL_BUILD
│ │ │ │ ├── ALL_BUILD.log
│ │ │ │ └── ALL_BUILD.tlog
│ │ │ │ ├── ALL_BUILD.lastbuildstate
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ └── custombuild.write.1.tlog
│ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL.log
│ │ │ │ └── INSTALL.tlog
│ │ │ │ ├── custombuild.command.1.tlog
│ │ │ │ ├── custombuild.read.1.tlog
│ │ │ │ ├── custombuild.write.1.tlog
│ │ │ │ └── INSTALL.lastbuildstate
│ │ │ └── ZERO_CHECK
│ │ │ ├── ZERO_CHECK.log
│ │ │ └── ZERO_CHECK.tlog
│ │ │ ├── custombuild.command.1.tlog
│ │ │ ├── custombuild.read.1.tlog
│ │ │ ├── custombuild.write.1.tlog
│ │ │ └── ZERO_CHECK.lastbuildstate
│ │ ├── ZERO_CHECK.vcxproj
│ │ └── ZERO_CHECK.vcxproj.filters
│ ├── suitesparse-master.zip
│ ├── suitesparse-metis-for-windows-1.3.0.zip
│ ├── suitesparse-metis-for-windows-1.5.0
│ │ └── suitesparse-metis-for-windows-1.5.0
│ │ ├── appveyor.yml
│ │ ├── checkGetSuiteSparse.cmake
│ │ ├── ci
│ │ │ ├── Dockerfile.ubuntu.template
│ │ │ ├── toolchains
│ │ │ │ ├── clang-cxx17.cmake
│ │ │ │ ├── gcc-cxx11.cmake
│ │ │ │ ├── gcc-cxx17.cmake
│ │ │ │ ├── linux-mingw-w64-cxx11.cmake
│ │ │ │ ├── linux-mingw-w64-cxx17.cmake
│ │ │ │ ├── mingw-cxx11.cmake
│ │ │ │ ├── mingw-cxx17.cmake
│ │ │ │ ├── vs-14-2015-sdk-8-1.cmake
│ │ │ │ ├── vs-14-2015-win64.cmake
│ │ │ │ ├── vs-15-2017-win64.cmake
│ │ │ │ └── vs-15-2017-win64-cxx17.cmake
│ │ │ └── travis.ubuntu.sh
│ │ ├── cmake
│ │ │ ├── HunterGate.cmake
│ │ │ └── SuiteSparse-config-install.cmake.in
│ │ ├── CMakeLists.txt
│ │ ├── docs
│ │ │ └── logo.png
│ │ ├── example-projects
│ │ │ ├── cholmod
│ │ │ │ ├── cholmod-test.c
│ │ │ │ └── CMakeLists.txt
│ │ │ └── spqr
│ │ │ ├── CMakeLists.txt
│ │ │ └── spqr-test.cpp
│ │ ├── lapack_windows
│ │ │ ├── readme.txt
│ │ │ ├── x32
│ │ │ │ ├── lapack-config.cmake
│ │ │ │ ├── lapack-config-version.cmake
│ │ │ │ ├── libblas.def
│ │ │ │ ├── libblas.dll
│ │ │ │ ├── libblas.exp
│ │ │ │ ├── libblas.lib
│ │ │ │ ├── libgcc_s_dw2-1.dll
│ │ │ │ ├── libgfortran-3.dll
│ │ │ │ ├── liblapack.dll
│ │ │ │ ├── liblapack.lib
│ │ │ │ └── libquadmath-0.dll
│ │ │ └── x64
│ │ │ ├── lapack-config.cmake
│ │ │ ├── lapack-config-version.cmake
│ │ │ ├── libblas.dll
│ │ │ ├── libblas.exp
│ │ │ ├── libblas.lib
│ │ │ ├── libgcc_s_sjlj-1.dll
│ │ │ ├── libgfortran-3.dll
│ │ │ ├── liblapack.dll
│ │ │ ├── liblapack.lib
│ │ │ └── libquadmath-0.dll
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ └── SuiteSparse
│ │ ├── AMD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── amd_demo2.c
│ │ │ │ ├── amd_demo2.out
│ │ │ │ ├── amd_demo.c
│ │ │ │ ├── amd_demo.out
│ │ │ │ ├── amd_f77cross.f
│ │ │ │ ├── amd_f77cross.out
│ │ │ │ ├── amd_f77demo.f
│ │ │ │ ├── amd_f77demo.out
│ │ │ │ ├── amd_f77simple.f
│ │ │ │ ├── amd_f77simple.out
│ │ │ │ ├── amd_f77wrapper.c
│ │ │ │ ├── amd_l_demo.c
│ │ │ │ ├── amd_l_demo.out
│ │ │ │ ├── amd_simple.c
│ │ │ │ ├── amd_simple.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── AMD_UserGuide.bib
│ │ │ │ ├── AMD_UserGuide.pdf
│ │ │ │ ├── AMD_UserGuide.tex
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── License.txt
│ │ │ │ └── Makefile
│ │ │ ├── Include
│ │ │ │ ├── amd.h
│ │ │ │ └── amd_internal.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── amd2.m
│ │ │ │ ├── amd_demo.m
│ │ │ │ ├── amd_demo.m.out
│ │ │ │ ├── amd_install.m
│ │ │ │ ├── amd_make.m
│ │ │ │ ├── amd_mex.c
│ │ │ │ ├── can_24
│ │ │ │ └── Contents.m
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── amd_1.c
│ │ │ │ ├── amd_2.c
│ │ │ │ ├── amd_aat.c
│ │ │ │ ├── amdbar.f
│ │ │ │ ├── amd_control.c
│ │ │ │ ├── amd_defaults.c
│ │ │ │ ├── amd_dump.c
│ │ │ │ ├── amd.f
│ │ │ │ ├── amd_global.c
│ │ │ │ ├── amd_info.c
│ │ │ │ ├── amd_order.c
│ │ │ │ ├── amd_postorder.c
│ │ │ │ ├── amd_post_tree.c
│ │ │ │ ├── amd_preprocess.c
│ │ │ │ └── amd_valid.c
│ │ │ └── SourceWrappers
│ │ │ ├── amd_global.c
│ │ │ ├── amd_i_1.o.c
│ │ │ ├── amd_i_2.o.c
│ │ │ ├── amd_i_aat.o.c
│ │ │ ├── amd_i_control.o.c
│ │ │ ├── amd_i_defaults.o.c
│ │ │ ├── amd_i_dump.o.c
│ │ │ ├── amd_i_info.o.c
│ │ │ ├── amd_i_order.o.c
│ │ │ ├── amd_i_postorder.o.c
│ │ │ ├── amd_i_post_tree.o.c
│ │ │ ├── amd_i_preprocess.o.c
│ │ │ ├── amd_i_valid.o.c
│ │ │ ├── amd_l_1.o.c
│ │ │ ├── amd_l_2.o.c
│ │ │ ├── amd_l_aat.o.c
│ │ │ ├── amd_l_control.o.c
│ │ │ ├── amd_l_defaults.o.c
│ │ │ ├── amd_l_dump.o.c
│ │ │ ├── amd_l_info.o.c
│ │ │ ├── amd_l_order.o.c
│ │ │ ├── amd_l_postorder.o.c
│ │ │ ├── amd_l_post_tree.o.c
│ │ │ ├── amd_l_preprocess.o.c
│ │ │ └── amd_l_valid.o.c
│ │ ├── bin
│ │ ├── BTF
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ ├── btf.h
│ │ │ │ └── btf_internal.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── btf.c
│ │ │ │ ├── btf_demo.m
│ │ │ │ ├── btf_install.m
│ │ │ │ ├── btf.m
│ │ │ │ ├── btf_make.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── drawbtf.m
│ │ │ │ ├── maxtrans.c
│ │ │ │ ├── maxtrans.m
│ │ │ │ ├── strongcomp.c
│ │ │ │ ├── strongcomp.m
│ │ │ │ └── Test
│ │ │ │ ├── btf_test.m
│ │ │ │ ├── checkbtf.m
│ │ │ │ ├── test1.m
│ │ │ │ ├── test2.m
│ │ │ │ ├── test3.m
│ │ │ │ ├── test4.m
│ │ │ │ ├── test5.m
│ │ │ │ └── test6.m
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── btf_maxtrans.c
│ │ │ │ ├── btf_order.c
│ │ │ │ └── btf_strongcomp.c
│ │ │ └── SourceWrappers
│ │ │ ├── btf_l_maxtrans.o.c
│ │ │ ├── btf_l_order.o.c
│ │ │ ├── btf_l_strongcomp.o.c
│ │ │ ├── btf_maxtrans.o.c
│ │ │ ├── btf_order.o.c
│ │ │ └── btf_strongcomp.o.c
│ │ ├── CAMD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── camd_demo2.c
│ │ │ │ ├── camd_demo2.out
│ │ │ │ ├── camd_demo.c
│ │ │ │ ├── camd_demo.out
│ │ │ │ ├── camd_l_demo.c
│ │ │ │ ├── camd_l_demo.out
│ │ │ │ ├── camd_simple.c
│ │ │ │ ├── camd_simple.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── camd.sed
│ │ │ │ ├── CAMD_UserGuide.bib
│ │ │ │ ├── CAMD_UserGuide.pdf
│ │ │ │ ├── CAMD_UserGuide.tex
│ │ │ │ ├── cdiff
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── docdiff
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── License.txt
│ │ │ │ └── Makefile
│ │ │ ├── Include
│ │ │ │ ├── camd.h
│ │ │ │ └── camd_internal.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── camd_demo.m
│ │ │ │ ├── camd_demo.m.out
│ │ │ │ ├── camd.m
│ │ │ │ ├── camd_make.m
│ │ │ │ ├── camd_mex.c
│ │ │ │ ├── can_24
│ │ │ │ └── Contents.m
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── camd_1.c
│ │ │ │ ├── camd_2.c
│ │ │ │ ├── camd_aat.c
│ │ │ │ ├── camd_control.c
│ │ │ │ ├── camd_defaults.c
│ │ │ │ ├── camd_dump.c
│ │ │ │ ├── camd_global.c
│ │ │ │ ├── camd_info.c
│ │ │ │ ├── camd_order.c
│ │ │ │ ├── camd_postorder.c
│ │ │ │ ├── camd_preprocess.c
│ │ │ │ └── camd_valid.c
│ │ │ └── SourceWrappers
│ │ │ ├── camd_global.c
│ │ │ ├── camd_i_1.o.c
│ │ │ ├── camd_i_2.o.c
│ │ │ ├── camd_i_aat.o.c
│ │ │ ├── camd_i_control.o.c
│ │ │ ├── camd_i_defaults.o.c
│ │ │ ├── camd_i_dump.o.c
│ │ │ ├── camd_i_info.o.c
│ │ │ ├── camd_i_order.o.c
│ │ │ ├── camd_i_postorder.o.c
│ │ │ ├── camd_i_preprocess.o.c
│ │ │ ├── camd_i_valid.o.c
│ │ │ ├── camd_l_1.o.c
│ │ │ ├── camd_l_2.o.c
│ │ │ ├── camd_l_aat.o.c
│ │ │ ├── camd_l_control.o.c
│ │ │ ├── camd_l_defaults.o.c
│ │ │ ├── camd_l_dump.o.c
│ │ │ ├── camd_l_info.o.c
│ │ │ ├── camd_l_order.o.c
│ │ │ ├── camd_l_postorder.o.c
│ │ │ ├── camd_l_preprocess.o.c
│ │ │ └── camd_l_valid.o.c
│ │ ├── CCOLAMD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── ccolamd_example.c
│ │ │ │ ├── ccolamd_example.out
│ │ │ │ ├── ccolamd_l_example.c
│ │ │ │ ├── ccolamd_l_example.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── ccolamd.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── ccolamd_demo.m
│ │ │ │ ├── ccolamd_install.m
│ │ │ │ ├── ccolamd.m
│ │ │ │ ├── ccolamd_make.m
│ │ │ │ ├── ccolamdmex.c
│ │ │ │ ├── ccolamd_test.m
│ │ │ │ ├── ccolamdtestmex.c
│ │ │ │ ├── ccolamdtestmex.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── csymamd.m
│ │ │ │ ├── csymamdmex.c
│ │ │ │ ├── csymamdtestmex.c
│ │ │ │ ├── csymamdtestmex.m
│ │ │ │ └── luflops.m
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ └── ccolamd.c
│ │ │ └── SourceWrappers
│ │ │ ├── ccolamd.c
│ │ │ └── ccolamd_l.o.c
│ │ ├── ChangeLog
│ │ ├── CHOLMOD
│ │ │ ├── Check
│ │ │ │ ├── cholmod_check.c
│ │ │ │ ├── cholmod_read.c
│ │ │ │ ├── cholmod_write.c
│ │ │ │ └── lesser.txt
│ │ │ ├── Cholesky
│ │ │ │ ├── cholmod_amd.c
│ │ │ │ ├── cholmod_analyze.c
│ │ │ │ ├── cholmod_colamd.c
│ │ │ │ ├── cholmod_etree.c
│ │ │ │ ├── cholmod_factorize.c
│ │ │ │ ├── cholmod_postorder.c
│ │ │ │ ├── cholmod_rcond.c
│ │ │ │ ├── cholmod_resymbol.c
│ │ │ │ ├── cholmod_rowcolcounts.c
│ │ │ │ ├── cholmod_rowfac.c
│ │ │ │ ├── cholmod_solve.c
│ │ │ │ ├── cholmod_spsolve.c
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── t_cholmod_lsolve.c
│ │ │ │ ├── t_cholmod_ltsolve.c
│ │ │ │ ├── t_cholmod_rowfac.c
│ │ │ │ └── t_cholmod_solve.c
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Core
│ │ │ │ ├── cholmod_aat.c
│ │ │ │ ├── cholmod_add.c
│ │ │ │ ├── cholmod_band.c
│ │ │ │ ├── cholmod_change_factor.c
│ │ │ │ ├── cholmod_common.c
│ │ │ │ ├── cholmod_complex.c
│ │ │ │ ├── cholmod_copy.c
│ │ │ │ ├── cholmod_dense.c
│ │ │ │ ├── cholmod_error.c
│ │ │ │ ├── cholmod_factor.c
│ │ │ │ ├── cholmod_memory.c
│ │ │ │ ├── cholmod_sparse.c
│ │ │ │ ├── cholmod_transpose.c
│ │ │ │ ├── cholmod_triplet.c
│ │ │ │ ├── cholmod_version.c
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── t_cholmod_change_factor.c
│ │ │ │ ├── t_cholmod_dense.c
│ │ │ │ ├── t_cholmod_transpose.c
│ │ │ │ └── t_cholmod_triplet.c
│ │ │ ├── Demo
│ │ │ │ ├── cholmod_demo.c
│ │ │ │ ├── cholmod_demo.h
│ │ │ │ ├── cholmod_l_demo.c
│ │ │ │ ├── cholmod_simple.c
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── gpu.sh
│ │ │ │ ├── lperf.m
│ │ │ │ ├── Makefile
│ │ │ │ ├── Matrix
│ │ │ │ │ ├── 0.tri
│ │ │ │ │ ├── bcsstk01.rsa
│ │ │ │ │ ├── bcsstk01.tri
│ │ │ │ │ ├── bcsstk02.rsa
│ │ │ │ │ ├── bcsstk02.tri
│ │ │ │ │ ├── can___24.mtx
│ │ │ │ │ ├── c.mtx
│ │ │ │ │ ├── c.tri
│ │ │ │ │ ├── d.tri
│ │ │ │ │ ├── empty.tri
│ │ │ │ │ ├── lp_afiro.rra
│ │ │ │ │ ├── lp_afiro.tri
│ │ │ │ │ ├── mangle1.mtx
│ │ │ │ │ ├── mangle2.mtx
│ │ │ │ │ ├── mangle3.mtx
│ │ │ │ │ ├── mangle4.mtx
│ │ │ │ │ ├── mangle5.tri
│ │ │ │ │ ├── mangle6.tri
│ │ │ │ │ ├── mangle7.tri
│ │ │ │ │ ├── mangle8.tri
│ │ │ │ │ ├── n5
│ │ │ │ │ ├── one.tri
│ │ │ │ │ ├── pts5ldd03.mtx
│ │ │ │ │ ├── two.tri
│ │ │ │ │ └── up.tri
│ │ │ │ ├── reade.f
│ │ │ │ ├── readhb2.f
│ │ │ │ ├── readhb.f
│ │ │ │ └── README.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── CHOLMOD_UserGuide.pdf
│ │ │ │ ├── CHOLMOD_UserGuide.tex
│ │ │ │ ├── footer.tex
│ │ │ │ ├── getmproto
│ │ │ │ ├── getproto
│ │ │ │ ├── header.tex
│ │ │ │ ├── IA3_2014_Workshop_Rennich_Stosic_Davis_preprint.pdf
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── mfile.awk
│ │ │ │ ├── mfooter.tex
│ │ │ │ ├── mheader.tex
│ │ │ │ ├── rule.awk
│ │ │ │ └── UserGuide.bib
│ │ │ ├── GPU
│ │ │ │ ├── cholmod_gpu.c
│ │ │ │ ├── cholmod_gpu_kernels.c
│ │ │ │ ├── cholmod_gpu_kernels.cu
│ │ │ │ └── t_cholmod_gpu.c
│ │ │ ├── Include
│ │ │ │ ├── cholmod_blas.h
│ │ │ │ ├── cholmod_camd.h
│ │ │ │ ├── cholmod_check.h
│ │ │ │ ├── cholmod_cholesky.h
│ │ │ │ ├── cholmod_complexity.h
│ │ │ │ ├── cholmod_config.h
│ │ │ │ ├── cholmod_core.h
│ │ │ │ ├── cholmod_function.h
│ │ │ │ ├── cholmod_gpu.h
│ │ │ │ ├── cholmod_gpu_kernels.h
│ │ │ │ ├── cholmod.h
│ │ │ │ ├── cholmod_internal.h
│ │ │ │ ├── cholmod_io64.h
│ │ │ │ ├── cholmod_matrixops.h
│ │ │ │ ├── cholmod_modify.h
│ │ │ │ ├── cholmod_partition.h
│ │ │ │ ├── cholmod_supernodal.h
│ │ │ │ ├── cholmod_template.h
│ │ │ │ └── README.txt
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── analyze.c
│ │ │ │ ├── analyze.m
│ │ │ │ ├── bisect.c
│ │ │ │ ├── bisect.m
│ │ │ │ ├── chol2.c
│ │ │ │ ├── chol2.m
│ │ │ │ ├── cholmod2.c
│ │ │ │ ├── cholmod2.m
│ │ │ │ ├── cholmod_demo.m
│ │ │ │ ├── cholmod_install.m
│ │ │ │ ├── cholmod_make.m
│ │ │ │ ├── cholmod_matlab.c
│ │ │ │ ├── cholmod_matlab.h
│ │ │ │ ├── cholmod_updown_demo.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── etree2.c
│ │ │ │ ├── etree2.m
│ │ │ │ ├── get_symmetry.m
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── graph_demo.m
│ │ │ │ ├── lchol.c
│ │ │ │ ├── lchol.m
│ │ │ │ ├── ldlchol.c
│ │ │ │ ├── ldlchol.m
│ │ │ │ ├── ldl_normest.m
│ │ │ │ ├── ldlrowmod.c
│ │ │ │ ├── ldlrowmod.m
│ │ │ │ ├── ldlsolve.c
│ │ │ │ ├── ldlsolve.m
│ │ │ │ ├── ldlsplit.m
│ │ │ │ ├── ldlupdate.c
│ │ │ │ ├── ldlupdate.m
│ │ │ │ ├── lsubsolve.c
│ │ │ │ ├── lxbpattern.c
│ │ │ │ ├── metis.c
│ │ │ │ ├── metis.m
│ │ │ │ ├── mread.c
│ │ │ │ ├── mread.m
│ │ │ │ ├── mwrite.c
│ │ │ │ ├── mwrite.m
│ │ │ │ ├── nesdis.c
│ │ │ │ ├── nesdis.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── resymbol.c
│ │ │ │ ├── resymbol.m
│ │ │ │ ├── sdmult.c
│ │ │ │ ├── sdmult.m
│ │ │ │ ├── septree.c
│ │ │ │ ├── septree.m
│ │ │ │ ├── sparse2.c
│ │ │ │ ├── sparse2.m
│ │ │ │ ├── spsym.c
│ │ │ │ ├── spsym.m
│ │ │ │ ├── symbfact2.c
│ │ │ │ ├── symbfact2.m
│ │ │ │ ├── Test
│ │ │ │ │ ├── cholmod_test.m
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── dg.m
│ │ │ │ │ ├── ltest2.m
│ │ │ │ │ ├── ltest.m
│ │ │ │ │ ├── lxtest.m
│ │ │ │ │ ├── n2.m
│ │ │ │ │ ├── nn.m
│ │ │ │ │ ├── test0.m
│ │ │ │ │ ├── test10.m
│ │ │ │ │ ├── test11.m
│ │ │ │ │ ├── test11results.m
│ │ │ │ │ ├── test12.m
│ │ │ │ │ ├── test13.m
│ │ │ │ │ ├── test14.m
│ │ │ │ │ ├── test15.m
│ │ │ │ │ ├── test16.m
│ │ │ │ │ ├── test17.m
│ │ │ │ │ ├── test18.m
│ │ │ │ │ ├── test19.m
│ │ │ │ │ ├── test1.m
│ │ │ │ │ ├── test20.m
│ │ │ │ │ ├── test21.m
│ │ │ │ │ ├── test22.m
│ │ │ │ │ ├── test23.m
│ │ │ │ │ ├── test24.m
│ │ │ │ │ ├── test25.m
│ │ │ │ │ ├── test26.m
│ │ │ │ │ ├── test27.m
│ │ │ │ │ ├── test28.m
│ │ │ │ │ ├── test29.m
│ │ │ │ │ ├── test2.m
│ │ │ │ │ ├── test3.m
│ │ │ │ │ ├── test4.m
│ │ │ │ │ ├── test5.m
│ │ │ │ │ ├── test6.m
│ │ │ │ │ ├── test7.m
│ │ │ │ │ ├── test8.m
│ │ │ │ │ ├── test9.m
│ │ │ │ │ ├── testmm.m
│ │ │ │ │ └── testsolve.m
│ │ │ │ └── Windows
│ │ │ │ ├── rand48.c
│ │ │ │ ├── README.txt
│ │ │ │ └── strings.h
│ │ │ ├── MatrixOps
│ │ │ │ ├── cholmod_drop.c
│ │ │ │ ├── cholmod_horzcat.c
│ │ │ │ ├── cholmod_norm.c
│ │ │ │ ├── cholmod_scale.c
│ │ │ │ ├── cholmod_sdmult.c
│ │ │ │ ├── cholmod_ssmult.c
│ │ │ │ ├── cholmod_submatrix.c
│ │ │ │ ├── cholmod_symmetry.c
│ │ │ │ ├── cholmod_vertcat.c
│ │ │ │ ├── gpl.txt
│ │ │ │ └── t_cholmod_sdmult.c
│ │ │ ├── Modify
│ │ │ │ ├── cholmod_rowadd.c
│ │ │ │ ├── cholmod_rowdel.c
│ │ │ │ ├── cholmod_updown.c
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── t_cholmod_updown.c
│ │ │ │ └── t_cholmod_updown_numkr.c
│ │ │ ├── Partition
│ │ │ │ ├── cholmod_camd.c
│ │ │ │ ├── cholmod_ccolamd.c
│ │ │ │ ├── cholmod_csymamd.c
│ │ │ │ ├── cholmod_metis.c
│ │ │ │ ├── cholmod_nesdis.c
│ │ │ │ └── lesser.txt
│ │ │ ├── README.txt
│ │ │ ├── SourceWrappers
│ │ │ │ ├── cholmod_aat.o.c
│ │ │ │ ├── cholmod_add.o.c
│ │ │ │ ├── cholmod_amd.o.c
│ │ │ │ ├── cholmod_analyze.o.c
│ │ │ │ ├── cholmod_band.o.c
│ │ │ │ ├── cholmod_camd.o.c
│ │ │ │ ├── cholmod_ccolamd.o.c
│ │ │ │ ├── cholmod_change_factor.o.c
│ │ │ │ ├── cholmod_check.o.c
│ │ │ │ ├── cholmod_colamd.o.c
│ │ │ │ ├── cholmod_common.o.c
│ │ │ │ ├── cholmod_complex.o.c
│ │ │ │ ├── cholmod_copy.o.c
│ │ │ │ ├── cholmod_csymamd.o.c
│ │ │ │ ├── cholmod_dense.o.c
│ │ │ │ ├── cholmod_drop.o.c
│ │ │ │ ├── cholmod_error.o.c
│ │ │ │ ├── cholmod_etree.o.c
│ │ │ │ ├── cholmod_factorize.o.c
│ │ │ │ ├── cholmod_factor.o.c
│ │ │ │ ├── cholmod_gpu.o.c
│ │ │ │ ├── cholmod_horzcat.o.c
│ │ │ │ ├── cholmod_l_aat.o.c
│ │ │ │ ├── cholmod_l_add.o.c
│ │ │ │ ├── cholmod_l_amd.o.c
│ │ │ │ ├── cholmod_l_analyze.o.c
│ │ │ │ ├── cholmod_l_band.o.c
│ │ │ │ ├── cholmod_l_camd.o.c
│ │ │ │ ├── cholmod_l_ccolamd.o.c
│ │ │ │ ├── cholmod_l_change_factor.o.c
│ │ │ │ ├── cholmod_l_check.o.c
│ │ │ │ ├── cholmod_l_colamd.o.c
│ │ │ │ ├── cholmod_l_common.o.c
│ │ │ │ ├── cholmod_l_complex.o.c
│ │ │ │ ├── cholmod_l_copy.o.c
│ │ │ │ ├── cholmod_l_csymamd.o.c
│ │ │ │ ├── cholmod_l_dense.o.c
│ │ │ │ ├── cholmod_l_drop.o.c
│ │ │ │ ├── cholmod_l_error.o.c
│ │ │ │ ├── cholmod_l_etree.o.c
│ │ │ │ ├── cholmod_l_factorize.o.c
│ │ │ │ ├── cholmod_l_factor.o.c
│ │ │ │ ├── cholmod_l_gpu.o.c
│ │ │ │ ├── cholmod_l_horzcat.o.c
│ │ │ │ ├── cholmod_l_memory.o.c
│ │ │ │ ├── cholmod_l_metis.o.c
│ │ │ │ ├── cholmod_l_nesdis.o.c
│ │ │ │ ├── cholmod_l_norm.o.c
│ │ │ │ ├── cholmod_l_postorder.o.c
│ │ │ │ ├── cholmod_l_rcond.o.c
│ │ │ │ ├── cholmod_l_read.o.c
│ │ │ │ ├── cholmod_l_resymbol.o.c
│ │ │ │ ├── cholmod_l_rowadd.o.c
│ │ │ │ ├── cholmod_l_rowcolcounts.o.c
│ │ │ │ ├── cholmod_l_rowdel.o.c
│ │ │ │ ├── cholmod_l_rowfac.o.c
│ │ │ │ ├── cholmod_l_scale.o.c
│ │ │ │ ├── cholmod_l_sdmult.o.c
│ │ │ │ ├── cholmod_l_solve.o.c
│ │ │ │ ├── cholmod_l_sparse.o.c
│ │ │ │ ├── cholmod_l_spsolve.o.c
│ │ │ │ ├── cholmod_l_ssmult.o.c
│ │ │ │ ├── cholmod_l_submatrix.o.c
│ │ │ │ ├── cholmod_l_super_numeric.o.c
│ │ │ │ ├── cholmod_l_super_solve.o.c
│ │ │ │ ├── cholmod_l_super_symbolic.o.c
│ │ │ │ ├── cholmod_l_symmetry.o.c
│ │ │ │ ├── cholmod_l_transpose.o.c
│ │ │ │ ├── cholmod_l_triplet.o.c
│ │ │ │ ├── cholmod_l_updown.o.c
│ │ │ │ ├── cholmod_l_vertcat.o.c
│ │ │ │ ├── cholmod_l_write.o.c
│ │ │ │ ├── cholmod_memory.o.c
│ │ │ │ ├── cholmod_metis.o.c
│ │ │ │ ├── cholmod_nesdis.o.c
│ │ │ │ ├── cholmod_norm.o.c
│ │ │ │ ├── cholmod_postorder.o.c
│ │ │ │ ├── cholmod_rcond.o.c
│ │ │ │ ├── cholmod_read.o.c
│ │ │ │ ├── cholmod_resymbol.o.c
│ │ │ │ ├── cholmod_rowadd.o.c
│ │ │ │ ├── cholmod_rowcolcounts.o.c
│ │ │ │ ├── cholmod_rowdel.o.c
│ │ │ │ ├── cholmod_rowfac.o.c
│ │ │ │ ├── cholmod_scale.o.c
│ │ │ │ ├── cholmod_sdmult.o.c
│ │ │ │ ├── cholmod_solve.o.c
│ │ │ │ ├── cholmod_sparse.o.c
│ │ │ │ ├── cholmod_spsolve.o.c
│ │ │ │ ├── cholmod_ssmult.o.c
│ │ │ │ ├── cholmod_submatrix.o.c
│ │ │ │ ├── cholmod_super_numeric.o.c
│ │ │ │ ├── cholmod_super_solve.o.c
│ │ │ │ ├── cholmod_super_symbolic.o.c
│ │ │ │ ├── cholmod_symmetry.o.c
│ │ │ │ ├── cholmod_transpose.o.c
│ │ │ │ ├── cholmod_triplet.o.c
│ │ │ │ ├── cholmod_updown.o.c
│ │ │ │ ├── cholmod_vertcat.o.c
│ │ │ │ └── cholmod_write.o.c
│ │ │ ├── Supernodal
│ │ │ │ ├── cholmod_super_numeric.c
│ │ │ │ ├── cholmod_super_solve.c
│ │ │ │ ├── cholmod_super_symbolic.c
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── t_cholmod_super_numeric.c
│ │ │ │ └── t_cholmod_super_solve.c
│ │ │ ├── Tcov
│ │ │ │ ├── amdtest.c
│ │ │ │ ├── aug.c
│ │ │ │ ├── camdtest.c
│ │ │ │ ├── cctest.c
│ │ │ │ ├── cm.c
│ │ │ │ ├── cm.h
│ │ │ │ ├── cmread.c
│ │ │ │ ├── comments.txt
│ │ │ │ ├── covall
│ │ │ │ ├── cov.awk
│ │ │ │ ├── cover
│ │ │ │ ├── covs
│ │ │ │ ├── ctest.c
│ │ │ │ ├── gcovs
│ │ │ │ ├── go
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── huge.c
│ │ │ │ ├── leak.c
│ │ │ │ ├── lpdemo.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── Make.inc
│ │ │ │ ├── Matrix
│ │ │ │ │ ├── 0
│ │ │ │ │ ├── 0_1
│ │ │ │ │ ├── 1_0
│ │ │ │ │ ├── 1e99
│ │ │ │ │ ├── 20lo
│ │ │ │ │ ├── 2_3
│ │ │ │ │ ├── 2diag.tri
│ │ │ │ │ ├── 2lo.tri
│ │ │ │ │ ├── 2.tri
│ │ │ │ │ ├── 2up.tri
│ │ │ │ │ ├── 3_2
│ │ │ │ │ ├── 3b
│ │ │ │ │ ├── 3by0.mtx
│ │ │ │ │ ├── 3singular
│ │ │ │ │ ├── 4
│ │ │ │ │ ├── 4lo
│ │ │ │ │ ├── 5
│ │ │ │ │ ├── 5by50
│ │ │ │ │ ├── a1
│ │ │ │ │ ├── a2
│ │ │ │ │ ├── afiro
│ │ │ │ │ ├── c10
│ │ │ │ │ ├── c30lo
│ │ │ │ │ ├── c30up
│ │ │ │ │ ├── c3singular
│ │ │ │ │ ├── c5lo
│ │ │ │ │ ├── c5up
│ │ │ │ │ ├── c5up2
│ │ │ │ │ ├── C9840
│ │ │ │ │ ├── cha
│ │ │ │ │ ├── cha.mtx
│ │ │ │ │ ├── cpi
│ │ │ │ │ ├── crud1
│ │ │ │ │ ├── crud2
│ │ │ │ │ ├── csa.mtx
│ │ │ │ │ ├── cs.mtx
│ │ │ │ │ ├── cza
│ │ │ │ │ ├── cza.mtx
│ │ │ │ │ ├── diag
│ │ │ │ │ ├── ex5lo
│ │ │ │ │ ├── fullcha.mtx
│ │ │ │ │ ├── fullcrud1.mtx
│ │ │ │ │ ├── fullcrud2.mtx
│ │ │ │ │ ├── fullcrud.mtx
│ │ │ │ │ ├── fullcsa.mtx
│ │ │ │ │ ├── fullcza.mtx
│ │ │ │ │ ├── fullrsa.mtx
│ │ │ │ │ ├── fullrza.mtx
│ │ │ │ │ ├── galenet
│ │ │ │ │ ├── huge.tri
│ │ │ │ │ ├── ibm32
│ │ │ │ │ ├── itest2
│ │ │ │ │ ├── itest6
│ │ │ │ │ ├── k01up
│ │ │ │ │ ├── mega.tri
│ │ │ │ │ ├── one
│ │ │ │ │ ├── pi
│ │ │ │ │ ├── plskz362.mtx
│ │ │ │ │ ├── r5lo
│ │ │ │ │ ├── r5lo2
│ │ │ │ │ ├── r5up
│ │ │ │ │ ├── r5up2
│ │ │ │ │ ├── rza.mtx
│ │ │ │ │ ├── tri
│ │ │ │ │ ├── tribig
│ │ │ │ │ ├── z10
│ │ │ │ │ ├── z30lo
│ │ │ │ │ ├── z30up
│ │ │ │ │ ├── z3singular
│ │ │ │ │ ├── z5lo
│ │ │ │ │ ├── z5up
│ │ │ │ │ ├── z5up2
│ │ │ │ │ └── zero
│ │ │ │ ├── memory.c
│ │ │ │ ├── null2.c
│ │ │ │ ├── null.c
│ │ │ │ ├── raw_factor.c
│ │ │ │ ├── README.txt
│ │ │ │ ├── solve.c
│ │ │ │ ├── test_ops.c
│ │ │ │ └── unpack.c
│ │ │ └── Valgrind
│ │ │ ├── gpl.txt
│ │ │ ├── Makefile
│ │ │ ├── Make.inc
│ │ │ ├── README.txt
│ │ │ ├── suppress
│ │ │ └── tmp
│ │ ├── CMakeLists.txt
│ │ ├── COLAMD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── colamd_example.c
│ │ │ │ ├── colamd_example.out
│ │ │ │ ├── colamd_l_example.c
│ │ │ │ ├── colamd_l_example.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── colamd.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── colamd2.m
│ │ │ │ ├── colamd_demo.m
│ │ │ │ ├── colamd_install.m
│ │ │ │ ├── colamd_make.m
│ │ │ │ ├── colamdmex.c
│ │ │ │ ├── colamd_test.m
│ │ │ │ ├── colamdtestmex.c
│ │ │ │ ├── Contents.m
│ │ │ │ ├── luflops.m
│ │ │ │ ├── symamd2.m
│ │ │ │ ├── symamdmex.c
│ │ │ │ └── symamdtestmex.c
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ └── colamd.c
│ │ │ └── SourceWrappers
│ │ │ ├── colamd.c
│ │ │ └── colamd_l.o.c
│ │ ├── Contents.m
│ │ ├── CONTRIBUTOR-LICENSE.txt
│ │ ├── CSparse
│ │ │ ├── Demo
│ │ │ │ ├── cs_demo1.c
│ │ │ │ ├── cs_demo2.c
│ │ │ │ ├── cs_demo3.c
│ │ │ │ ├── cs_demo.c
│ │ │ │ ├── cs_demo.h
│ │ │ │ ├── cs_demo.out
│ │ │ │ ├── Makefile
│ │ │ │ └── README.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── cs.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── MATLAB
│ │ │ │ ├── cs_install.m
│ │ │ │ ├── CSparse
│ │ │ │ │ ├── ccspy.m
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_add.m
│ │ │ │ │ ├── cs_add_mex.c
│ │ │ │ │ ├── cs_amd.m
│ │ │ │ │ ├── cs_amd_mex.c
│ │ │ │ │ ├── cs_chol.m
│ │ │ │ │ ├── cs_chol_mex.c
│ │ │ │ │ ├── cs_cholsol.m
│ │ │ │ │ ├── cs_cholsol_mex.c
│ │ │ │ │ ├── cs_counts.m
│ │ │ │ │ ├── cs_counts_mex.c
│ │ │ │ │ ├── cs_dmperm.m
│ │ │ │ │ ├── cs_dmperm_mex.c
│ │ │ │ │ ├── cs_dmsol.m
│ │ │ │ │ ├── cs_dmspy.m
│ │ │ │ │ ├── cs_droptol.m
│ │ │ │ │ ├── cs_droptol_mex.c
│ │ │ │ │ ├── cs_esep.m
│ │ │ │ │ ├── cs_etree.m
│ │ │ │ │ ├── cs_etree_mex.c
│ │ │ │ │ ├── cs_gaxpy.m
│ │ │ │ │ ├── cs_gaxpy_mex.c
│ │ │ │ │ ├── cs_lsolve.m
│ │ │ │ │ ├── cs_lsolve_mex.c
│ │ │ │ │ ├── cs_ltsolve.m
│ │ │ │ │ ├── cs_ltsolve_mex.c
│ │ │ │ │ ├── cs_lu.m
│ │ │ │ │ ├── cs_lu_mex.c
│ │ │ │ │ ├── cs_lusol.m
│ │ │ │ │ ├── cs_lusol_mex.c
│ │ │ │ │ ├── cs_make.m
│ │ │ │ │ ├── cs_mex.c
│ │ │ │ │ ├── cs_mex.h
│ │ │ │ │ ├── cs_multiply.m
│ │ │ │ │ ├── cs_multiply_mex.c
│ │ │ │ │ ├── cs_must_compile.m
│ │ │ │ │ ├── cs_nd.m
│ │ │ │ │ ├── cs_nsep.m
│ │ │ │ │ ├── cs_permute.m
│ │ │ │ │ ├── cs_permute_mex.c
│ │ │ │ │ ├── cs_print.m
│ │ │ │ │ ├── cs_print_mex.c
│ │ │ │ │ ├── cspy.m
│ │ │ │ │ ├── cs_qleft.m
│ │ │ │ │ ├── cs_qright.m
│ │ │ │ │ ├── cs_qr.m
│ │ │ │ │ ├── cs_qr_mex.c
│ │ │ │ │ ├── cs_qrsol.m
│ │ │ │ │ ├── cs_qrsol_mex.c
│ │ │ │ │ ├── cs_randperm.m
│ │ │ │ │ ├── cs_randperm_mex.c
│ │ │ │ │ ├── cs_scc2.m
│ │ │ │ │ ├── cs_scc.m
│ │ │ │ │ ├── cs_scc_mex.c
│ │ │ │ │ ├── cs_sep.m
│ │ │ │ │ ├── cs_sparse.m
│ │ │ │ │ ├── cs_sparse_mex.c
│ │ │ │ │ ├── cs_sqr.m
│ │ │ │ │ ├── cs_sqr_mex.c
│ │ │ │ │ ├── cs_symperm.m
│ │ │ │ │ ├── cs_symperm_mex.c
│ │ │ │ │ ├── cs_thumb_mex.c
│ │ │ │ │ ├── cs_transpose.m
│ │ │ │ │ ├── cs_transpose_mex.c
│ │ │ │ │ ├── cs_updown.m
│ │ │ │ │ ├── cs_updown_mex.c
│ │ │ │ │ ├── cs_usolve.m
│ │ │ │ │ ├── cs_usolve_mex.c
│ │ │ │ │ ├── cs_utsolve.m
│ │ │ │ │ ├── cs_utsolve_mex.c
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── drawboxes.m
│ │ │ │ │ │ └── drawbox.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── Demo
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_demo1.m
│ │ │ │ │ ├── cs_demo2.m
│ │ │ │ │ ├── cs_demo3.m
│ │ │ │ │ ├── cs_demo.m
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── demo2.m
│ │ │ │ │ │ ├── demo3.m
│ │ │ │ │ │ ├── ex_1.m
│ │ │ │ │ │ ├── ex2.m
│ │ │ │ │ │ ├── ex3.m
│ │ │ │ │ │ ├── frand.m
│ │ │ │ │ │ ├── get_problem.m
│ │ │ │ │ │ ├── is_sym.m
│ │ │ │ │ │ ├── mesh2d1.m
│ │ │ │ │ │ ├── mesh2d2.m
│ │ │ │ │ │ ├── mesh3d1.m
│ │ │ │ │ │ ├── mesh3d2.m
│ │ │ │ │ │ ├── print_order.m
│ │ │ │ │ │ ├── print_resid.m
│ │ │ │ │ │ └── rhs.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── README.txt
│ │ │ │ ├── ssget
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── Doc
│ │ │ │ │ │ ├── ChangeLog
│ │ │ │ │ │ └── License.txt
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── ss_index.mat
│ │ │ │ │ │ └── ssstats.csv
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mat
│ │ │ │ │ ├── MM
│ │ │ │ │ ├── RB
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── ssget_defaults.m
│ │ │ │ │ ├── ssget_example.m
│ │ │ │ │ ├── ssget_lookup.m
│ │ │ │ │ ├── ssget.m
│ │ │ │ │ ├── ssgrep.m
│ │ │ │ │ ├── ssgui.jar
│ │ │ │ │ ├── ssgui.java
│ │ │ │ │ ├── sshelp.html
│ │ │ │ │ ├── sskinds.m
│ │ │ │ │ ├── sssvd.m
│ │ │ │ │ ├── ssweb.m
│ │ │ │ │ ├── svd
│ │ │ │ │ ├── UFget.m
│ │ │ │ │ └── UFkinds.m
│ │ │ │ └── Test
│ │ │ │ ├── another_colormap.m
│ │ │ │ ├── check_if_same.m
│ │ │ │ ├── choldn.m
│ │ │ │ ├── chol_downdate.m
│ │ │ │ ├── chol_example.m
│ │ │ │ ├── chol_left2.m
│ │ │ │ ├── chol_left.m
│ │ │ │ ├── chol_right.m
│ │ │ │ ├── chol_super.m
│ │ │ │ ├── chol_update.m
│ │ │ │ ├── chol_updown.m
│ │ │ │ ├── cholupdown.m
│ │ │ │ ├── chol_up.m
│ │ │ │ ├── cholup.m
│ │ │ │ ├── cond1est.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── cs_fiedler.m
│ │ │ │ ├── cs_frand.m
│ │ │ │ ├── cs_frand_mex.c
│ │ │ │ ├── cs_ipvec.m
│ │ │ │ ├── cs_ipvec_mex.c
│ │ │ │ ├── cs_maxtransr.m
│ │ │ │ ├── cs_maxtransr_mex.c
│ │ │ │ ├── cs_pvec.m
│ │ │ │ ├── cs_pvec_mex.c
│ │ │ │ ├── cspy_test.m
│ │ │ │ ├── cs_q1.m
│ │ │ │ ├── cs_reach.m
│ │ │ │ ├── cs_reach_mex.c
│ │ │ │ ├── cs_reachr.m
│ │ │ │ ├── cs_reachr_mex.c
│ │ │ │ ├── cs_rowcnt.m
│ │ │ │ ├── cs_rowcnt_mex.c
│ │ │ │ ├── cs_sparse2.m
│ │ │ │ ├── cs_sparse2_mex.c
│ │ │ │ ├── cs_test_make.m
│ │ │ │ ├── dmperm_test.m
│ │ │ │ ├── dmspy_test.m
│ │ │ │ ├── etree_sample.m
│ │ │ │ ├── givens2.m
│ │ │ │ ├── gqr3.m
│ │ │ │ ├── happly.m
│ │ │ │ ├── hmake1.m
│ │ │ │ ├── house.m
│ │ │ │ ├── lu_left.m
│ │ │ │ ├── lu_right.m
│ │ │ │ ├── lu_rightp.m
│ │ │ │ ├── lu_rightpr.m
│ │ │ │ ├── lu_rightr.m
│ │ │ │ ├── mynormest1.m
│ │ │ │ ├── myqr.m
│ │ │ │ ├── norm1est.m
│ │ │ │ ├── qr2.m
│ │ │ │ ├── qr_givens_full.m
│ │ │ │ ├── qr_givens.m
│ │ │ │ ├── qr_left.m
│ │ │ │ ├── qr_right.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── sample_colormap.m
│ │ │ │ ├── signum.m
│ │ │ │ ├── sqr_example.m
│ │ │ │ ├── test10.m
│ │ │ │ ├── test11.m
│ │ │ │ ├── test12.m
│ │ │ │ ├── test13.m
│ │ │ │ ├── test14.m
│ │ │ │ ├── test15.m
│ │ │ │ ├── test16.m
│ │ │ │ ├── test17.m
│ │ │ │ ├── test18.m
│ │ │ │ ├── test19.m
│ │ │ │ ├── test1.m
│ │ │ │ ├── test20.m
│ │ │ │ ├── test21.m
│ │ │ │ ├── test22.m
│ │ │ │ ├── test23.m
│ │ │ │ ├── test24.m
│ │ │ │ ├── test25.m
│ │ │ │ ├── test26.m
│ │ │ │ ├── test27.m
│ │ │ │ ├── test28.m
│ │ │ │ ├── test2.m
│ │ │ │ ├── test3.m
│ │ │ │ ├── test4.m
│ │ │ │ ├── test5.m
│ │ │ │ ├── test6.m
│ │ │ │ ├── test7.m
│ │ │ │ ├── test8.m
│ │ │ │ ├── test9.m
│ │ │ │ ├── testall.m
│ │ │ │ ├── testh.m
│ │ │ │ ├── test_qr1.m
│ │ │ │ ├── test_qr.m
│ │ │ │ ├── test_qrsol.m
│ │ │ │ ├── test_randperms.m
│ │ │ │ └── test_sep.m
│ │ │ ├── Matrix
│ │ │ │ ├── ash219
│ │ │ │ ├── bcsstk01
│ │ │ │ ├── bcsstk16
│ │ │ │ ├── fs_183_1
│ │ │ │ ├── ibm32a
│ │ │ │ ├── ibm32b
│ │ │ │ ├── lp_afiro
│ │ │ │ ├── mbeacxc
│ │ │ │ ├── t1
│ │ │ │ └── west0067
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── cs_add.c
│ │ │ │ ├── cs_amd.c
│ │ │ │ ├── cs_chol.c
│ │ │ │ ├── cs_cholsol.c
│ │ │ │ ├── cs_compress.c
│ │ │ │ ├── cs_counts.c
│ │ │ │ ├── cs_cumsum.c
│ │ │ │ ├── cs_dfs.c
│ │ │ │ ├── cs_dmperm.c
│ │ │ │ ├── cs_droptol.c
│ │ │ │ ├── cs_dropzeros.c
│ │ │ │ ├── cs_dupl.c
│ │ │ │ ├── cs_entry.c
│ │ │ │ ├── cs_ereach.c
│ │ │ │ ├── cs_etree.c
│ │ │ │ ├── cs_fkeep.c
│ │ │ │ ├── cs_gaxpy.c
│ │ │ │ ├── cs_happly.c
│ │ │ │ ├── cs_house.c
│ │ │ │ ├── cs_ipvec.c
│ │ │ │ ├── cs_leaf.c
│ │ │ │ ├── cs_load.c
│ │ │ │ ├── cs_lsolve.c
│ │ │ │ ├── cs_ltsolve.c
│ │ │ │ ├── cs_lu.c
│ │ │ │ ├── cs_lusol.c
│ │ │ │ ├── cs_malloc.c
│ │ │ │ ├── cs_maxtrans.c
│ │ │ │ ├── cs_multiply.c
│ │ │ │ ├── cs_norm.c
│ │ │ │ ├── cs_permute.c
│ │ │ │ ├── cs_pinv.c
│ │ │ │ ├── cs_post.c
│ │ │ │ ├── cs_print.c
│ │ │ │ ├── cs_pvec.c
│ │ │ │ ├── cs_qr.c
│ │ │ │ ├── cs_qrsol.c
│ │ │ │ ├── cs_randperm.c
│ │ │ │ ├── cs_reach.c
│ │ │ │ ├── cs_scatter.c
│ │ │ │ ├── cs_scc.c
│ │ │ │ ├── cs_schol.c
│ │ │ │ ├── cs_spsolve.c
│ │ │ │ ├── cs_sqr.c
│ │ │ │ ├── cs_symperm.c
│ │ │ │ ├── cs_tdfs.c
│ │ │ │ ├── cs_transpose.c
│ │ │ │ ├── cs_updown.c
│ │ │ │ ├── cs_usolve.c
│ │ │ │ ├── cs_util.c
│ │ │ │ ├── cs_utsolve.c
│ │ │ │ └── README.txt
│ │ │ └── Tcov
│ │ │ ├── covall
│ │ │ ├── covall.linux
│ │ │ ├── covall.sol
│ │ │ ├── cov.awk
│ │ │ ├── cover
│ │ │ ├── covs
│ │ │ ├── cstcov_malloc_test.c
│ │ │ ├── cstcov_malloc_test.h
│ │ │ ├── cstcov_test.c
│ │ │ ├── gcovs
│ │ │ ├── Makefile
│ │ │ ├── nil
│ │ │ ├── README.txt
│ │ │ └── zero
│ │ ├── CSparse_to_CXSparse
│ │ ├── CXSparse
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── cs_ci_demo1.c
│ │ │ │ ├── cs_ci_demo2.c
│ │ │ │ ├── cs_ci_demo3.c
│ │ │ │ ├── cs_ci_demo.c
│ │ │ │ ├── cs_ci_demo.h
│ │ │ │ ├── cs_cl_demo1.c
│ │ │ │ ├── cs_cl_demo2.c
│ │ │ │ ├── cs_cl_demo3.c
│ │ │ │ ├── cs_cl_demo.c
│ │ │ │ ├── cs_cl_demo.h
│ │ │ │ ├── cs_demo1.c
│ │ │ │ ├── cs_demo2.c
│ │ │ │ ├── cs_demo3.c
│ │ │ │ ├── cs_demo.c
│ │ │ │ ├── cs_demo.h
│ │ │ │ ├── cs_demo.out
│ │ │ │ ├── cs_di_demo1.c
│ │ │ │ ├── cs_di_demo2.c
│ │ │ │ ├── cs_di_demo3.c
│ │ │ │ ├── cs_di_demo.c
│ │ │ │ ├── cs_di_demo.h
│ │ │ │ ├── cs_dl_demo1.c
│ │ │ │ ├── cs_dl_demo2.c
│ │ │ │ ├── cs_dl_demo3.c
│ │ │ │ ├── cs_dl_demo.c
│ │ │ │ ├── cs_dl_demo.h
│ │ │ │ ├── cs_idemo.c
│ │ │ │ ├── cs_ldemo.c
│ │ │ │ ├── Makefile
│ │ │ │ └── README.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── lesser.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── cs.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── cs_install.m
│ │ │ │ ├── CSparse
│ │ │ │ │ ├── ccspy.m
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_add.m
│ │ │ │ │ ├── cs_add_mex.c
│ │ │ │ │ ├── cs_amd.m
│ │ │ │ │ ├── cs_amd_mex.c
│ │ │ │ │ ├── cs_chol.m
│ │ │ │ │ ├── cs_chol_mex.c
│ │ │ │ │ ├── cs_cholsol.m
│ │ │ │ │ ├── cs_cholsol_mex.c
│ │ │ │ │ ├── cs_counts.m
│ │ │ │ │ ├── cs_counts_mex.c
│ │ │ │ │ ├── cs_dmperm.m
│ │ │ │ │ ├── cs_dmperm_mex.c
│ │ │ │ │ ├── cs_dmsol.m
│ │ │ │ │ ├── cs_dmspy.m
│ │ │ │ │ ├── cs_droptol.m
│ │ │ │ │ ├── cs_droptol_mex.c
│ │ │ │ │ ├── cs_esep.m
│ │ │ │ │ ├── cs_etree.m
│ │ │ │ │ ├── cs_etree_mex.c
│ │ │ │ │ ├── cs_gaxpy.m
│ │ │ │ │ ├── cs_gaxpy_mex.c
│ │ │ │ │ ├── cs_lsolve.m
│ │ │ │ │ ├── cs_lsolve_mex.c
│ │ │ │ │ ├── cs_ltsolve.m
│ │ │ │ │ ├── cs_ltsolve_mex.c
│ │ │ │ │ ├── cs_lu.m
│ │ │ │ │ ├── cs_lu_mex.c
│ │ │ │ │ ├── cs_lusol.m
│ │ │ │ │ ├── cs_lusol_mex.c
│ │ │ │ │ ├── cs_make.m
│ │ │ │ │ ├── cs_mex.c
│ │ │ │ │ ├── cs_mex.h
│ │ │ │ │ ├── cs_multiply.m
│ │ │ │ │ ├── cs_multiply_mex.c
│ │ │ │ │ ├── cs_must_compile.m
│ │ │ │ │ ├── cs_nd.m
│ │ │ │ │ ├── cs_nsep.m
│ │ │ │ │ ├── cs_permute.m
│ │ │ │ │ ├── cs_permute_mex.c
│ │ │ │ │ ├── cs_print.m
│ │ │ │ │ ├── cs_print_mex.c
│ │ │ │ │ ├── cspy.m
│ │ │ │ │ ├── cs_qleft.m
│ │ │ │ │ ├── cs_qright.m
│ │ │ │ │ ├── cs_qr.m
│ │ │ │ │ ├── cs_qr_mex.c
│ │ │ │ │ ├── cs_qrsol.m
│ │ │ │ │ ├── cs_qrsol_mex.c
│ │ │ │ │ ├── cs_randperm.m
│ │ │ │ │ ├── cs_randperm_mex.c
│ │ │ │ │ ├── cs_scc2.m
│ │ │ │ │ ├── cs_scc.m
│ │ │ │ │ ├── cs_scc_mex.c
│ │ │ │ │ ├── cs_sep.m
│ │ │ │ │ ├── cs_sparse.m
│ │ │ │ │ ├── cs_sparse_mex.c
│ │ │ │ │ ├── cs_sqr.m
│ │ │ │ │ ├── cs_sqr_mex.c
│ │ │ │ │ ├── cs_symperm.m
│ │ │ │ │ ├── cs_symperm_mex.c
│ │ │ │ │ ├── cs_thumb_mex.c
│ │ │ │ │ ├── cs_transpose.m
│ │ │ │ │ ├── cs_transpose_mex.c
│ │ │ │ │ ├── cs_updown.m
│ │ │ │ │ ├── cs_updown_mex.c
│ │ │ │ │ ├── cs_usolve.m
│ │ │ │ │ ├── cs_usolve_mex.c
│ │ │ │ │ ├── cs_utsolve.m
│ │ │ │ │ ├── cs_utsolve_mex.c
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── cs_make_helper.m
│ │ │ │ │ │ ├── drawboxes.m
│ │ │ │ │ │ └── drawbox.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── Demo
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_demo1.m
│ │ │ │ │ ├── cs_demo2.m
│ │ │ │ │ ├── cs_demo3.m
│ │ │ │ │ ├── cs_demo.m
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── demo2.m
│ │ │ │ │ │ ├── demo3.m
│ │ │ │ │ │ ├── ex_1.m
│ │ │ │ │ │ ├── ex2.m
│ │ │ │ │ │ ├── ex3.m
│ │ │ │ │ │ ├── frand.m
│ │ │ │ │ │ ├── get_problem.m
│ │ │ │ │ │ ├── is_sym.m
│ │ │ │ │ │ ├── mesh2d1.m
│ │ │ │ │ │ ├── mesh2d2.m
│ │ │ │ │ │ ├── mesh3d1.m
│ │ │ │ │ │ ├── mesh3d2.m
│ │ │ │ │ │ ├── print_order.m
│ │ │ │ │ │ ├── print_resid.m
│ │ │ │ │ │ └── rhs.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── README.txt
│ │ │ │ ├── ssget
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── Doc
│ │ │ │ │ │ ├── ChangeLog
│ │ │ │ │ │ └── License.txt
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── ss_index.mat
│ │ │ │ │ │ └── ssstats.csv
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mat
│ │ │ │ │ ├── MM
│ │ │ │ │ ├── RB
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── ssget_defaults.m
│ │ │ │ │ ├── ssget_example.m
│ │ │ │ │ ├── ssget_lookup.m
│ │ │ │ │ ├── ssget.m
│ │ │ │ │ ├── ssgrep.m
│ │ │ │ │ ├── ssgui.jar
│ │ │ │ │ ├── ssgui.java
│ │ │ │ │ ├── sshelp.html
│ │ │ │ │ ├── sskinds.m
│ │ │ │ │ ├── sssvd.m
│ │ │ │ │ ├── ssweb.m
│ │ │ │ │ ├── svd
│ │ │ │ │ ├── UFget.m
│ │ │ │ │ └── UFkinds.m
│ │ │ │ └── Test
│ │ │ │ ├── another_colormap.m
│ │ │ │ ├── check_if_same.m
│ │ │ │ ├── choldn.m
│ │ │ │ ├── chol_downdate.m
│ │ │ │ ├── chol_example.m
│ │ │ │ ├── chol_left2.m
│ │ │ │ ├── chol_left.m
│ │ │ │ ├── chol_right.m
│ │ │ │ ├── chol_super.m
│ │ │ │ ├── chol_update.m
│ │ │ │ ├── chol_updown2.m
│ │ │ │ ├── chol_updown.m
│ │ │ │ ├── cholupdown.m
│ │ │ │ ├── chol_up.m
│ │ │ │ ├── cholup.m
│ │ │ │ ├── cond1est.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── cs_fiedler.m
│ │ │ │ ├── cs_frand.m
│ │ │ │ ├── cs_frand_mex.c
│ │ │ │ ├── cs_ipvec.m
│ │ │ │ ├── cs_ipvec_mex.c
│ │ │ │ ├── cs_maxtransr.m
│ │ │ │ ├── cs_maxtransr_mex.c
│ │ │ │ ├── cs_pvec.m
│ │ │ │ ├── cs_pvec_mex.c
│ │ │ │ ├── cspy_test.m
│ │ │ │ ├── cs_q1.m
│ │ │ │ ├── cs_reach.m
│ │ │ │ ├── cs_reach_mex.c
│ │ │ │ ├── cs_reachr.m
│ │ │ │ ├── cs_reachr_mex.c
│ │ │ │ ├── cs_rowcnt.m
│ │ │ │ ├── cs_rowcnt_mex.c
│ │ │ │ ├── cs_sparse2.m
│ │ │ │ ├── cs_sparse2_mex.c
│ │ │ │ ├── cs_test_make.m
│ │ │ │ ├── dmperm_test.m
│ │ │ │ ├── dmspy_test.m
│ │ │ │ ├── etree_sample.m
│ │ │ │ ├── givens2.m
│ │ │ │ ├── gqr3.m
│ │ │ │ ├── happly.m
│ │ │ │ ├── hmake1.m
│ │ │ │ ├── house.m
│ │ │ │ ├── lu_left.m
│ │ │ │ ├── lu_right.m
│ │ │ │ ├── lu_rightp.m
│ │ │ │ ├── lu_rightpr.m
│ │ │ │ ├── lu_rightr.m
│ │ │ │ ├── mynormest1.m
│ │ │ │ ├── myqr.m
│ │ │ │ ├── norm1est.m
│ │ │ │ ├── qr2.m
│ │ │ │ ├── qr_givens_full.m
│ │ │ │ ├── qr_givens.m
│ │ │ │ ├── qr_left.m
│ │ │ │ ├── qr_right.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── sample_colormap.m
│ │ │ │ ├── signum.m
│ │ │ │ ├── sqr_example.m
│ │ │ │ ├── test10.m
│ │ │ │ ├── test11.m
│ │ │ │ ├── test12.m
│ │ │ │ ├── test13.m
│ │ │ │ ├── test14.m
│ │ │ │ ├── test15.m
│ │ │ │ ├── test16.m
│ │ │ │ ├── test17.m
│ │ │ │ ├── test18.m
│ │ │ │ ├── test19.m
│ │ │ │ ├── test1.m
│ │ │ │ ├── test20.m
│ │ │ │ ├── test21.m
│ │ │ │ ├── test22.m
│ │ │ │ ├── test23.m
│ │ │ │ ├── test24.m
│ │ │ │ ├── test25.m
│ │ │ │ ├── test26.m
│ │ │ │ ├── test27.m
│ │ │ │ ├── test28.m
│ │ │ │ ├── test2.m
│ │ │ │ ├── test3.m
│ │ │ │ ├── test4.m
│ │ │ │ ├── test5.m
│ │ │ │ ├── test6.m
│ │ │ │ ├── test7.m
│ │ │ │ ├── test8.m
│ │ │ │ ├── test9.m
│ │ │ │ ├── testall.m
│ │ │ │ ├── testh.m
│ │ │ │ ├── test_qr1.m
│ │ │ │ ├── test_qr.m
│ │ │ │ ├── test_qrsol.m
│ │ │ │ ├── test_randperms.m
│ │ │ │ └── test_sep.m
│ │ │ ├── Matrix
│ │ │ │ ├── ash219
│ │ │ │ ├── bcsstk01
│ │ │ │ ├── bcsstk16
│ │ │ │ ├── c4
│ │ │ │ ├── c_ibm32a
│ │ │ │ ├── c_ibm32b
│ │ │ │ ├── c_mbeacxc
│ │ │ │ ├── c_west0067
│ │ │ │ ├── fs_183_1
│ │ │ │ ├── ibm32a
│ │ │ │ ├── ibm32b
│ │ │ │ ├── lp_afiro
│ │ │ │ ├── mbeacxc
│ │ │ │ ├── mhd1280b
│ │ │ │ ├── neumann
│ │ │ │ ├── qc324
│ │ │ │ ├── t1
│ │ │ │ ├── t2
│ │ │ │ ├── t3
│ │ │ │ ├── t4
│ │ │ │ ├── west0067
│ │ │ │ └── young1c
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── cs_add.c
│ │ │ │ ├── cs_amd.c
│ │ │ │ ├── cs_chol.c
│ │ │ │ ├── cs_cholsol.c
│ │ │ │ ├── cs_compress.c
│ │ │ │ ├── cs_convert.c
│ │ │ │ ├── cs_counts.c
│ │ │ │ ├── cs_cumsum.c
│ │ │ │ ├── cs_dfs.c
│ │ │ │ ├── cs_dmperm.c
│ │ │ │ ├── cs_droptol.c
│ │ │ │ ├── cs_dropzeros.c
│ │ │ │ ├── cs_dupl.c
│ │ │ │ ├── cs_entry.c
│ │ │ │ ├── cs_ereach.c
│ │ │ │ ├── cs_etree.c
│ │ │ │ ├── cs_fkeep.c
│ │ │ │ ├── cs_gaxpy.c
│ │ │ │ ├── cs_happly.c
│ │ │ │ ├── cs_house.c
│ │ │ │ ├── cs_ipvec.c
│ │ │ │ ├── cs_leaf.c
│ │ │ │ ├── cs_load.c
│ │ │ │ ├── cs_lsolve.c
│ │ │ │ ├── cs_ltsolve.c
│ │ │ │ ├── cs_lu.c
│ │ │ │ ├── cs_lusol.c
│ │ │ │ ├── cs_malloc.c
│ │ │ │ ├── cs_maxtrans.c
│ │ │ │ ├── cs_multiply.c
│ │ │ │ ├── cs_norm.c
│ │ │ │ ├── cs_permute.c
│ │ │ │ ├── cs_pinv.c
│ │ │ │ ├── cs_post.c
│ │ │ │ ├── cs_print.c
│ │ │ │ ├── cs_pvec.c
│ │ │ │ ├── cs_qr.c
│ │ │ │ ├── cs_qrsol.c
│ │ │ │ ├── cs_randperm.c
│ │ │ │ ├── cs_reach.c
│ │ │ │ ├── cs_scatter.c
│ │ │ │ ├── cs_scc.c
│ │ │ │ ├── cs_schol.c
│ │ │ │ ├── cs_spsolve.c
│ │ │ │ ├── cs_sqr.c
│ │ │ │ ├── cs_symperm.c
│ │ │ │ ├── cs_tdfs.c
│ │ │ │ ├── cs_transpose.c
│ │ │ │ ├── cs_updown.c
│ │ │ │ ├── cs_usolve.c
│ │ │ │ ├── cs_util.c
│ │ │ │ ├── cs_utsolve.c
│ │ │ │ └── README.txt
│ │ │ ├── SourceWrappers
│ │ │ │ ├── cs_add_ci.o.c
│ │ │ │ ├── cs_add_cl.o.c
│ │ │ │ ├── cs_add_di.o.c
│ │ │ │ ├── cs_add_dl.o.c
│ │ │ │ ├── cs_amd_ci.o.c
│ │ │ │ ├── cs_amd_cl.o.c
│ │ │ │ ├── cs_amd_di.o.c
│ │ │ │ ├── cs_amd_dl.o.c
│ │ │ │ ├── cs_chol_ci.o.c
│ │ │ │ ├── cs_chol_cl.o.c
│ │ │ │ ├── cs_chol_di.o.c
│ │ │ │ ├── cs_chol_dl.o.c
│ │ │ │ ├── cs_cholsol_ci.o.c
│ │ │ │ ├── cs_cholsol_cl.o.c
│ │ │ │ ├── cs_cholsol_di.o.c
│ │ │ │ ├── cs_cholsol_dl.o.c
│ │ │ │ ├── cs_compress_ci.o.c
│ │ │ │ ├── cs_compress_cl.o.c
│ │ │ │ ├── cs_compress_di.o.c
│ │ │ │ ├── cs_compress_dl.o.c
│ │ │ │ ├── cs_convert.o.c
│ │ │ │ ├── cs_counts_ci.o.c
│ │ │ │ ├── cs_counts_cl.o.c
│ │ │ │ ├── cs_counts_di.o.c
│ │ │ │ ├── cs_counts_dl.o.c
│ │ │ │ ├── cs_cumsum_ci.o.c
│ │ │ │ ├── cs_cumsum_cl.o.c
│ │ │ │ ├── cs_cumsum_di.o.c
│ │ │ │ ├── cs_cumsum_dl.o.c
│ │ │ │ ├── cs_dfs_ci.o.c
│ │ │ │ ├── cs_dfs_cl.o.c
│ │ │ │ ├── cs_dfs_di.o.c
│ │ │ │ ├── cs_dfs_dl.o.c
│ │ │ │ ├── cs_dmperm_ci.o.c
│ │ │ │ ├── cs_dmperm_cl.o.c
│ │ │ │ ├── cs_dmperm_di.o.c
│ │ │ │ ├── cs_dmperm_dl.o.c
│ │ │ │ ├── cs_droptol_ci.o.c
│ │ │ │ ├── cs_droptol_cl.o.c
│ │ │ │ ├── cs_droptol_di.o.c
│ │ │ │ ├── cs_droptol_dl.o.c
│ │ │ │ ├── cs_dropzeros_ci.o.c
│ │ │ │ ├── cs_dropzeros_cl.o.c
│ │ │ │ ├── cs_dropzeros_di.o.c
│ │ │ │ ├── cs_dropzeros_dl.o.c
│ │ │ │ ├── cs_dupl_ci.o.c
│ │ │ │ ├── cs_dupl_cl.o.c
│ │ │ │ ├── cs_dupl_di.o.c
│ │ │ │ ├── cs_dupl_dl.o.c
│ │ │ │ ├── cs_entry_ci.o.c
│ │ │ │ ├── cs_entry_cl.o.c
│ │ │ │ ├── cs_entry_di.o.c
│ │ │ │ ├── cs_entry_dl.o.c
│ │ │ │ ├── cs_ereach_ci.o.c
│ │ │ │ ├── cs_ereach_cl.o.c
│ │ │ │ ├── cs_ereach_di.o.c
│ │ │ │ ├── cs_ereach_dl.o.c
│ │ │ │ ├── cs_etree_ci.o.c
│ │ │ │ ├── cs_etree_cl.o.c
│ │ │ │ ├── cs_etree_di.o.c
│ │ │ │ ├── cs_etree_dl.o.c
│ │ │ │ ├── cs_fkeep_ci.o.c
│ │ │ │ ├── cs_fkeep_cl.o.c
│ │ │ │ ├── cs_fkeep_di.o.c
│ │ │ │ ├── cs_fkeep_dl.o.c
│ │ │ │ ├── cs_gaxpy_ci.o.c
│ │ │ │ ├── cs_gaxpy_cl.o.c
│ │ │ │ ├── cs_gaxpy_di.o.c
│ │ │ │ ├── cs_gaxpy_dl.o.c
│ │ │ │ ├── cs_happly_ci.o.c
│ │ │ │ ├── cs_happly_cl.o.c
│ │ │ │ ├── cs_happly_di.o.c
│ │ │ │ ├── cs_happly_dl.o.c
│ │ │ │ ├── cs_house_ci.o.c
│ │ │ │ ├── cs_house_cl.o.c
│ │ │ │ ├── cs_house_di.o.c
│ │ │ │ ├── cs_house_dl.o.c
│ │ │ │ ├── cs_ipvec_ci.o.c
│ │ │ │ ├── cs_ipvec_cl.o.c
│ │ │ │ ├── cs_ipvec_di.o.c
│ │ │ │ ├── cs_ipvec_dl.o.c
│ │ │ │ ├── cs_leaf_ci.o.c
│ │ │ │ ├── cs_leaf_cl.o.c
│ │ │ │ ├── cs_leaf_di.o.c
│ │ │ │ ├── cs_leaf_dl.o.c
│ │ │ │ ├── cs_load_ci.o.c
│ │ │ │ ├── cs_load_cl.o.c
│ │ │ │ ├── cs_load_di.o.c
│ │ │ │ ├── cs_load_dl.o.c
│ │ │ │ ├── cs_lsolve_ci.o.c
│ │ │ │ ├── cs_lsolve_cl.o.c
│ │ │ │ ├── cs_lsolve_di.o.c
│ │ │ │ ├── cs_lsolve_dl.o.c
│ │ │ │ ├── cs_ltsolve_ci.o.c
│ │ │ │ ├── cs_ltsolve_cl.o.c
│ │ │ │ ├── cs_ltsolve_di.o.c
│ │ │ │ ├── cs_ltsolve_dl.o.c
│ │ │ │ ├── cs_lu_ci.o.c
│ │ │ │ ├── cs_lu_cl.o.c
│ │ │ │ ├── cs_lu_di.o.c
│ │ │ │ ├── cs_lu_dl.o.c
│ │ │ │ ├── cs_lusol_ci.o.c
│ │ │ │ ├── cs_lusol_cl.o.c
│ │ │ │ ├── cs_lusol_di.o.c
│ │ │ │ ├── cs_lusol_dl.o.c
│ │ │ │ ├── cs_malloc_ci.o.c
│ │ │ │ ├── cs_malloc_cl.o.c
│ │ │ │ ├── cs_malloc_di.o.c
│ │ │ │ ├── cs_malloc_dl.o.c
│ │ │ │ ├── cs_maxtrans_ci.o.c
│ │ │ │ ├── cs_maxtrans_cl.o.c
│ │ │ │ ├── cs_maxtrans_di.o.c
│ │ │ │ ├── cs_maxtrans_dl.o.c
│ │ │ │ ├── cs_multiply_ci.o.c
│ │ │ │ ├── cs_multiply_cl.o.c
│ │ │ │ ├── cs_multiply_di.o.c
│ │ │ │ ├── cs_multiply_dl.o.c
│ │ │ │ ├── cs_norm_ci.o.c
│ │ │ │ ├── cs_norm_cl.o.c
│ │ │ │ ├── cs_norm_di.o.c
│ │ │ │ ├── cs_norm_dl.o.c
│ │ │ │ ├── cs_permute_ci.o.c
│ │ │ │ ├── cs_permute_cl.o.c
│ │ │ │ ├── cs_permute_di.o.c
│ │ │ │ ├── cs_permute_dl.o.c
│ │ │ │ ├── cs_pinv_ci.o.c
│ │ │ │ ├── cs_pinv_cl.o.c
│ │ │ │ ├── cs_pinv_di.o.c
│ │ │ │ ├── cs_pinv_dl.o.c
│ │ │ │ ├── cs_post_ci.o.c
│ │ │ │ ├── cs_post_cl.o.c
│ │ │ │ ├── cs_post_di.o.c
│ │ │ │ ├── cs_post_dl.o.c
│ │ │ │ ├── cs_print_ci.o.c
│ │ │ │ ├── cs_print_cl.o.c
│ │ │ │ ├── cs_print_di.o.c
│ │ │ │ ├── cs_print_dl.o.c
│ │ │ │ ├── cs_pvec_ci.o.c
│ │ │ │ ├── cs_pvec_cl.o.c
│ │ │ │ ├── cs_pvec_di.o.c
│ │ │ │ ├── cs_pvec_dl.o.c
│ │ │ │ ├── cs_qr_ci.o.c
│ │ │ │ ├── cs_qr_cl.o.c
│ │ │ │ ├── cs_qr_di.o.c
│ │ │ │ ├── cs_qr_dl.o.c
│ │ │ │ ├── cs_qrsol_ci.o.c
│ │ │ │ ├── cs_qrsol_cl.o.c
│ │ │ │ ├── cs_qrsol_di.o.c
│ │ │ │ ├── cs_qrsol_dl.o.c
│ │ │ │ ├── cs_randperm_ci.o.c
│ │ │ │ ├── cs_randperm_cl.o.c
│ │ │ │ ├── cs_randperm_di.o.c
│ │ │ │ ├── cs_randperm_dl.o.c
│ │ │ │ ├── cs_reach_ci.o.c
│ │ │ │ ├── cs_reach_cl.o.c
│ │ │ │ ├── cs_reach_di.o.c
│ │ │ │ ├── cs_reach_dl.o.c
│ │ │ │ ├── cs_scatter_ci.o.c
│ │ │ │ ├── cs_scatter_cl.o.c
│ │ │ │ ├── cs_scatter_di.o.c
│ │ │ │ ├── cs_scatter_dl.o.c
│ │ │ │ ├── cs_scc_ci.o.c
│ │ │ │ ├── cs_scc_cl.o.c
│ │ │ │ ├── cs_scc_di.o.c
│ │ │ │ ├── cs_scc_dl.o.c
│ │ │ │ ├── cs_schol_ci.o.c
│ │ │ │ ├── cs_schol_cl.o.c
│ │ │ │ ├── cs_schol_di.o.c
│ │ │ │ ├── cs_schol_dl.o.c
│ │ │ │ ├── cs_spsolve_ci.o.c
│ │ │ │ ├── cs_spsolve_cl.o.c
│ │ │ │ ├── cs_spsolve_di.o.c
│ │ │ │ ├── cs_spsolve_dl.o.c
│ │ │ │ ├── cs_sqr_ci.o.c
│ │ │ │ ├── cs_sqr_cl.o.c
│ │ │ │ ├── cs_sqr_di.o.c
│ │ │ │ ├── cs_sqr_dl.o.c
│ │ │ │ ├── cs_symperm_ci.o.c
│ │ │ │ ├── cs_symperm_cl.o.c
│ │ │ │ ├── cs_symperm_di.o.c
│ │ │ │ ├── cs_symperm_dl.o.c
│ │ │ │ ├── cs_tdfs_ci.o.c
│ │ │ │ ├── cs_tdfs_cl.o.c
│ │ │ │ ├── cs_tdfs_di.o.c
│ │ │ │ ├── cs_tdfs_dl.o.c
│ │ │ │ ├── cs_transpose_ci.o.c
│ │ │ │ ├── cs_transpose_cl.o.c
│ │ │ │ ├── cs_transpose_di.o.c
│ │ │ │ ├── cs_transpose_dl.o.c
│ │ │ │ ├── cs_updown_ci.o.c
│ │ │ │ ├── cs_updown_cl.o.c
│ │ │ │ ├── cs_updown_di.o.c
│ │ │ │ ├── cs_updown_dl.o.c
│ │ │ │ ├── cs_usolve_ci.o.c
│ │ │ │ ├── cs_usolve_cl.o.c
│ │ │ │ ├── cs_usolve_di.o.c
│ │ │ │ ├── cs_usolve_dl.o.c
│ │ │ │ ├── cs_util_ci.o.c
│ │ │ │ ├── cs_util_cl.o.c
│ │ │ │ ├── cs_util_di.o.c
│ │ │ │ ├── cs_util_dl.o.c
│ │ │ │ ├── cs_utsolve_ci.o.c
│ │ │ │ ├── cs_utsolve_cl.o.c
│ │ │ │ ├── cs_utsolve_di.o.c
│ │ │ │ └── cs_utsolve_dl.o.c
│ │ │ └── Tcov
│ │ │ ├── covall
│ │ │ ├── covall.linux
│ │ │ ├── covall.sol
│ │ │ ├── cov.awk
│ │ │ ├── cover
│ │ │ ├── covs
│ │ │ ├── cstcov_malloc_test.c
│ │ │ ├── cstcov_malloc_test.h
│ │ │ ├── cstcov_test.c
│ │ │ ├── czero
│ │ │ ├── gcovs
│ │ │ ├── Makefile
│ │ │ ├── nil
│ │ │ ├── README.txt
│ │ │ └── zero
│ │ ├── CXSparse_newfiles
│ │ │ ├── Demo
│ │ │ │ ├── cs_idemo.c
│ │ │ │ ├── cs_ldemo.c
│ │ │ │ ├── Makefile
│ │ │ │ └── README.txt
│ │ │ ├── Doc
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── cs.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── MATLAB
│ │ │ │ ├── cs_install.m
│ │ │ │ ├── CSparse
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_add_mex.c
│ │ │ │ │ ├── cs_amd_mex.c
│ │ │ │ │ ├── cs_chol_mex.c
│ │ │ │ │ ├── cs_cholsol_mex.c
│ │ │ │ │ ├── cs_counts_mex.c
│ │ │ │ │ ├── cs_dmperm_mex.c
│ │ │ │ │ ├── cs_droptol_mex.c
│ │ │ │ │ ├── cs_esep.m
│ │ │ │ │ ├── cs_etree_mex.c
│ │ │ │ │ ├── cs_gaxpy_mex.c
│ │ │ │ │ ├── cs_lsolve_mex.c
│ │ │ │ │ ├── cs_ltsolve_mex.c
│ │ │ │ │ ├── cs_lu_mex.c
│ │ │ │ │ ├── cs_lusol_mex.c
│ │ │ │ │ ├── cs_make.m
│ │ │ │ │ ├── cs_mex.c
│ │ │ │ │ ├── cs_mex.h
│ │ │ │ │ ├── cs_multiply_mex.c
│ │ │ │ │ ├── cs_permute_mex.c
│ │ │ │ │ ├── cs_print_mex.c
│ │ │ │ │ ├── cs_qr_mex.c
│ │ │ │ │ ├── cs_qrsol_mex.c
│ │ │ │ │ ├── cs_randperm_mex.c
│ │ │ │ │ ├── cs_scc_mex.c
│ │ │ │ │ ├── cs_sparse_mex.c
│ │ │ │ │ ├── cs_sqr_mex.c
│ │ │ │ │ ├── cs_symperm_mex.c
│ │ │ │ │ ├── cs_thumb_mex.c
│ │ │ │ │ ├── cs_transpose.m
│ │ │ │ │ ├── cs_transpose_mex.c
│ │ │ │ │ ├── cs_updown_mex.c
│ │ │ │ │ ├── cs_usolve_mex.c
│ │ │ │ │ ├── cs_utsolve_mex.c
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── cs_make_helper.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── Demo
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── cs_demo.m
│ │ │ │ │ └── README.txt
│ │ │ │ ├── README.txt
│ │ │ │ └── Test
│ │ │ │ ├── chol_updown2.m
│ │ │ │ ├── cholupdown.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── cs_fiedler.m
│ │ │ │ ├── cs_frand_mex.c
│ │ │ │ ├── cs_ipvec_mex.c
│ │ │ │ ├── cs_maxtransr_mex.c
│ │ │ │ ├── cs_pvec_mex.c
│ │ │ │ ├── cs_reach_mex.c
│ │ │ │ ├── cs_reachr_mex.c
│ │ │ │ ├── cs_rowcnt_mex.c
│ │ │ │ ├── cs_sparse2_mex.c
│ │ │ │ ├── cs_test_make.m
│ │ │ │ ├── house.m
│ │ │ │ ├── norm1est.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── test10.m
│ │ │ │ ├── test11.m
│ │ │ │ ├── test12.m
│ │ │ │ ├── test13.m
│ │ │ │ ├── test14.m
│ │ │ │ ├── test15.m
│ │ │ │ ├── test16.m
│ │ │ │ ├── test17.m
│ │ │ │ ├── test18.m
│ │ │ │ ├── test19.m
│ │ │ │ ├── test1.m
│ │ │ │ ├── test20.m
│ │ │ │ ├── test21.m
│ │ │ │ ├── test22.m
│ │ │ │ ├── test23.m
│ │ │ │ ├── test24.m
│ │ │ │ ├── test25.m
│ │ │ │ ├── test26.m
│ │ │ │ ├── test27.m
│ │ │ │ ├── test28.m
│ │ │ │ ├── test2.m
│ │ │ │ ├── test3.m
│ │ │ │ ├── test4.m
│ │ │ │ ├── test5.m
│ │ │ │ ├── test6.m
│ │ │ │ ├── test7.m
│ │ │ │ ├── test8.m
│ │ │ │ ├── test9.m
│ │ │ │ ├── testall.m
│ │ │ │ └── testh.m
│ │ │ ├── Matrix
│ │ │ │ ├── c4
│ │ │ │ ├── c_ibm32a
│ │ │ │ ├── c_ibm32b
│ │ │ │ ├── c_mbeacxc
│ │ │ │ ├── c_west0067
│ │ │ │ ├── mhd1280b
│ │ │ │ ├── neumann
│ │ │ │ ├── qc324
│ │ │ │ ├── t2
│ │ │ │ ├── t3
│ │ │ │ ├── t4
│ │ │ │ └── young1c
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── cs_convert.c
│ │ │ │ ├── cs_house.c
│ │ │ │ ├── cs_load.c
│ │ │ │ ├── cs_print.c
│ │ │ │ ├── cs_updown.c
│ │ │ │ └── README.txt
│ │ │ └── Tcov
│ │ │ ├── cstcov_malloc_test.c
│ │ │ ├── cstcov_malloc_test.h
│ │ │ ├── czero
│ │ │ ├── Makefile
│ │ │ └── README.txt
│ │ ├── GPUQREngine
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── gpuqrengine_demo.cpp
│ │ │ │ ├── Makefile
│ │ │ │ └── README.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── gpl.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ ├── GPUQREngine_BucketList.hpp
│ │ │ │ ├── GPUQREngine_Common.hpp
│ │ │ │ ├── GPUQREngine_Front.hpp
│ │ │ │ ├── GPUQREngine_FrontState.hpp
│ │ │ │ ├── GPUQREngine_GraphVizHelper.hpp
│ │ │ │ ├── GPUQREngine.hpp
│ │ │ │ ├── GPUQREngine_Internal.hpp
│ │ │ │ ├── GPUQREngine_LLBundle.hpp
│ │ │ │ ├── GPUQREngine_Scheduler.hpp
│ │ │ │ ├── GPUQREngine_SEntry.hpp
│ │ │ │ ├── GPUQREngine_SparseMeta.hpp
│ │ │ │ ├── GPUQREngine_Stats.hpp
│ │ │ │ ├── GPUQREngine_TaskDescriptor.hpp
│ │ │ │ ├── GPUQREngine_Timing.hpp
│ │ │ │ └── Kernel
│ │ │ │ ├── Apply
│ │ │ │ │ ├── block_apply_1_by_1.cu
│ │ │ │ │ ├── block_apply_1.cu
│ │ │ │ │ ├── block_apply_2_by_1.cu
│ │ │ │ │ ├── block_apply_2.cu
│ │ │ │ │ ├── block_apply_3_by_1.cu
│ │ │ │ │ ├── block_apply_3.cu
│ │ │ │ │ ├── block_apply_chunk.cu
│ │ │ │ │ ├── block_apply.cu
│ │ │ │ │ ├── cevta_tile.cu
│ │ │ │ │ ├── params_apply.hpp
│ │ │ │ │ └── pipelined_rearrange.cu
│ │ │ │ ├── Assemble
│ │ │ │ │ ├── packAssemble.cu
│ │ │ │ │ └── sAssemble.cu
│ │ │ │ ├── Factorize
│ │ │ │ │ ├── factorize_3_by_1.cu
│ │ │ │ │ ├── factorize_vt_1_by_1.cu
│ │ │ │ │ ├── factorize_vt_1_by_1_edge.cu
│ │ │ │ │ ├── factorize_vt_2_by_1.cu
│ │ │ │ │ ├── factorize_vt_2_by_1_edge.cu
│ │ │ │ │ ├── factorize_vt_3_by_1.cu
│ │ │ │ │ ├── factorize_vt_3_by_1_edge.cu
│ │ │ │ │ └── factorize_vt.cu
│ │ │ │ ├── qrKernel.cu
│ │ │ │ ├── sharedMemory.hpp
│ │ │ │ └── uberKernel.cu
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── README.txt
│ │ │ └── Source
│ │ │ ├── BucketList
│ │ │ │ ├── BucketList_AdvanceBundles.cpp
│ │ │ │ ├── BucketList.cpp
│ │ │ │ ├── BucketList_CreateBundles.cpp
│ │ │ │ ├── BucketList_FillWorkQueue.cpp
│ │ │ │ ├── BucketList_GrowBundles.cpp
│ │ │ │ ├── BucketList_Manage.cpp
│ │ │ │ └── BucketList_PostProcessing.cpp
│ │ │ ├── GPUQREngine_ExpertDense.cpp
│ │ │ ├── GPUQREngine_ExpertSparse.cpp
│ │ │ ├── GPUQREngine_GraphVizHelper.cpp
│ │ │ ├── GPUQREngine_Internal.cpp
│ │ │ ├── GPUQREngine_UberKernel.cu
│ │ │ ├── LLBundle
│ │ │ │ ├── LLBundle_AddTiles.cpp
│ │ │ │ ├── LLBundle_Advance.cpp
│ │ │ │ ├── LLBundle.cpp
│ │ │ │ ├── LLBundle_GPUPack.cpp
│ │ │ │ ├── LLBundle_PipelinedRearrange.cpp
│ │ │ │ └── LLBundle_UpdateSecondMinIndex.cpp
│ │ │ ├── Scheduler
│ │ │ │ ├── Scheduler.cpp
│ │ │ │ ├── Scheduler_FillWorkQueue.cpp
│ │ │ │ ├── Scheduler_Front.cpp
│ │ │ │ ├── Scheduler_LaunchKernel.cpp
│ │ │ │ ├── Scheduler_PostProcess.cpp
│ │ │ │ ├── Scheduler_Render.cpp
│ │ │ │ ├── Scheduler_TransferData.cpp
│ │ │ │ └── ssgpu_maxQueueSize.cpp
│ │ │ └── TaskDescriptor
│ │ │ └── TaskDescriptor_flops.cpp
│ │ ├── GraphBLAS
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Config
│ │ │ │ ├── GraphBLAS_API_version.tex.in
│ │ │ │ ├── GraphBLAS.h.in
│ │ │ │ ├── GraphBLAS_version.tex.in
│ │ │ │ ├── README.txt.in
│ │ │ │ ├── user_dec1.m4
│ │ │ │ ├── user_dec2.m4
│ │ │ │ ├── user_def0.m4
│ │ │ │ ├── user_def1.m4
│ │ │ │ └── user_def2.m4
│ │ │ ├── Demo
│ │ │ │ ├── demo
│ │ │ │ ├── go
│ │ │ │ ├── go2
│ │ │ │ ├── go3
│ │ │ │ ├── Include
│ │ │ │ │ ├── demos.h
│ │ │ │ │ ├── simple_rand.h
│ │ │ │ │ ├── simple_timer.h
│ │ │ │ │ └── usercomplex.h
│ │ │ │ ├── MATLAB
│ │ │ │ │ ├── adj_to_edges.m
│ │ │ │ │ ├── check_adj.m
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── dpagerank2.m
│ │ │ │ │ ├── dpagerank.m
│ │ │ │ │ ├── edges_to_adj.m
│ │ │ │ │ ├── ipagerank.m
│ │ │ │ │ ├── kron_demo.m
│ │ │ │ │ ├── kron_test.m
│ │ │ │ │ ├── rowscale.m
│ │ │ │ │ ├── tricount.m
│ │ │ │ │ ├── tri_matlab.m
│ │ │ │ │ └── tri_matlab_out.txt
│ │ │ │ ├── Matrix
│ │ │ │ │ ├── 2blocks
│ │ │ │ │ ├── ash219
│ │ │ │ │ ├── bcsstk01
│ │ │ │ │ ├── bcsstk16
│ │ │ │ │ ├── eye3
│ │ │ │ │ ├── fs_183_1
│ │ │ │ │ ├── huge
│ │ │ │ │ ├── ibm32a
│ │ │ │ │ ├── ibm32b
│ │ │ │ │ ├── lp_afiro
│ │ │ │ │ ├── mbeacxc
│ │ │ │ │ ├── t1
│ │ │ │ │ ├── t2
│ │ │ │ │ └── west0067
│ │ │ │ ├── Output
│ │ │ │ │ ├── bfs_demo.out
│ │ │ │ │ ├── complex_demo_out.m
│ │ │ │ │ ├── go2.out
│ │ │ │ │ ├── go3.out
│ │ │ │ │ ├── go.out
│ │ │ │ │ ├── mis_demo.out
│ │ │ │ │ ├── pagerank_demo.out
│ │ │ │ │ ├── simple_demo.out
│ │ │ │ │ ├── tri_demo.out
│ │ │ │ │ ├── user_none_gb_none.out
│ │ │ │ │ ├── user_none_gb_openmp.out
│ │ │ │ │ ├── user_none_gb_pthread.out
│ │ │ │ │ ├── user_openmp_gb_none.out
│ │ │ │ │ ├── user_openmp_gb_openmp.out
│ │ │ │ │ ├── user_openmp_gb_pthread.out
│ │ │ │ │ ├── user_pthread_gb_none.out
│ │ │ │ │ ├── user_pthread_gb_openmp.out
│ │ │ │ │ ├── user_pthread_gb_pthread.out
│ │ │ │ │ ├── V112
│ │ │ │ │ │ ├── go3_out_laptop.txt
│ │ │ │ │ │ ├── go_out_cholesky.txt
│ │ │ │ │ │ ├── go_out_laptop.txt
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ ├── V210
│ │ │ │ │ │ ├── bfs_demo.out
│ │ │ │ │ │ ├── go2_out_laptop.txt
│ │ │ │ │ │ ├── go3_out_laptop.txt
│ │ │ │ │ │ ├── go_out_cholesky.txt
│ │ │ │ │ │ ├── go_out_laptop.txt
│ │ │ │ │ │ ├── mis_demo.out
│ │ │ │ │ │ ├── pagerank_demo.out
│ │ │ │ │ │ ├── simple_demo.out
│ │ │ │ │ │ ├── tri_demo.out
│ │ │ │ │ │ └── wildtype_demo.out
│ │ │ │ │ ├── V220
│ │ │ │ │ │ └── go_out_cholesky.txt
│ │ │ │ │ └── wildtype_demo.out
│ │ │ │ ├── pp
│ │ │ │ ├── Program
│ │ │ │ │ ├── bfs_demo.c
│ │ │ │ │ ├── complex_demo.c
│ │ │ │ │ ├── kron_demo.c
│ │ │ │ │ ├── mis_demo.c
│ │ │ │ │ ├── openmp_demo.c
│ │ │ │ │ ├── pagerank_demo.c
│ │ │ │ │ ├── pthread_demo.c
│ │ │ │ │ ├── simple_demo.c
│ │ │ │ │ ├── tri_demo.c
│ │ │ │ │ └── wildtype_demo.c
│ │ │ │ ├── README.txt
│ │ │ │ ├── Source
│ │ │ │ │ ├── bfs5m.c
│ │ │ │ │ ├── bfs5m_check.c
│ │ │ │ │ ├── bfs6.c
│ │ │ │ │ ├── bfs6_check.c
│ │ │ │ │ ├── bfs_level.c
│ │ │ │ │ ├── dpagerank2.c
│ │ │ │ │ ├── dpagerank.c
│ │ │ │ │ ├── drowscale.c
│ │ │ │ │ ├── get_matrix.c
│ │ │ │ │ ├── ipagerank.c
│ │ │ │ │ ├── irowscale.c
│ │ │ │ │ ├── mis.c
│ │ │ │ │ ├── mis_check.c
│ │ │ │ │ ├── mis_score.c
│ │ │ │ │ ├── random_matrix.c
│ │ │ │ │ ├── read_matrix.c
│ │ │ │ │ ├── simple_rand.c
│ │ │ │ │ ├── simple_timer.c
│ │ │ │ │ ├── tricount.c
│ │ │ │ │ ├── usercomplex.c
│ │ │ │ │ └── wathen.c
│ │ │ │ ├── tri_run
│ │ │ │ ├── vdemo
│ │ │ │ └── vp
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── CONTRIBUTOR-LICENSE.txt
│ │ │ │ ├── GraphBLAS_API_C.pdf
│ │ │ │ ├── GraphBLAS_API_version.tex
│ │ │ │ ├── GraphBLAS_UserGuide.bib
│ │ │ │ ├── GraphBLAS_UserGuide.pdf
│ │ │ │ ├── GraphBLAS_UserGuide.tex
│ │ │ │ ├── GraphBLAS_version.tex
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── README_Doc.txt
│ │ │ │ └── toms_graphblas.pdf
│ │ │ ├── Extras
│ │ │ │ ├── ExactKronGen
│ │ │ │ │ ├── a.tsv
│ │ │ │ │ ├── b.tsv
│ │ │ │ │ ├── corig.tsv
│ │ │ │ │ ├── gokron
│ │ │ │ │ ├── gokron_mpi
│ │ │ │ │ ├── gokron_mpi_output.txt
│ │ │ │ │ ├── gokron_output.txt
│ │ │ │ │ ├── kron.c
│ │ │ │ │ ├── kron.h
│ │ │ │ │ ├── kron_mpi.c
│ │ │ │ │ ├── kron_submatrix.c
│ │ │ │ │ ├── kron_test.m
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── read_tuples.c
│ │ │ │ │ ├── simple_timer.c
│ │ │ │ │ └── simple_timer.h
│ │ │ │ ├── ktruss
│ │ │ │ │ ├── allktruss.c
│ │ │ │ │ ├── allktruss_graphblas.c
│ │ │ │ │ ├── allktruss_graphblas_main.c
│ │ │ │ │ ├── allktruss_grb_results.m
│ │ │ │ │ ├── allktruss.m
│ │ │ │ │ ├── allktruss_main.c
│ │ │ │ │ ├── allktruss_mex.c
│ │ │ │ │ ├── allktruss_results.m
│ │ │ │ │ ├── bcsstk01
│ │ │ │ │ ├── d.awk
│ │ │ │ │ ├── filetrim.m
│ │ │ │ │ ├── k1
│ │ │ │ │ ├── k2
│ │ │ │ │ ├── kall
│ │ │ │ │ ├── kall3
│ │ │ │ │ ├── kall4
│ │ │ │ │ ├── k.awk
│ │ │ │ │ ├── kgo
│ │ │ │ │ ├── kgo1
│ │ │ │ │ ├── kgo.m
│ │ │ │ │ ├── kmake.m
│ │ │ │ │ ├── kres14.m
│ │ │ │ │ ├── kres.m
│ │ │ │ │ ├── krun
│ │ │ │ │ ├── krun2
│ │ │ │ │ ├── krun3
│ │ │ │ │ ├── krun3b
│ │ │ │ │ ├── krun4
│ │ │ │ │ ├── kskip
│ │ │ │ │ ├── kskip2
│ │ │ │ │ ├── ksub
│ │ │ │ │ ├── ktruss.c
│ │ │ │ │ ├── ktruss_def.h
│ │ │ │ │ ├── ktruss_graphblas.c
│ │ │ │ │ ├── ktruss_graphblas_def.h
│ │ │ │ │ ├── ktruss_graphblas_main.c
│ │ │ │ │ ├── ktruss_grb_results.m
│ │ │ │ │ ├── ktruss.m
│ │ │ │ │ ├── ktruss_main.c
│ │ │ │ │ ├── ktruss_mex.c
│ │ │ │ │ ├── ktruss_ntriangles.c
│ │ │ │ │ ├── ktruss_read.c
│ │ │ │ │ ├── ktruss_results.m
│ │ │ │ │ ├── lsall
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── README.txt
│ │ │ │ ├── README.txt
│ │ │ │ └── tri
│ │ │ │ ├── a.awk
│ │ │ │ ├── bcsstk01
│ │ │ │ ├── doboth
│ │ │ │ ├── elist.m
│ │ │ │ ├── fbest.m
│ │ │ │ ├── filetrim.m
│ │ │ │ ├── fixmawi.m
│ │ │ │ ├── go
│ │ │ │ ├── go1
│ │ │ │ ├── go4
│ │ │ │ ├── gocage
│ │ │ │ ├── gosub
│ │ │ │ ├── Makefile
│ │ │ │ ├── r.awk
│ │ │ │ ├── README.txt
│ │ │ │ ├── t5
│ │ │ │ ├── t5nos
│ │ │ │ ├── tfr.m
│ │ │ │ ├── tres.m
│ │ │ │ ├── triall
│ │ │ │ ├── triall2
│ │ │ │ ├── triall4
│ │ │ │ ├── tri_def.h
│ │ │ │ ├── tri_dot_template.c
│ │ │ │ ├── tri_functions.c
│ │ │ │ ├── tri_graphblas.awk
│ │ │ │ ├── tri_grb_results.m
│ │ │ │ ├── tri_main.c
│ │ │ │ ├── tri_prep.c
│ │ │ │ ├── tri_read.c
│ │ │ │ ├── tri_results.m
│ │ │ │ ├── tri_run
│ │ │ │ ├── tri_run2
│ │ │ │ ├── tri_run2nos
│ │ │ │ ├── tri_runnos
│ │ │ │ ├── tri_simple.c
│ │ │ │ └── tri_template.c
│ │ │ ├── Include
│ │ │ │ └── GraphBLAS.h
│ │ │ ├── Makefile
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── all_user_objects.c
│ │ │ │ ├── axb_compare_template.m
│ │ │ │ ├── axb.m
│ │ │ │ ├── axb_method.m
│ │ │ │ ├── axb_template.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── GB_accum_mask.c
│ │ │ │ ├── GB_add.c
│ │ │ │ ├── GB_apply.c
│ │ │ │ ├── GB_apply_op.c
│ │ │ │ ├── GB_assign.c
│ │ │ │ ├── GB_assign_scalar.c
│ │ │ │ ├── GB_AxB_alloc.c
│ │ │ │ ├── GB_AxB_dot.c
│ │ │ │ ├── GB_AxB_Gustavson_builtin.c
│ │ │ │ ├── GB_AxB_Gustavson.c
│ │ │ │ ├── GB_AxB_heap.c
│ │ │ │ ├── GB_AxB_meta.c
│ │ │ │ ├── GB_AxB_saxpy.c
│ │ │ │ ├── GB_BinaryOp_check.c
│ │ │ │ ├── GB_BinaryOp_compatible.c
│ │ │ │ ├── GB_BinaryOp_new.c
│ │ │ │ ├── GB_block.c
│ │ │ │ ├── GB_boolean_rename.c
│ │ │ │ ├── GB_build.c
│ │ │ │ ├── GB_builder.c
│ │ │ │ ├── GB_build_factory.c
│ │ │ │ ├── GB_calloc_memory.c
│ │ │ │ ├── GB_cast_array.c
│ │ │ │ ├── GB_cast_factory.c
│ │ │ │ ├── GB_clear.c
│ │ │ │ ├── GB_code_check.c
│ │ │ │ ├── GB_code_compatible.c
│ │ │ │ ├── GB_code_size.c
│ │ │ │ ├── GB_code_string.c
│ │ │ │ ├── GB_code_type.c
│ │ │ │ ├── GB_compatible.c
│ │ │ │ ├── GB_create.c
│ │ │ │ ├── GB_cumsum.c
│ │ │ │ ├── GB_Descriptor_check.c
│ │ │ │ ├── GB_Descriptor_get.c
│ │ │ │ ├── GB_dup.c
│ │ │ │ ├── GB_emult.c
│ │ │ │ ├── GB_entry_check.c
│ │ │ │ ├── GB_error.c
│ │ │ │ ├── GB_eWise.c
│ │ │ │ ├── GB_extract.c
│ │ │ │ ├── GB_extractElement.c
│ │ │ │ ├── GB_extractTuples.c
│ │ │ │ ├── GB_free.c
│ │ │ │ ├── GB_free_memory.c
│ │ │ │ ├── GB.h
│ │ │ │ ├── GB_hyper_realloc.c
│ │ │ │ ├── GB_I_inverse.c
│ │ │ │ ├── GB_ijlength.c
│ │ │ │ ├── GB_ijproperties.c
│ │ │ │ ├── GB_ijsort.c
│ │ │ │ ├── GB_Index_multiply.c
│ │ │ │ ├── GB_ix_alloc.c
│ │ │ │ ├── GB_ix_free.c
│ │ │ │ ├── GB_ix_realloc.c
│ │ │ │ ├── GB_ix_resize.c
│ │ │ │ ├── GB_kron.c
│ │ │ │ ├── GB_kron_kernel.c
│ │ │ │ ├── GB_malloc_memory.c
│ │ │ │ ├── GB_mask.c
│ │ │ │ ├── GB_Mask_compatible.c
│ │ │ │ ├── GB_Matrix_check.c
│ │ │ │ ├── GB_matvec_check.c
│ │ │ │ ├── GB_Monoid_check.c
│ │ │ │ ├── GB_Monoid_new.c
│ │ │ │ ├── GB_mxm.c
│ │ │ │ ├── GB_new.c
│ │ │ │ ├── GB_nvals.c
│ │ │ │ ├── GB_nvec_nonempty.c
│ │ │ │ ├── GB_op_is_second.c
│ │ │ │ ├── GB_ops.c
│ │ │ │ ├── GB_pending_add.c
│ │ │ │ ├── GB_pending_free.c
│ │ │ │ ├── GB_ph_free.c
│ │ │ │ ├── GB_phix_free.c
│ │ │ │ ├── GB_qsort_1.c
│ │ │ │ ├── GB_qsort_2a.c
│ │ │ │ ├── GB_qsort_2b.c
│ │ │ │ ├── GB_qsort_3.c
│ │ │ │ ├── GB_queue_create.c
│ │ │ │ ├── GB_queue_destroy.c
│ │ │ │ ├── GB_queue_init.c
│ │ │ │ ├── GB_queue_insert.c
│ │ │ │ ├── GB_queue_remove.c
│ │ │ │ ├── GB_queue_remove_head.c
│ │ │ │ ├── GB_queue_status.c
│ │ │ │ ├── GB_realloc_memory.c
│ │ │ │ ├── GB_reduce_to_column.c
│ │ │ │ ├── GB_reduce_to_scalar.c
│ │ │ │ ├── GB_resize.c
│ │ │ │ ├── GB_Sauna_alloc.c
│ │ │ │ ├── GB_Sauna_free.c
│ │ │ │ ├── GB_select.c
│ │ │ │ ├── GB_SelectOp_check.c
│ │ │ │ ├── GB_SelectOp_new.c
│ │ │ │ ├── GB_semiring_builtin.c
│ │ │ │ ├── GB_Semiring_check.c
│ │ │ │ ├── GB_setElement.c
│ │ │ │ ├── GB_shallow_cast.c
│ │ │ │ ├── GB_shallow_op.c
│ │ │ │ ├── GB_size_t_multiply.c
│ │ │ │ ├── GB_status_code.c
│ │ │ │ ├── GB_subassign.c
│ │ │ │ ├── GB_subassign_kernel.c
│ │ │ │ ├── GB_subassign_scalar.c
│ │ │ │ ├── GB_subref_numeric.c
│ │ │ │ ├── GB_subref_symbolic.c
│ │ │ │ ├── GB_thread_local_access.c
│ │ │ │ ├── GB_to_hyper.c
│ │ │ │ ├── GB_to_hyper_conform.c
│ │ │ │ ├── GB_to_hyper_test.c
│ │ │ │ ├── GB_to_nonhyper.c
│ │ │ │ ├── GB_to_nonhyper_test.c
│ │ │ │ ├── GB_transplant.c
│ │ │ │ ├── GB_transplant_conform.c
│ │ │ │ ├── GB_transpose_bucket.c
│ │ │ │ ├── GB_transpose.c
│ │ │ │ ├── GB_transpose_ix.c
│ │ │ │ ├── GB_transpose_op.c
│ │ │ │ ├── GB_type.c
│ │ │ │ ├── GB_Type_check.c
│ │ │ │ ├── GB_Type_compatible.c
│ │ │ │ ├── GB_Type_new.c
│ │ │ │ ├── GB_UnaryOp_check.c
│ │ │ │ ├── GB_UnaryOp_new.c
│ │ │ │ ├── GB_user_build.c
│ │ │ │ ├── GB_Vector_check.c
│ │ │ │ ├── GB_wait.c
│ │ │ │ ├── Generated
│ │ │ │ │ ├── GB_AxB__eq_eq_bool.c
│ │ │ │ │ ├── GB_AxB__eq_eq_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_eq_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_eq_int16.c
│ │ │ │ │ ├── GB_AxB__eq_eq_int32.c
│ │ │ │ │ ├── GB_AxB__eq_eq_int64.c
│ │ │ │ │ ├── GB_AxB__eq_eq_int8.c
│ │ │ │ │ ├── GB_AxB__eq_eq_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_eq_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_eq_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_eq_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_first_bool.c
│ │ │ │ │ ├── GB_AxB__eq_ge_bool.c
│ │ │ │ │ ├── GB_AxB__eq_ge_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_ge_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_ge_int16.c
│ │ │ │ │ ├── GB_AxB__eq_ge_int32.c
│ │ │ │ │ ├── GB_AxB__eq_ge_int64.c
│ │ │ │ │ ├── GB_AxB__eq_ge_int8.c
│ │ │ │ │ ├── GB_AxB__eq_ge_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_ge_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_ge_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_ge_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_gt_bool.c
│ │ │ │ │ ├── GB_AxB__eq_gt_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_gt_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_gt_int16.c
│ │ │ │ │ ├── GB_AxB__eq_gt_int32.c
│ │ │ │ │ ├── GB_AxB__eq_gt_int64.c
│ │ │ │ │ ├── GB_AxB__eq_gt_int8.c
│ │ │ │ │ ├── GB_AxB__eq_gt_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_gt_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_gt_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_gt_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_land_bool.c
│ │ │ │ │ ├── GB_AxB__eq_le_bool.c
│ │ │ │ │ ├── GB_AxB__eq_le_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_le_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_le_int16.c
│ │ │ │ │ ├── GB_AxB__eq_le_int32.c
│ │ │ │ │ ├── GB_AxB__eq_le_int64.c
│ │ │ │ │ ├── GB_AxB__eq_le_int8.c
│ │ │ │ │ ├── GB_AxB__eq_le_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_le_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_le_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_le_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_lor_bool.c
│ │ │ │ │ ├── GB_AxB__eq_lt_bool.c
│ │ │ │ │ ├── GB_AxB__eq_lt_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_lt_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_lt_int16.c
│ │ │ │ │ ├── GB_AxB__eq_lt_int32.c
│ │ │ │ │ ├── GB_AxB__eq_lt_int64.c
│ │ │ │ │ ├── GB_AxB__eq_lt_int8.c
│ │ │ │ │ ├── GB_AxB__eq_lt_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_lt_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_lt_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_lt_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_lxor_bool.c
│ │ │ │ │ ├── GB_AxB__eq_ne_fp32.c
│ │ │ │ │ ├── GB_AxB__eq_ne_fp64.c
│ │ │ │ │ ├── GB_AxB__eq_ne_int16.c
│ │ │ │ │ ├── GB_AxB__eq_ne_int32.c
│ │ │ │ │ ├── GB_AxB__eq_ne_int64.c
│ │ │ │ │ ├── GB_AxB__eq_ne_int8.c
│ │ │ │ │ ├── GB_AxB__eq_ne_uint16.c
│ │ │ │ │ ├── GB_AxB__eq_ne_uint32.c
│ │ │ │ │ ├── GB_AxB__eq_ne_uint64.c
│ │ │ │ │ ├── GB_AxB__eq_ne_uint8.c
│ │ │ │ │ ├── GB_AxB__eq_second_bool.c
│ │ │ │ │ ├── GB_AxB__land_eq_bool.c
│ │ │ │ │ ├── GB_AxB__land_eq_fp32.c
│ │ │ │ │ ├── GB_AxB__land_eq_fp64.c
│ │ │ │ │ ├── GB_AxB__land_eq_int16.c
│ │ │ │ │ ├── GB_AxB__land_eq_int32.c
│ │ │ │ │ ├── GB_AxB__land_eq_int64.c
│ │ │ │ │ ├── GB_AxB__land_eq_int8.c
│ │ │ │ │ ├── GB_AxB__land_eq_uint16.c
│ │ │ │ │ ├── GB_AxB__land_eq_uint32.c
│ │ │ │ │ ├── GB_AxB__land_eq_uint64.c
│ │ │ │ │ ├── GB_AxB__land_eq_uint8.c
│ │ │ │ │ ├── GB_AxB__land_first_bool.c
│ │ │ │ │ ├── GB_AxB__land_ge_bool.c
│ │ │ │ │ ├── GB_AxB__land_ge_fp32.c
│ │ │ │ │ ├── GB_AxB__land_ge_fp64.c
│ │ │ │ │ ├── GB_AxB__land_ge_int16.c
│ │ │ │ │ ├── GB_AxB__land_ge_int32.c
│ │ │ │ │ ├── GB_AxB__land_ge_int64.c
│ │ │ │ │ ├── GB_AxB__land_ge_int8.c
│ │ │ │ │ ├── GB_AxB__land_ge_uint16.c
│ │ │ │ │ ├── GB_AxB__land_ge_uint32.c
│ │ │ │ │ ├── GB_AxB__land_ge_uint64.c
│ │ │ │ │ ├── GB_AxB__land_ge_uint8.c
│ │ │ │ │ ├── GB_AxB__land_gt_bool.c
│ │ │ │ │ ├── GB_AxB__land_gt_fp32.c
│ │ │ │ │ ├── GB_AxB__land_gt_fp64.c
│ │ │ │ │ ├── GB_AxB__land_gt_int16.c
│ │ │ │ │ ├── GB_AxB__land_gt_int32.c
│ │ │ │ │ ├── GB_AxB__land_gt_int64.c
│ │ │ │ │ ├── GB_AxB__land_gt_int8.c
│ │ │ │ │ ├── GB_AxB__land_gt_uint16.c
│ │ │ │ │ ├── GB_AxB__land_gt_uint32.c
│ │ │ │ │ ├── GB_AxB__land_gt_uint64.c
│ │ │ │ │ ├── GB_AxB__land_gt_uint8.c
│ │ │ │ │ ├── GB_AxB__land_land_bool.c
│ │ │ │ │ ├── GB_AxB__land_le_bool.c
│ │ │ │ │ ├── GB_AxB__land_le_fp32.c
│ │ │ │ │ ├── GB_AxB__land_le_fp64.c
│ │ │ │ │ ├── GB_AxB__land_le_int16.c
│ │ │ │ │ ├── GB_AxB__land_le_int32.c
│ │ │ │ │ ├── GB_AxB__land_le_int64.c
│ │ │ │ │ ├── GB_AxB__land_le_int8.c
│ │ │ │ │ ├── GB_AxB__land_le_uint16.c
│ │ │ │ │ ├── GB_AxB__land_le_uint32.c
│ │ │ │ │ ├── GB_AxB__land_le_uint64.c
│ │ │ │ │ ├── GB_AxB__land_le_uint8.c
│ │ │ │ │ ├── GB_AxB__land_lor_bool.c
│ │ │ │ │ ├── GB_AxB__land_lt_bool.c
│ │ │ │ │ ├── GB_AxB__land_lt_fp32.c
│ │ │ │ │ ├── GB_AxB__land_lt_fp64.c
│ │ │ │ │ ├── GB_AxB__land_lt_int16.c
│ │ │ │ │ ├── GB_AxB__land_lt_int32.c
│ │ │ │ │ ├── GB_AxB__land_lt_int64.c
│ │ │ │ │ ├── GB_AxB__land_lt_int8.c
│ │ │ │ │ ├── GB_AxB__land_lt_uint16.c
│ │ │ │ │ ├── GB_AxB__land_lt_uint32.c
│ │ │ │ │ ├── GB_AxB__land_lt_uint64.c
│ │ │ │ │ ├── GB_AxB__land_lt_uint8.c
│ │ │ │ │ ├── GB_AxB__land_lxor_bool.c
│ │ │ │ │ ├── GB_AxB__land_ne_fp32.c
│ │ │ │ │ ├── GB_AxB__land_ne_fp64.c
│ │ │ │ │ ├── GB_AxB__land_ne_int16.c
│ │ │ │ │ ├── GB_AxB__land_ne_int32.c
│ │ │ │ │ ├── GB_AxB__land_ne_int64.c
│ │ │ │ │ ├── GB_AxB__land_ne_int8.c
│ │ │ │ │ ├── GB_AxB__land_ne_uint16.c
│ │ │ │ │ ├── GB_AxB__land_ne_uint32.c
│ │ │ │ │ ├── GB_AxB__land_ne_uint64.c
│ │ │ │ │ ├── GB_AxB__land_ne_uint8.c
│ │ │ │ │ ├── GB_AxB__land_second_bool.c
│ │ │ │ │ ├── GB_AxB__lor_eq_bool.c
│ │ │ │ │ ├── GB_AxB__lor_eq_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_eq_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_eq_int16.c
│ │ │ │ │ ├── GB_AxB__lor_eq_int32.c
│ │ │ │ │ ├── GB_AxB__lor_eq_int64.c
│ │ │ │ │ ├── GB_AxB__lor_eq_int8.c
│ │ │ │ │ ├── GB_AxB__lor_eq_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_eq_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_eq_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_eq_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_first_bool.c
│ │ │ │ │ ├── GB_AxB__lor_ge_bool.c
│ │ │ │ │ ├── GB_AxB__lor_ge_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_ge_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_ge_int16.c
│ │ │ │ │ ├── GB_AxB__lor_ge_int32.c
│ │ │ │ │ ├── GB_AxB__lor_ge_int64.c
│ │ │ │ │ ├── GB_AxB__lor_ge_int8.c
│ │ │ │ │ ├── GB_AxB__lor_ge_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_ge_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_ge_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_ge_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_gt_bool.c
│ │ │ │ │ ├── GB_AxB__lor_gt_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_gt_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_gt_int16.c
│ │ │ │ │ ├── GB_AxB__lor_gt_int32.c
│ │ │ │ │ ├── GB_AxB__lor_gt_int64.c
│ │ │ │ │ ├── GB_AxB__lor_gt_int8.c
│ │ │ │ │ ├── GB_AxB__lor_gt_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_gt_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_gt_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_gt_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_land_bool.c
│ │ │ │ │ ├── GB_AxB__lor_le_bool.c
│ │ │ │ │ ├── GB_AxB__lor_le_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_le_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_le_int16.c
│ │ │ │ │ ├── GB_AxB__lor_le_int32.c
│ │ │ │ │ ├── GB_AxB__lor_le_int64.c
│ │ │ │ │ ├── GB_AxB__lor_le_int8.c
│ │ │ │ │ ├── GB_AxB__lor_le_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_le_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_le_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_le_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_lor_bool.c
│ │ │ │ │ ├── GB_AxB__lor_lt_bool.c
│ │ │ │ │ ├── GB_AxB__lor_lt_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_lt_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_lt_int16.c
│ │ │ │ │ ├── GB_AxB__lor_lt_int32.c
│ │ │ │ │ ├── GB_AxB__lor_lt_int64.c
│ │ │ │ │ ├── GB_AxB__lor_lt_int8.c
│ │ │ │ │ ├── GB_AxB__lor_lt_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_lt_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_lt_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_lt_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_lxor_bool.c
│ │ │ │ │ ├── GB_AxB__lor_ne_fp32.c
│ │ │ │ │ ├── GB_AxB__lor_ne_fp64.c
│ │ │ │ │ ├── GB_AxB__lor_ne_int16.c
│ │ │ │ │ ├── GB_AxB__lor_ne_int32.c
│ │ │ │ │ ├── GB_AxB__lor_ne_int64.c
│ │ │ │ │ ├── GB_AxB__lor_ne_int8.c
│ │ │ │ │ ├── GB_AxB__lor_ne_uint16.c
│ │ │ │ │ ├── GB_AxB__lor_ne_uint32.c
│ │ │ │ │ ├── GB_AxB__lor_ne_uint64.c
│ │ │ │ │ ├── GB_AxB__lor_ne_uint8.c
│ │ │ │ │ ├── GB_AxB__lor_second_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_eq_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_first_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_ge_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_gt_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_land_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_le_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_le_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_le_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_le_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_le_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_le_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_le_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_le_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_le_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_le_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_le_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_lor_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_lt_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_lxor_bool.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_fp32.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_fp64.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_int16.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_int32.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_int64.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_int8.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_uint16.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_uint32.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_uint64.c
│ │ │ │ │ ├── GB_AxB__lxor_ne_uint8.c
│ │ │ │ │ ├── GB_AxB__lxor_second_bool.c
│ │ │ │ │ ├── GB_AxB__max_div_fp32.c
│ │ │ │ │ ├── GB_AxB__max_div_fp64.c
│ │ │ │ │ ├── GB_AxB__max_div_int16.c
│ │ │ │ │ ├── GB_AxB__max_div_int32.c
│ │ │ │ │ ├── GB_AxB__max_div_int64.c
│ │ │ │ │ ├── GB_AxB__max_div_int8.c
│ │ │ │ │ ├── GB_AxB__max_div_uint16.c
│ │ │ │ │ ├── GB_AxB__max_div_uint32.c
│ │ │ │ │ ├── GB_AxB__max_div_uint64.c
│ │ │ │ │ ├── GB_AxB__max_div_uint8.c
│ │ │ │ │ ├── GB_AxB__max_first_fp32.c
│ │ │ │ │ ├── GB_AxB__max_first_fp64.c
│ │ │ │ │ ├── GB_AxB__max_first_int16.c
│ │ │ │ │ ├── GB_AxB__max_first_int32.c
│ │ │ │ │ ├── GB_AxB__max_first_int64.c
│ │ │ │ │ ├── GB_AxB__max_first_int8.c
│ │ │ │ │ ├── GB_AxB__max_first_uint16.c
│ │ │ │ │ ├── GB_AxB__max_first_uint32.c
│ │ │ │ │ ├── GB_AxB__max_first_uint64.c
│ │ │ │ │ ├── GB_AxB__max_first_uint8.c
│ │ │ │ │ ├── GB_AxB__max_iseq_fp32.c
│ │ │ │ │ ├── GB_AxB__max_iseq_fp64.c
│ │ │ │ │ ├── GB_AxB__max_iseq_int16.c
│ │ │ │ │ ├── GB_AxB__max_iseq_int32.c
│ │ │ │ │ ├── GB_AxB__max_iseq_int64.c
│ │ │ │ │ ├── GB_AxB__max_iseq_int8.c
│ │ │ │ │ ├── GB_AxB__max_iseq_uint16.c
│ │ │ │ │ ├── GB_AxB__max_iseq_uint32.c
│ │ │ │ │ ├── GB_AxB__max_iseq_uint64.c
│ │ │ │ │ ├── GB_AxB__max_iseq_uint8.c
│ │ │ │ │ ├── GB_AxB__max_isge_fp32.c
│ │ │ │ │ ├── GB_AxB__max_isge_fp64.c
│ │ │ │ │ ├── GB_AxB__max_isge_int16.c
│ │ │ │ │ ├── GB_AxB__max_isge_int32.c
│ │ │ │ │ ├── GB_AxB__max_isge_int64.c
│ │ │ │ │ ├── GB_AxB__max_isge_int8.c
│ │ │ │ │ ├── GB_AxB__max_isge_uint16.c
│ │ │ │ │ ├── GB_AxB__max_isge_uint32.c
│ │ │ │ │ ├── GB_AxB__max_isge_uint64.c
│ │ │ │ │ ├── GB_AxB__max_isge_uint8.c
│ │ │ │ │ ├── GB_AxB__max_isgt_fp32.c
│ │ │ │ │ ├── GB_AxB__max_isgt_fp64.c
│ │ │ │ │ ├── GB_AxB__max_isgt_int16.c
│ │ │ │ │ ├── GB_AxB__max_isgt_int32.c
│ │ │ │ │ ├── GB_AxB__max_isgt_int64.c
│ │ │ │ │ ├── GB_AxB__max_isgt_int8.c
│ │ │ │ │ ├── GB_AxB__max_isgt_uint16.c
│ │ │ │ │ ├── GB_AxB__max_isgt_uint32.c
│ │ │ │ │ ├── GB_AxB__max_isgt_uint64.c
│ │ │ │ │ ├── GB_AxB__max_isgt_uint8.c
│ │ │ │ │ ├── GB_AxB__max_isle_fp32.c
│ │ │ │ │ ├── GB_AxB__max_isle_fp64.c
│ │ │ │ │ ├── GB_AxB__max_isle_int16.c
│ │ │ │ │ ├── GB_AxB__max_isle_int32.c
│ │ │ │ │ ├── GB_AxB__max_isle_int64.c
│ │ │ │ │ ├── GB_AxB__max_isle_int8.c
│ │ │ │ │ ├── GB_AxB__max_isle_uint16.c
│ │ │ │ │ ├── GB_AxB__max_isle_uint32.c
│ │ │ │ │ ├── GB_AxB__max_isle_uint64.c
│ │ │ │ │ ├── GB_AxB__max_isle_uint8.c
│ │ │ │ │ ├── GB_AxB__max_islt_fp32.c
│ │ │ │ │ ├── GB_AxB__max_islt_fp64.c
│ │ │ │ │ ├── GB_AxB__max_islt_int16.c
│ │ │ │ │ ├── GB_AxB__max_islt_int32.c
│ │ │ │ │ ├── GB_AxB__max_islt_int64.c
│ │ │ │ │ ├── GB_AxB__max_islt_int8.c
│ │ │ │ │ ├── GB_AxB__max_islt_uint16.c
│ │ │ │ │ ├── GB_AxB__max_islt_uint32.c
│ │ │ │ │ ├── GB_AxB__max_islt_uint64.c
│ │ │ │ │ ├── GB_AxB__max_islt_uint8.c
│ │ │ │ │ ├── GB_AxB__max_isne_fp32.c
│ │ │ │ │ ├── GB_AxB__max_isne_fp64.c
│ │ │ │ │ ├── GB_AxB__max_isne_int16.c
│ │ │ │ │ ├── GB_AxB__max_isne_int32.c
│ │ │ │ │ ├── GB_AxB__max_isne_int64.c
│ │ │ │ │ ├── GB_AxB__max_isne_int8.c
│ │ │ │ │ ├── GB_AxB__max_isne_uint16.c
│ │ │ │ │ ├── GB_AxB__max_isne_uint32.c
│ │ │ │ │ ├── GB_AxB__max_isne_uint64.c
│ │ │ │ │ ├── GB_AxB__max_isne_uint8.c
│ │ │ │ │ ├── GB_AxB__max_land_fp32.c
│ │ │ │ │ ├── GB_AxB__max_land_fp64.c
│ │ │ │ │ ├── GB_AxB__max_land_int16.c
│ │ │ │ │ ├── GB_AxB__max_land_int32.c
│ │ │ │ │ ├── GB_AxB__max_land_int64.c
│ │ │ │ │ ├── GB_AxB__max_land_int8.c
│ │ │ │ │ ├── GB_AxB__max_land_uint16.c
│ │ │ │ │ ├── GB_AxB__max_land_uint32.c
│ │ │ │ │ ├── GB_AxB__max_land_uint64.c
│ │ │ │ │ ├── GB_AxB__max_land_uint8.c
│ │ │ │ │ ├── GB_AxB__max_lor_fp32.c
│ │ │ │ │ ├── GB_AxB__max_lor_fp64.c
│ │ │ │ │ ├── GB_AxB__max_lor_int16.c
│ │ │ │ │ ├── GB_AxB__max_lor_int32.c
│ │ │ │ │ ├── GB_AxB__max_lor_int64.c
│ │ │ │ │ ├── GB_AxB__max_lor_int8.c
│ │ │ │ │ ├── GB_AxB__max_lor_uint16.c
│ │ │ │ │ ├── GB_AxB__max_lor_uint32.c
│ │ │ │ │ ├── GB_AxB__max_lor_uint64.c
│ │ │ │ │ ├── GB_AxB__max_lor_uint8.c
│ │ │ │ │ ├── GB_AxB__max_lxor_fp32.c
│ │ │ │ │ ├── GB_AxB__max_lxor_fp64.c
│ │ │ │ │ ├── GB_AxB__max_lxor_int16.c
│ │ │ │ │ ├── GB_AxB__max_lxor_int32.c
│ │ │ │ │ ├── GB_AxB__max_lxor_int64.c
│ │ │ │ │ ├── GB_AxB__max_lxor_int8.c
│ │ │ │ │ ├── GB_AxB__max_lxor_uint16.c
│ │ │ │ │ ├── GB_AxB__max_lxor_uint32.c
│ │ │ │ │ ├── GB_AxB__max_lxor_uint64.c
│ │ │ │ │ ├── GB_AxB__max_lxor_uint8.c
│ │ │ │ │ ├── GB_AxB__max_max_fp32.c
│ │ │ │ │ ├── GB_AxB__max_max_fp64.c
│ │ │ │ │ ├── GB_AxB__max_max_int16.c
│ │ │ │ │ ├── GB_AxB__max_max_int32.c
│ │ │ │ │ ├── GB_AxB__max_max_int64.c
│ │ │ │ │ ├── GB_AxB__max_max_int8.c
│ │ │ │ │ ├── GB_AxB__max_max_uint16.c
│ │ │ │ │ ├── GB_AxB__max_max_uint32.c
│ │ │ │ │ ├── GB_AxB__max_max_uint64.c
│ │ │ │ │ ├── GB_AxB__max_max_uint8.c
│ │ │ │ │ ├── GB_AxB__max_min_fp32.c
│ │ │ │ │ ├── GB_AxB__max_min_fp64.c
│ │ │ │ │ ├── GB_AxB__max_min_int16.c
│ │ │ │ │ ├── GB_AxB__max_min_int32.c
│ │ │ │ │ ├── GB_AxB__max_min_int64.c
│ │ │ │ │ ├── GB_AxB__max_min_int8.c
│ │ │ │ │ ├── GB_AxB__max_min_uint16.c
│ │ │ │ │ ├── GB_AxB__max_min_uint32.c
│ │ │ │ │ ├── GB_AxB__max_min_uint64.c
│ │ │ │ │ ├── GB_AxB__max_min_uint8.c
│ │ │ │ │ ├── GB_AxB__max_minus_fp32.c
│ │ │ │ │ ├── GB_AxB__max_minus_fp64.c
│ │ │ │ │ ├── GB_AxB__max_minus_int16.c
│ │ │ │ │ ├── GB_AxB__max_minus_int32.c
│ │ │ │ │ ├── GB_AxB__max_minus_int64.c
│ │ │ │ │ ├── GB_AxB__max_minus_int8.c
│ │ │ │ │ ├── GB_AxB__max_minus_uint16.c
│ │ │ │ │ ├── GB_AxB__max_minus_uint32.c
│ │ │ │ │ ├── GB_AxB__max_minus_uint64.c
│ │ │ │ │ ├── GB_AxB__max_minus_uint8.c
│ │ │ │ │ ├── GB_AxB__max_plus_fp32.c
│ │ │ │ │ ├── GB_AxB__max_plus_fp64.c
│ │ │ │ │ ├── GB_AxB__max_plus_int16.c
│ │ │ │ │ ├── GB_AxB__max_plus_int32.c
│ │ │ │ │ ├── GB_AxB__max_plus_int64.c
│ │ │ │ │ ├── GB_AxB__max_plus_int8.c
│ │ │ │ │ ├── GB_AxB__max_plus_uint16.c
│ │ │ │ │ ├── GB_AxB__max_plus_uint32.c
│ │ │ │ │ ├── GB_AxB__max_plus_uint64.c
│ │ │ │ │ ├── GB_AxB__max_plus_uint8.c
│ │ │ │ │ ├── GB_AxB__max_second_fp32.c
│ │ │ │ │ ├── GB_AxB__max_second_fp64.c
│ │ │ │ │ ├── GB_AxB__max_second_int16.c
│ │ │ │ │ ├── GB_AxB__max_second_int32.c
│ │ │ │ │ ├── GB_AxB__max_second_int64.c
│ │ │ │ │ ├── GB_AxB__max_second_int8.c
│ │ │ │ │ ├── GB_AxB__max_second_uint16.c
│ │ │ │ │ ├── GB_AxB__max_second_uint32.c
│ │ │ │ │ ├── GB_AxB__max_second_uint64.c
│ │ │ │ │ ├── GB_AxB__max_second_uint8.c
│ │ │ │ │ ├── GB_AxB__max_times_fp32.c
│ │ │ │ │ ├── GB_AxB__max_times_fp64.c
│ │ │ │ │ ├── GB_AxB__max_times_int16.c
│ │ │ │ │ ├── GB_AxB__max_times_int32.c
│ │ │ │ │ ├── GB_AxB__max_times_int64.c
│ │ │ │ │ ├── GB_AxB__max_times_int8.c
│ │ │ │ │ ├── GB_AxB__max_times_uint16.c
│ │ │ │ │ ├── GB_AxB__max_times_uint32.c
│ │ │ │ │ ├── GB_AxB__max_times_uint64.c
│ │ │ │ │ ├── GB_AxB__max_times_uint8.c
│ │ │ │ │ ├── GB_AxB__min_div_fp32.c
│ │ │ │ │ ├── GB_AxB__min_div_fp64.c
│ │ │ │ │ ├── GB_AxB__min_div_int16.c
│ │ │ │ │ ├── GB_AxB__min_div_int32.c
│ │ │ │ │ ├── GB_AxB__min_div_int64.c
│ │ │ │ │ ├── GB_AxB__min_div_int8.c
│ │ │ │ │ ├── GB_AxB__min_div_uint16.c
│ │ │ │ │ ├── GB_AxB__min_div_uint32.c
│ │ │ │ │ ├── GB_AxB__min_div_uint64.c
│ │ │ │ │ ├── GB_AxB__min_div_uint8.c
│ │ │ │ │ ├── GB_AxB__min_first_fp32.c
│ │ │ │ │ ├── GB_AxB__min_first_fp64.c
│ │ │ │ │ ├── GB_AxB__min_first_int16.c
│ │ │ │ │ ├── GB_AxB__min_first_int32.c
│ │ │ │ │ ├── GB_AxB__min_first_int64.c
│ │ │ │ │ ├── GB_AxB__min_first_int8.c
│ │ │ │ │ ├── GB_AxB__min_first_uint16.c
│ │ │ │ │ ├── GB_AxB__min_first_uint32.c
│ │ │ │ │ ├── GB_AxB__min_first_uint64.c
│ │ │ │ │ ├── GB_AxB__min_first_uint8.c
│ │ │ │ │ ├── GB_AxB__min_iseq_fp32.c
│ │ │ │ │ ├── GB_AxB__min_iseq_fp64.c
│ │ │ │ │ ├── GB_AxB__min_iseq_int16.c
│ │ │ │ │ ├── GB_AxB__min_iseq_int32.c
│ │ │ │ │ ├── GB_AxB__min_iseq_int64.c
│ │ │ │ │ ├── GB_AxB__min_iseq_int8.c
│ │ │ │ │ ├── GB_AxB__min_iseq_uint16.c
│ │ │ │ │ ├── GB_AxB__min_iseq_uint32.c
│ │ │ │ │ ├── GB_AxB__min_iseq_uint64.c
│ │ │ │ │ ├── GB_AxB__min_iseq_uint8.c
│ │ │ │ │ ├── GB_AxB__min_isge_fp32.c
│ │ │ │ │ ├── GB_AxB__min_isge_fp64.c
│ │ │ │ │ ├── GB_AxB__min_isge_int16.c
│ │ │ │ │ ├── GB_AxB__min_isge_int32.c
│ │ │ │ │ ├── GB_AxB__min_isge_int64.c
│ │ │ │ │ ├── GB_AxB__min_isge_int8.c
│ │ │ │ │ ├── GB_AxB__min_isge_uint16.c
│ │ │ │ │ ├── GB_AxB__min_isge_uint32.c
│ │ │ │ │ ├── GB_AxB__min_isge_uint64.c
│ │ │ │ │ ├── GB_AxB__min_isge_uint8.c
│ │ │ │ │ ├── GB_AxB__min_isgt_fp32.c
│ │ │ │ │ ├── GB_AxB__min_isgt_fp64.c
│ │ │ │ │ ├── GB_AxB__min_isgt_int16.c
│ │ │ │ │ ├── GB_AxB__min_isgt_int32.c
│ │ │ │ │ ├── GB_AxB__min_isgt_int64.c
│ │ │ │ │ ├── GB_AxB__min_isgt_int8.c
│ │ │ │ │ ├── GB_AxB__min_isgt_uint16.c
│ │ │ │ │ ├── GB_AxB__min_isgt_uint32.c
│ │ │ │ │ ├── GB_AxB__min_isgt_uint64.c
│ │ │ │ │ ├── GB_AxB__min_isgt_uint8.c
│ │ │ │ │ ├── GB_AxB__min_isle_fp32.c
│ │ │ │ │ ├── GB_AxB__min_isle_fp64.c
│ │ │ │ │ ├── GB_AxB__min_isle_int16.c
│ │ │ │ │ ├── GB_AxB__min_isle_int32.c
│ │ │ │ │ ├── GB_AxB__min_isle_int64.c
│ │ │ │ │ ├── GB_AxB__min_isle_int8.c
│ │ │ │ │ ├── GB_AxB__min_isle_uint16.c
│ │ │ │ │ ├── GB_AxB__min_isle_uint32.c
│ │ │ │ │ ├── GB_AxB__min_isle_uint64.c
│ │ │ │ │ ├── GB_AxB__min_isle_uint8.c
│ │ │ │ │ ├── GB_AxB__min_islt_fp32.c
│ │ │ │ │ ├── GB_AxB__min_islt_fp64.c
│ │ │ │ │ ├── GB_AxB__min_islt_int16.c
│ │ │ │ │ ├── GB_AxB__min_islt_int32.c
│ │ │ │ │ ├── GB_AxB__min_islt_int64.c
│ │ │ │ │ ├── GB_AxB__min_islt_int8.c
│ │ │ │ │ ├── GB_AxB__min_islt_uint16.c
│ │ │ │ │ ├── GB_AxB__min_islt_uint32.c
│ │ │ │ │ ├── GB_AxB__min_islt_uint64.c
│ │ │ │ │ ├── GB_AxB__min_islt_uint8.c
│ │ │ │ │ ├── GB_AxB__min_isne_fp32.c
│ │ │ │ │ ├── GB_AxB__min_isne_fp64.c
│ │ │ │ │ ├── GB_AxB__min_isne_int16.c
│ │ │ │ │ ├── GB_AxB__min_isne_int32.c
│ │ │ │ │ ├── GB_AxB__min_isne_int64.c
│ │ │ │ │ ├── GB_AxB__min_isne_int8.c
│ │ │ │ │ ├── GB_AxB__min_isne_uint16.c
│ │ │ │ │ ├── GB_AxB__min_isne_uint32.c
│ │ │ │ │ ├── GB_AxB__min_isne_uint64.c
│ │ │ │ │ ├── GB_AxB__min_isne_uint8.c
│ │ │ │ │ ├── GB_AxB__min_land_fp32.c
│ │ │ │ │ ├── GB_AxB__min_land_fp64.c
│ │ │ │ │ ├── GB_AxB__min_land_int16.c
│ │ │ │ │ ├── GB_AxB__min_land_int32.c
│ │ │ │ │ ├── GB_AxB__min_land_int64.c
│ │ │ │ │ ├── GB_AxB__min_land_int8.c
│ │ │ │ │ ├── GB_AxB__min_land_uint16.c
│ │ │ │ │ ├── GB_AxB__min_land_uint32.c
│ │ │ │ │ ├── GB_AxB__min_land_uint64.c
│ │ │ │ │ ├── GB_AxB__min_land_uint8.c
│ │ │ │ │ ├── GB_AxB__min_lor_fp32.c
│ │ │ │ │ ├── GB_AxB__min_lor_fp64.c
│ │ │ │ │ ├── GB_AxB__min_lor_int16.c
│ │ │ │ │ ├── GB_AxB__min_lor_int32.c
│ │ │ │ │ ├── GB_AxB__min_lor_int64.c
│ │ │ │ │ ├── GB_AxB__min_lor_int8.c
│ │ │ │ │ ├── GB_AxB__min_lor_uint16.c
│ │ │ │ │ ├── GB_AxB__min_lor_uint32.c
│ │ │ │ │ ├── GB_AxB__min_lor_uint64.c
│ │ │ │ │ ├── GB_AxB__min_lor_uint8.c
│ │ │ │ │ ├── GB_AxB__min_lxor_fp32.c
│ │ │ │ │ ├── GB_AxB__min_lxor_fp64.c
│ │ │ │ │ ├── GB_AxB__min_lxor_int16.c
│ │ │ │ │ ├── GB_AxB__min_lxor_int32.c
│ │ │ │ │ ├── GB_AxB__min_lxor_int64.c
│ │ │ │ │ ├── GB_AxB__min_lxor_int8.c
│ │ │ │ │ ├── GB_AxB__min_lxor_uint16.c
│ │ │ │ │ ├── GB_AxB__min_lxor_uint32.c
│ │ │ │ │ ├── GB_AxB__min_lxor_uint64.c
│ │ │ │ │ ├── GB_AxB__min_lxor_uint8.c
│ │ │ │ │ ├── GB_AxB__min_max_fp32.c
│ │ │ │ │ ├── GB_AxB__min_max_fp64.c
│ │ │ │ │ ├── GB_AxB__min_max_int16.c
│ │ │ │ │ ├── GB_AxB__min_max_int32.c
│ │ │ │ │ ├── GB_AxB__min_max_int64.c
│ │ │ │ │ ├── GB_AxB__min_max_int8.c
│ │ │ │ │ ├── GB_AxB__min_max_uint16.c
│ │ │ │ │ ├── GB_AxB__min_max_uint32.c
│ │ │ │ │ ├── GB_AxB__min_max_uint64.c
│ │ │ │ │ ├── GB_AxB__min_max_uint8.c
│ │ │ │ │ ├── GB_AxB__min_min_fp32.c
│ │ │ │ │ ├── GB_AxB__min_min_fp64.c
│ │ │ │ │ ├── GB_AxB__min_min_int16.c
│ │ │ │ │ ├── GB_AxB__min_min_int32.c
│ │ │ │ │ ├── GB_AxB__min_min_int64.c
│ │ │ │ │ ├── GB_AxB__min_min_int8.c
│ │ │ │ │ ├── GB_AxB__min_min_uint16.c
│ │ │ │ │ ├── GB_AxB__min_min_uint32.c
│ │ │ │ │ ├── GB_AxB__min_min_uint64.c
│ │ │ │ │ ├── GB_AxB__min_min_uint8.c
│ │ │ │ │ ├── GB_AxB__min_minus_fp32.c
│ │ │ │ │ ├── GB_AxB__min_minus_fp64.c
│ │ │ │ │ ├── GB_AxB__min_minus_int16.c
│ │ │ │ │ ├── GB_AxB__min_minus_int32.c
│ │ │ │ │ ├── GB_AxB__min_minus_int64.c
│ │ │ │ │ ├── GB_AxB__min_minus_int8.c
│ │ │ │ │ ├── GB_AxB__min_minus_uint16.c
│ │ │ │ │ ├── GB_AxB__min_minus_uint32.c
│ │ │ │ │ ├── GB_AxB__min_minus_uint64.c
│ │ │ │ │ ├── GB_AxB__min_minus_uint8.c
│ │ │ │ │ ├── GB_AxB__min_plus_fp32.c
│ │ │ │ │ ├── GB_AxB__min_plus_fp64.c
│ │ │ │ │ ├── GB_AxB__min_plus_int16.c
│ │ │ │ │ ├── GB_AxB__min_plus_int32.c
│ │ │ │ │ ├── GB_AxB__min_plus_int64.c
│ │ │ │ │ ├── GB_AxB__min_plus_int8.c
│ │ │ │ │ ├── GB_AxB__min_plus_uint16.c
│ │ │ │ │ ├── GB_AxB__min_plus_uint32.c
│ │ │ │ │ ├── GB_AxB__min_plus_uint64.c
│ │ │ │ │ ├── GB_AxB__min_plus_uint8.c
│ │ │ │ │ ├── GB_AxB__min_second_fp32.c
│ │ │ │ │ ├── GB_AxB__min_second_fp64.c
│ │ │ │ │ ├── GB_AxB__min_second_int16.c
│ │ │ │ │ ├── GB_AxB__min_second_int32.c
│ │ │ │ │ ├── GB_AxB__min_second_int64.c
│ │ │ │ │ ├── GB_AxB__min_second_int8.c
│ │ │ │ │ ├── GB_AxB__min_second_uint16.c
│ │ │ │ │ ├── GB_AxB__min_second_uint32.c
│ │ │ │ │ ├── GB_AxB__min_second_uint64.c
│ │ │ │ │ ├── GB_AxB__min_second_uint8.c
│ │ │ │ │ ├── GB_AxB__min_times_fp32.c
│ │ │ │ │ ├── GB_AxB__min_times_fp64.c
│ │ │ │ │ ├── GB_AxB__min_times_int16.c
│ │ │ │ │ ├── GB_AxB__min_times_int32.c
│ │ │ │ │ ├── GB_AxB__min_times_int64.c
│ │ │ │ │ ├── GB_AxB__min_times_int8.c
│ │ │ │ │ ├── GB_AxB__min_times_uint16.c
│ │ │ │ │ ├── GB_AxB__min_times_uint32.c
│ │ │ │ │ ├── GB_AxB__min_times_uint64.c
│ │ │ │ │ ├── GB_AxB__min_times_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_div_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_div_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_div_int16.c
│ │ │ │ │ ├── GB_AxB__plus_div_int32.c
│ │ │ │ │ ├── GB_AxB__plus_div_int64.c
│ │ │ │ │ ├── GB_AxB__plus_div_int8.c
│ │ │ │ │ ├── GB_AxB__plus_div_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_div_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_div_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_div_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_first_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_first_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_first_int16.c
│ │ │ │ │ ├── GB_AxB__plus_first_int32.c
│ │ │ │ │ ├── GB_AxB__plus_first_int64.c
│ │ │ │ │ ├── GB_AxB__plus_first_int8.c
│ │ │ │ │ ├── GB_AxB__plus_first_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_first_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_first_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_first_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_int16.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_int32.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_int64.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_int8.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_iseq_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_isge_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_isge_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_isge_int16.c
│ │ │ │ │ ├── GB_AxB__plus_isge_int32.c
│ │ │ │ │ ├── GB_AxB__plus_isge_int64.c
│ │ │ │ │ ├── GB_AxB__plus_isge_int8.c
│ │ │ │ │ ├── GB_AxB__plus_isge_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_isge_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_isge_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_isge_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_int16.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_int32.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_int64.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_int8.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_isgt_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_isle_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_isle_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_isle_int16.c
│ │ │ │ │ ├── GB_AxB__plus_isle_int32.c
│ │ │ │ │ ├── GB_AxB__plus_isle_int64.c
│ │ │ │ │ ├── GB_AxB__plus_isle_int8.c
│ │ │ │ │ ├── GB_AxB__plus_isle_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_isle_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_isle_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_isle_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_islt_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_islt_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_islt_int16.c
│ │ │ │ │ ├── GB_AxB__plus_islt_int32.c
│ │ │ │ │ ├── GB_AxB__plus_islt_int64.c
│ │ │ │ │ ├── GB_AxB__plus_islt_int8.c
│ │ │ │ │ ├── GB_AxB__plus_islt_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_islt_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_islt_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_islt_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_isne_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_isne_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_isne_int16.c
│ │ │ │ │ ├── GB_AxB__plus_isne_int32.c
│ │ │ │ │ ├── GB_AxB__plus_isne_int64.c
│ │ │ │ │ ├── GB_AxB__plus_isne_int8.c
│ │ │ │ │ ├── GB_AxB__plus_isne_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_isne_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_isne_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_isne_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_land_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_land_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_land_int16.c
│ │ │ │ │ ├── GB_AxB__plus_land_int32.c
│ │ │ │ │ ├── GB_AxB__plus_land_int64.c
│ │ │ │ │ ├── GB_AxB__plus_land_int8.c
│ │ │ │ │ ├── GB_AxB__plus_land_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_land_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_land_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_land_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_lor_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_lor_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_lor_int16.c
│ │ │ │ │ ├── GB_AxB__plus_lor_int32.c
│ │ │ │ │ ├── GB_AxB__plus_lor_int64.c
│ │ │ │ │ ├── GB_AxB__plus_lor_int8.c
│ │ │ │ │ ├── GB_AxB__plus_lor_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_lor_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_lor_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_lor_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_int16.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_int32.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_int64.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_int8.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_lxor_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_max_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_max_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_max_int16.c
│ │ │ │ │ ├── GB_AxB__plus_max_int32.c
│ │ │ │ │ ├── GB_AxB__plus_max_int64.c
│ │ │ │ │ ├── GB_AxB__plus_max_int8.c
│ │ │ │ │ ├── GB_AxB__plus_max_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_max_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_max_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_max_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_min_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_min_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_min_int16.c
│ │ │ │ │ ├── GB_AxB__plus_min_int32.c
│ │ │ │ │ ├── GB_AxB__plus_min_int64.c
│ │ │ │ │ ├── GB_AxB__plus_min_int8.c
│ │ │ │ │ ├── GB_AxB__plus_min_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_min_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_min_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_min_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_minus_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_minus_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_minus_int16.c
│ │ │ │ │ ├── GB_AxB__plus_minus_int32.c
│ │ │ │ │ ├── GB_AxB__plus_minus_int64.c
│ │ │ │ │ ├── GB_AxB__plus_minus_int8.c
│ │ │ │ │ ├── GB_AxB__plus_minus_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_minus_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_minus_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_minus_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_plus_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_plus_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_plus_int16.c
│ │ │ │ │ ├── GB_AxB__plus_plus_int32.c
│ │ │ │ │ ├── GB_AxB__plus_plus_int64.c
│ │ │ │ │ ├── GB_AxB__plus_plus_int8.c
│ │ │ │ │ ├── GB_AxB__plus_plus_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_plus_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_plus_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_plus_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_second_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_second_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_second_int16.c
│ │ │ │ │ ├── GB_AxB__plus_second_int32.c
│ │ │ │ │ ├── GB_AxB__plus_second_int64.c
│ │ │ │ │ ├── GB_AxB__plus_second_int8.c
│ │ │ │ │ ├── GB_AxB__plus_second_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_second_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_second_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_second_uint8.c
│ │ │ │ │ ├── GB_AxB__plus_times_fp32.c
│ │ │ │ │ ├── GB_AxB__plus_times_fp64.c
│ │ │ │ │ ├── GB_AxB__plus_times_int16.c
│ │ │ │ │ ├── GB_AxB__plus_times_int32.c
│ │ │ │ │ ├── GB_AxB__plus_times_int64.c
│ │ │ │ │ ├── GB_AxB__plus_times_int8.c
│ │ │ │ │ ├── GB_AxB__plus_times_uint16.c
│ │ │ │ │ ├── GB_AxB__plus_times_uint32.c
│ │ │ │ │ ├── GB_AxB__plus_times_uint64.c
│ │ │ │ │ ├── GB_AxB__plus_times_uint8.c
│ │ │ │ │ ├── GB_AxB__semirings.h
│ │ │ │ │ ├── GB_AxB__times_div_fp32.c
│ │ │ │ │ ├── GB_AxB__times_div_fp64.c
│ │ │ │ │ ├── GB_AxB__times_div_int16.c
│ │ │ │ │ ├── GB_AxB__times_div_int32.c
│ │ │ │ │ ├── GB_AxB__times_div_int64.c
│ │ │ │ │ ├── GB_AxB__times_div_int8.c
│ │ │ │ │ ├── GB_AxB__times_div_uint16.c
│ │ │ │ │ ├── GB_AxB__times_div_uint32.c
│ │ │ │ │ ├── GB_AxB__times_div_uint64.c
│ │ │ │ │ ├── GB_AxB__times_div_uint8.c
│ │ │ │ │ ├── GB_AxB__times_first_fp32.c
│ │ │ │ │ ├── GB_AxB__times_first_fp64.c
│ │ │ │ │ ├── GB_AxB__times_first_int16.c
│ │ │ │ │ ├── GB_AxB__times_first_int32.c
│ │ │ │ │ ├── GB_AxB__times_first_int64.c
│ │ │ │ │ ├── GB_AxB__times_first_int8.c
│ │ │ │ │ ├── GB_AxB__times_first_uint16.c
│ │ │ │ │ ├── GB_AxB__times_first_uint32.c
│ │ │ │ │ ├── GB_AxB__times_first_uint64.c
│ │ │ │ │ ├── GB_AxB__times_first_uint8.c
│ │ │ │ │ ├── GB_AxB__times_iseq_fp32.c
│ │ │ │ │ ├── GB_AxB__times_iseq_fp64.c
│ │ │ │ │ ├── GB_AxB__times_iseq_int16.c
│ │ │ │ │ ├── GB_AxB__times_iseq_int32.c
│ │ │ │ │ ├── GB_AxB__times_iseq_int64.c
│ │ │ │ │ ├── GB_AxB__times_iseq_int8.c
│ │ │ │ │ ├── GB_AxB__times_iseq_uint16.c
│ │ │ │ │ ├── GB_AxB__times_iseq_uint32.c
│ │ │ │ │ ├── GB_AxB__times_iseq_uint64.c
│ │ │ │ │ ├── GB_AxB__times_iseq_uint8.c
│ │ │ │ │ ├── GB_AxB__times_isge_fp32.c
│ │ │ │ │ ├── GB_AxB__times_isge_fp64.c
│ │ │ │ │ ├── GB_AxB__times_isge_int16.c
│ │ │ │ │ ├── GB_AxB__times_isge_int32.c
│ │ │ │ │ ├── GB_AxB__times_isge_int64.c
│ │ │ │ │ ├── GB_AxB__times_isge_int8.c
│ │ │ │ │ ├── GB_AxB__times_isge_uint16.c
│ │ │ │ │ ├── GB_AxB__times_isge_uint32.c
│ │ │ │ │ ├── GB_AxB__times_isge_uint64.c
│ │ │ │ │ ├── GB_AxB__times_isge_uint8.c
│ │ │ │ │ ├── GB_AxB__times_isgt_fp32.c
│ │ │ │ │ ├── GB_AxB__times_isgt_fp64.c
│ │ │ │ │ ├── GB_AxB__times_isgt_int16.c
│ │ │ │ │ ├── GB_AxB__times_isgt_int32.c
│ │ │ │ │ ├── GB_AxB__times_isgt_int64.c
│ │ │ │ │ ├── GB_AxB__times_isgt_int8.c
│ │ │ │ │ ├── GB_AxB__times_isgt_uint16.c
│ │ │ │ │ ├── GB_AxB__times_isgt_uint32.c
│ │ │ │ │ ├── GB_AxB__times_isgt_uint64.c
│ │ │ │ │ ├── GB_AxB__times_isgt_uint8.c
│ │ │ │ │ ├── GB_AxB__times_isle_fp32.c
│ │ │ │ │ ├── GB_AxB__times_isle_fp64.c
│ │ │ │ │ ├── GB_AxB__times_isle_int16.c
│ │ │ │ │ ├── GB_AxB__times_isle_int32.c
│ │ │ │ │ ├── GB_AxB__times_isle_int64.c
│ │ │ │ │ ├── GB_AxB__times_isle_int8.c
│ │ │ │ │ ├── GB_AxB__times_isle_uint16.c
│ │ │ │ │ ├── GB_AxB__times_isle_uint32.c
│ │ │ │ │ ├── GB_AxB__times_isle_uint64.c
│ │ │ │ │ ├── GB_AxB__times_isle_uint8.c
│ │ │ │ │ ├── GB_AxB__times_islt_fp32.c
│ │ │ │ │ ├── GB_AxB__times_islt_fp64.c
│ │ │ │ │ ├── GB_AxB__times_islt_int16.c
│ │ │ │ │ ├── GB_AxB__times_islt_int32.c
│ │ │ │ │ ├── GB_AxB__times_islt_int64.c
│ │ │ │ │ ├── GB_AxB__times_islt_int8.c
│ │ │ │ │ ├── GB_AxB__times_islt_uint16.c
│ │ │ │ │ ├── GB_AxB__times_islt_uint32.c
│ │ │ │ │ ├── GB_AxB__times_islt_uint64.c
│ │ │ │ │ ├── GB_AxB__times_islt_uint8.c
│ │ │ │ │ ├── GB_AxB__times_isne_fp32.c
│ │ │ │ │ ├── GB_AxB__times_isne_fp64.c
│ │ │ │ │ ├── GB_AxB__times_isne_int16.c
│ │ │ │ │ ├── GB_AxB__times_isne_int32.c
│ │ │ │ │ ├── GB_AxB__times_isne_int64.c
│ │ │ │ │ ├── GB_AxB__times_isne_int8.c
│ │ │ │ │ ├── GB_AxB__times_isne_uint16.c
│ │ │ │ │ ├── GB_AxB__times_isne_uint32.c
│ │ │ │ │ ├── GB_AxB__times_isne_uint64.c
│ │ │ │ │ ├── GB_AxB__times_isne_uint8.c
│ │ │ │ │ ├── GB_AxB__times_land_fp32.c
│ │ │ │ │ ├── GB_AxB__times_land_fp64.c
│ │ │ │ │ ├── GB_AxB__times_land_int16.c
│ │ │ │ │ ├── GB_AxB__times_land_int32.c
│ │ │ │ │ ├── GB_AxB__times_land_int64.c
│ │ │ │ │ ├── GB_AxB__times_land_int8.c
│ │ │ │ │ ├── GB_AxB__times_land_uint16.c
│ │ │ │ │ ├── GB_AxB__times_land_uint32.c
│ │ │ │ │ ├── GB_AxB__times_land_uint64.c
│ │ │ │ │ ├── GB_AxB__times_land_uint8.c
│ │ │ │ │ ├── GB_AxB__times_lor_fp32.c
│ │ │ │ │ ├── GB_AxB__times_lor_fp64.c
│ │ │ │ │ ├── GB_AxB__times_lor_int16.c
│ │ │ │ │ ├── GB_AxB__times_lor_int32.c
│ │ │ │ │ ├── GB_AxB__times_lor_int64.c
│ │ │ │ │ ├── GB_AxB__times_lor_int8.c
│ │ │ │ │ ├── GB_AxB__times_lor_uint16.c
│ │ │ │ │ ├── GB_AxB__times_lor_uint32.c
│ │ │ │ │ ├── GB_AxB__times_lor_uint64.c
│ │ │ │ │ ├── GB_AxB__times_lor_uint8.c
│ │ │ │ │ ├── GB_AxB__times_lxor_fp32.c
│ │ │ │ │ ├── GB_AxB__times_lxor_fp64.c
│ │ │ │ │ ├── GB_AxB__times_lxor_int16.c
│ │ │ │ │ ├── GB_AxB__times_lxor_int32.c
│ │ │ │ │ ├── GB_AxB__times_lxor_int64.c
│ │ │ │ │ ├── GB_AxB__times_lxor_int8.c
│ │ │ │ │ ├── GB_AxB__times_lxor_uint16.c
│ │ │ │ │ ├── GB_AxB__times_lxor_uint32.c
│ │ │ │ │ ├── GB_AxB__times_lxor_uint64.c
│ │ │ │ │ ├── GB_AxB__times_lxor_uint8.c
│ │ │ │ │ ├── GB_AxB__times_max_fp32.c
│ │ │ │ │ ├── GB_AxB__times_max_fp64.c
│ │ │ │ │ ├── GB_AxB__times_max_int16.c
│ │ │ │ │ ├── GB_AxB__times_max_int32.c
│ │ │ │ │ ├── GB_AxB__times_max_int64.c
│ │ │ │ │ ├── GB_AxB__times_max_int8.c
│ │ │ │ │ ├── GB_AxB__times_max_uint16.c
│ │ │ │ │ ├── GB_AxB__times_max_uint32.c
│ │ │ │ │ ├── GB_AxB__times_max_uint64.c
│ │ │ │ │ ├── GB_AxB__times_max_uint8.c
│ │ │ │ │ ├── GB_AxB__times_min_fp32.c
│ │ │ │ │ ├── GB_AxB__times_min_fp64.c
│ │ │ │ │ ├── GB_AxB__times_min_int16.c
│ │ │ │ │ ├── GB_AxB__times_min_int32.c
│ │ │ │ │ ├── GB_AxB__times_min_int64.c
│ │ │ │ │ ├── GB_AxB__times_min_int8.c
│ │ │ │ │ ├── GB_AxB__times_min_uint16.c
│ │ │ │ │ ├── GB_AxB__times_min_uint32.c
│ │ │ │ │ ├── GB_AxB__times_min_uint64.c
│ │ │ │ │ ├── GB_AxB__times_min_uint8.c
│ │ │ │ │ ├── GB_AxB__times_minus_fp32.c
│ │ │ │ │ ├── GB_AxB__times_minus_fp64.c
│ │ │ │ │ ├── GB_AxB__times_minus_int16.c
│ │ │ │ │ ├── GB_AxB__times_minus_int32.c
│ │ │ │ │ ├── GB_AxB__times_minus_int64.c
│ │ │ │ │ ├── GB_AxB__times_minus_int8.c
│ │ │ │ │ ├── GB_AxB__times_minus_uint16.c
│ │ │ │ │ ├── GB_AxB__times_minus_uint32.c
│ │ │ │ │ ├── GB_AxB__times_minus_uint64.c
│ │ │ │ │ ├── GB_AxB__times_minus_uint8.c
│ │ │ │ │ ├── GB_AxB__times_plus_fp32.c
│ │ │ │ │ ├── GB_AxB__times_plus_fp64.c
│ │ │ │ │ ├── GB_AxB__times_plus_int16.c
│ │ │ │ │ ├── GB_AxB__times_plus_int32.c
│ │ │ │ │ ├── GB_AxB__times_plus_int64.c
│ │ │ │ │ ├── GB_AxB__times_plus_int8.c
│ │ │ │ │ ├── GB_AxB__times_plus_uint16.c
│ │ │ │ │ ├── GB_AxB__times_plus_uint32.c
│ │ │ │ │ ├── GB_AxB__times_plus_uint64.c
│ │ │ │ │ ├── GB_AxB__times_plus_uint8.c
│ │ │ │ │ ├── GB_AxB__times_second_fp32.c
│ │ │ │ │ ├── GB_AxB__times_second_fp64.c
│ │ │ │ │ ├── GB_AxB__times_second_int16.c
│ │ │ │ │ ├── GB_AxB__times_second_int32.c
│ │ │ │ │ ├── GB_AxB__times_second_int64.c
│ │ │ │ │ ├── GB_AxB__times_second_int8.c
│ │ │ │ │ ├── GB_AxB__times_second_uint16.c
│ │ │ │ │ ├── GB_AxB__times_second_uint32.c
│ │ │ │ │ ├── GB_AxB__times_second_uint64.c
│ │ │ │ │ ├── GB_AxB__times_second_uint8.c
│ │ │ │ │ ├── GB_AxB__times_times_fp32.c
│ │ │ │ │ ├── GB_AxB__times_times_fp64.c
│ │ │ │ │ ├── GB_AxB__times_times_int16.c
│ │ │ │ │ ├── GB_AxB__times_times_int32.c
│ │ │ │ │ ├── GB_AxB__times_times_int64.c
│ │ │ │ │ ├── GB_AxB__times_times_int8.c
│ │ │ │ │ ├── GB_AxB__times_times_uint16.c
│ │ │ │ │ ├── GB_AxB__times_times_uint32.c
│ │ │ │ │ ├── GB_AxB__times_times_uint64.c
│ │ │ │ │ └── GB_AxB__times_times_uint8.c
│ │ │ │ ├── Generator
│ │ │ │ │ ├── GB_AxB.c
│ │ │ │ │ └── GB_AxB.h
│ │ │ │ ├── GrB_BinaryOp_free.c
│ │ │ │ ├── GrB_BinaryOp_new.c
│ │ │ │ ├── GrB_Col_assign.c
│ │ │ │ ├── GrB_Col_extract.c
│ │ │ │ ├── GrB_Descriptor_free.c
│ │ │ │ ├── GrB_Descriptor_new.c
│ │ │ │ ├── GrB_Descriptor_set.c
│ │ │ │ ├── GrB_error.c
│ │ │ │ ├── GrB_eWiseAdd_Matrix.c
│ │ │ │ ├── GrB_eWiseAdd_Vector.c
│ │ │ │ ├── GrB_eWiseMult_Matrix.c
│ │ │ │ ├── GrB_eWiseMult_Vector.c
│ │ │ │ ├── GrB_finalize.c
│ │ │ │ ├── GrB_init.c
│ │ │ │ ├── GrB_Matrix_apply.c
│ │ │ │ ├── GrB_Matrix_assign.c
│ │ │ │ ├── GrB_Matrix_assign_scalar.c
│ │ │ │ ├── GrB_Matrix_build.c
│ │ │ │ ├── GrB_Matrix_clear.c
│ │ │ │ ├── GrB_Matrix_dup.c
│ │ │ │ ├── GrB_Matrix_extract.c
│ │ │ │ ├── GrB_Matrix_extractElement.c
│ │ │ │ ├── GrB_Matrix_extractTuples.c
│ │ │ │ ├── GrB_Matrix_free.c
│ │ │ │ ├── GrB_Matrix_ncols.c
│ │ │ │ ├── GrB_Matrix_new.c
│ │ │ │ ├── GrB_Matrix_nrows.c
│ │ │ │ ├── GrB_Matrix_nvals.c
│ │ │ │ ├── GrB_Matrix_reduce_scalar.c
│ │ │ │ ├── GrB_Matrix_setElement.c
│ │ │ │ ├── GrB_Monoid_free.c
│ │ │ │ ├── GrB_Monoid_new.c
│ │ │ │ ├── GrB_mxm.c
│ │ │ │ ├── GrB_mxv.c
│ │ │ │ ├── GrB_reduce_to_column.c
│ │ │ │ ├── GrB_Row_assign.c
│ │ │ │ ├── GrB_Semiring_free.c
│ │ │ │ ├── GrB_Semiring_new.c
│ │ │ │ ├── GrB_transpose.c
│ │ │ │ ├── GrB_Type_free.c
│ │ │ │ ├── GrB_Type_new.c
│ │ │ │ ├── GrB_UnaryOp_free.c
│ │ │ │ ├── GrB_UnaryOp_new.c
│ │ │ │ ├── GrB_Vector_apply.c
│ │ │ │ ├── GrB_Vector_assign.c
│ │ │ │ ├── GrB_Vector_assign_scalar.c
│ │ │ │ ├── GrB_Vector_build.c
│ │ │ │ ├── GrB_Vector_clear.c
│ │ │ │ ├── GrB_Vector_dup.c
│ │ │ │ ├── GrB_Vector_extract.c
│ │ │ │ ├── GrB_Vector_extractElement.c
│ │ │ │ ├── GrB_Vector_extractTuples.c
│ │ │ │ ├── GrB_Vector_free.c
│ │ │ │ ├── GrB_Vector_new.c
│ │ │ │ ├── GrB_Vector_nvals.c
│ │ │ │ ├── GrB_Vector_reduce_scalar.c
│ │ │ │ ├── GrB_Vector_setElement.c
│ │ │ │ ├── GrB_Vector_size.c
│ │ │ │ ├── GrB_vxm.c
│ │ │ │ ├── GrB_wait.c
│ │ │ │ ├── GxB_BinaryOp_fprint.c
│ │ │ │ ├── GxB_BinaryOp_xtype.c
│ │ │ │ ├── GxB_BinaryOp_ytype.c
│ │ │ │ ├── GxB_BinaryOp_ztype.c
│ │ │ │ ├── GxB_Col_subassign.c
│ │ │ │ ├── GxB_Desc_get.c
│ │ │ │ ├── GxB_Descriptor_fprint.c
│ │ │ │ ├── GxB_Descriptor_get.c
│ │ │ │ ├── GxB_Desc_set.c
│ │ │ │ ├── GxB_Global_Option_get.c
│ │ │ │ ├── GxB_Global_Option_set.c
│ │ │ │ ├── GxB_kron.c
│ │ │ │ ├── GxB_Matrix_fprint.c
│ │ │ │ ├── GxB_Matrix_Option_get.c
│ │ │ │ ├── GxB_Matrix_Option_set.c
│ │ │ │ ├── GxB_Matrix_resize.c
│ │ │ │ ├── GxB_Matrix_select.c
│ │ │ │ ├── GxB_Matrix_subassign.c
│ │ │ │ ├── GxB_Matrix_subassign_scalar.c
│ │ │ │ ├── GxB_Matrix_type.c
│ │ │ │ ├── GxB_Monoid_fprint.c
│ │ │ │ ├── GxB_Monoid_identity.c
│ │ │ │ ├── GxB_Monoid_operator.c
│ │ │ │ ├── GxB_Row_subassign.c
│ │ │ │ ├── GxB_SelectOp_fprint.c
│ │ │ │ ├── GxB_SelectOp_free.c
│ │ │ │ ├── GxB_SelectOp_new.c
│ │ │ │ ├── GxB_SelectOp_xtype.c
│ │ │ │ ├── GxB_Semiring_add.c
│ │ │ │ ├── GxB_Semiring_fprint.c
│ │ │ │ ├── GxB_Semiring_multiply.c
│ │ │ │ ├── GxB_Type_fprint.c
│ │ │ │ ├── GxB_Type_size.c
│ │ │ │ ├── GxB_UnaryOp_fprint.c
│ │ │ │ ├── GxB_UnaryOp_xtype.c
│ │ │ │ ├── GxB_UnaryOp_ztype.c
│ │ │ │ ├── GxB_Vector_fprint.c
│ │ │ │ ├── GxB_Vector_resize.c
│ │ │ │ ├── GxB_Vector_select.c
│ │ │ │ ├── GxB_Vector_subassign.c
│ │ │ │ ├── GxB_Vector_subassign_scalar.c
│ │ │ │ ├── GxB_Vector_type.c
│ │ │ │ ├── README.txt
│ │ │ │ └── Template
│ │ │ │ ├── GB_2type_template.c
│ │ │ │ ├── GB_assoc_template.c
│ │ │ │ ├── GB_AxB_compare_template.c
│ │ │ │ ├── GB_AxB_dot_flipxy.c
│ │ │ │ ├── GB_AxB_dot_mask.c
│ │ │ │ ├── GB_AxB_dot_meta.c
│ │ │ │ ├── GB_AxB_dot_nomask.c
│ │ │ │ ├── GB_AxB_factory.c
│ │ │ │ ├── GB_AxB_Gustavson_flipxy.c
│ │ │ │ ├── GB_AxB_Gustavson_mask.c
│ │ │ │ ├── GB_AxB_Gustavson_meta.c
│ │ │ │ ├── GB_AxB_Gustavson_nomask.c
│ │ │ │ ├── GB_AxB_Gustavson_symbolic.c
│ │ │ │ ├── GB_AxB_heap_flipxy.c
│ │ │ │ ├── GB_AxB_heap_mask.c
│ │ │ │ ├── GB_AxB_heap_meta.c
│ │ │ │ ├── GB_AxB_template.c
│ │ │ │ ├── GB_cij_dot_product.c
│ │ │ │ ├── GB_critical_section.c
│ │ │ │ ├── GB_heap.h
│ │ │ │ ├── GB_matrix.h
│ │ │ │ ├── GB_ops_template.c
│ │ │ │ ├── GB_ops_template.h
│ │ │ │ ├── GB_prune_inplace.c
│ │ │ │ ├── GB_qsort_template.c
│ │ │ │ ├── GB_semiring_template.c
│ │ │ │ └── GB_subref_template.c
│ │ │ ├── Tcov
│ │ │ │ ├── Contents.m
│ │ │ │ ├── gbcmake.m
│ │ │ │ ├── gbcover_edit.m
│ │ │ │ ├── gbcover.m
│ │ │ │ ├── GB_cover_util.c
│ │ │ │ ├── gbshow.m
│ │ │ │ ├── log_Dec18.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.txt
│ │ │ │ ├── testcov.m
│ │ │ │ ├── tmp_cover
│ │ │ │ ├── tmp_include
│ │ │ │ └── tmp_source
│ │ │ ├── Test
│ │ │ │ ├── accum_mask2.m
│ │ │ │ ├── accum_mask.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── debug_off.m
│ │ │ │ ├── debug_on.m
│ │ │ │ ├── GB_define2.m
│ │ │ │ ├── GB_define.m
│ │ │ │ ├── gbmake.m
│ │ │ │ ├── GB_mex_about.c
│ │ │ │ ├── GB_mex_AdotB.c
│ │ │ │ ├── GB_mex_AplusB.c
│ │ │ │ ├── GB_mex_apply2.c
│ │ │ │ ├── GB_mex_apply.c
│ │ │ │ ├── GB_mex_assign_alias.c
│ │ │ │ ├── GB_mex_assign.c
│ │ │ │ ├── GB_mex_AxB.c
│ │ │ │ ├── GB_mex_band.c
│ │ │ │ ├── GB_mex_binaryop.c
│ │ │ │ ├── GB_mex_cast.c
│ │ │ │ ├── GB_mex_Col_assign.c
│ │ │ │ ├── GB_mex_Col_extract.c
│ │ │ │ ├── GB_mex_complex.c
│ │ │ │ ├── GB_mex_debug.c
│ │ │ │ ├── GB_mex_diag.c
│ │ │ │ ├── GB_mex_dpagerank.c
│ │ │ │ ├── GB_mex_dump.c
│ │ │ │ ├── GB_mex_dup.c
│ │ │ │ ├── GB_mex_errors.c
│ │ │ │ ├── GB_mex_eWiseAdd_Matrix.c
│ │ │ │ ├── GB_mex_eWiseAdd_Vector.c
│ │ │ │ ├── GB_mex_eWiseMult_Matrix.c
│ │ │ │ ├── GB_mex_eWiseMult_Vector.c
│ │ │ │ ├── GB_mex_extractTuples.c
│ │ │ │ ├── GB_mex.h
│ │ │ │ ├── GB_mex_init.c
│ │ │ │ ├── GB_mex_ipagerank.c
│ │ │ │ ├── GB_mex_kron.c
│ │ │ │ ├── GB_mex_Matrix_build.c
│ │ │ │ ├── GB_mex_Matrix_extract.c
│ │ │ │ ├── GB_mex_Matrix_extractElement.c
│ │ │ │ ├── GB_mex_Matrix_subref.c
│ │ │ │ ├── GB_mex_mis.c
│ │ │ │ ├── GB_mex_mxm_alias.c
│ │ │ │ ├── GB_mex_mxm.c
│ │ │ │ ├── GB_mex_mxv.c
│ │ │ │ ├── GB_mex_nonzero.c
│ │ │ │ ├── GB_mex_offdiag.c
│ │ │ │ ├── GB_mex_op.c
│ │ │ │ ├── GB_mex_qsort_1.c
│ │ │ │ ├── GB_mex_qsort_2a.c
│ │ │ │ ├── GB_mex_qsort_2b.c
│ │ │ │ ├── GB_mex_qsort_3.c
│ │ │ │ ├── GB_mex_qsort.c
│ │ │ │ ├── GB_mex_random.c
│ │ │ │ ├── GB_mex_rdiv2.c
│ │ │ │ ├── GB_mex_rdiv.c
│ │ │ │ ├── GB_mex_reduce_to_scalar.c
│ │ │ │ ├── GB_mex_reduce_to_vector.c
│ │ │ │ ├── GB_mex_resize.c
│ │ │ │ ├── GB_mex_select.c
│ │ │ │ ├── GB_mex_semiring.c
│ │ │ │ ├── GB_mex_setElement.c
│ │ │ │ ├── GB_mex_subassign_alias.c
│ │ │ │ ├── GB_mex_subassign.c
│ │ │ │ ├── GB_mex_subref_symbolic.c
│ │ │ │ ├── GB_mex_transpose.c
│ │ │ │ ├── GB_mex_tricount.c
│ │ │ │ ├── GB_mex_tril.c
│ │ │ │ ├── GB_mex_triu.c
│ │ │ │ ├── GB_mex_Vector_build.c
│ │ │ │ ├── GB_mex_Vector_extract.c
│ │ │ │ ├── GB_mex_Vector_extractElement.c
│ │ │ │ ├── GB_mex_vxm.c
│ │ │ │ ├── GB_mex_wathen.c
│ │ │ │ ├── GB_mx_builtin_monoid.c
│ │ │ │ ├── GB_mx_builtin_semiring.c
│ │ │ │ ├── GB_mx_classID_to_string.c
│ │ │ │ ├── GB_mx_classID_to_Type.c
│ │ │ │ ├── GB_mx_clear_time.c
│ │ │ │ ├── GB_mx_complex_merge.c
│ │ │ │ ├── GB_mx_complex_split.c
│ │ │ │ ├── GB_mx_get_global.c
│ │ │ │ ├── GB_mx_isequal.c
│ │ │ │ ├── GB_mx_Matrix_to_mxArray.c
│ │ │ │ ├── GB_mx_Monoid.c
│ │ │ │ ├── GB_mx_mxArray_to_array.c
│ │ │ │ ├── GB_mx_mxArray_to_BinaryOp.c
│ │ │ │ ├── GB_mx_mxArray_to_Descriptor.c
│ │ │ │ ├── GB_mx_mxArray_to_indices.c
│ │ │ │ ├── GB_mx_mxArray_to_Matrix.c
│ │ │ │ ├── GB_mx_mxArray_to_SelectOp.c
│ │ │ │ ├── GB_mx_mxArray_to_Semiring.c
│ │ │ │ ├── GB_mx_mxArray_to_string.c
│ │ │ │ ├── GB_mx_mxArray_to_UnaryOp.c
│ │ │ │ ├── GB_mx_mxArray_to_Vector.c
│ │ │ │ ├── GB_mx_object_to_mxArray.c
│ │ │ │ ├── GB_mx_put_global.c
│ │ │ │ ├── GB_mx_put_time.c
│ │ │ │ ├── GB_mx_same.c
│ │ │ │ ├── GB_mx_string_to_BinaryOp.c
│ │ │ │ ├── GB_mx_string_to_classID.c
│ │ │ │ ├── GB_mx_string_to_UnaryOp.c
│ │ │ │ ├── GB_mx_Type_to_classID.c
│ │ │ │ ├── GB_mx_Vector_to_mxArray.c
│ │ │ │ ├── GB_mx_xsame.c
│ │ │ │ ├── GB_random_mask.m
│ │ │ │ ├── gbresults.m
│ │ │ │ ├── GB_spec_accum.m
│ │ │ │ ├── GB_spec_accum_mask.m
│ │ │ │ ├── GB_spec_apply.m
│ │ │ │ ├── GB_spec_assign.m
│ │ │ │ ├── GB_spec_build.m
│ │ │ │ ├── GB_spec_Col_assign.m
│ │ │ │ ├── GB_spec_Col_extract.m
│ │ │ │ ├── GB_spec_compare.m
│ │ │ │ ├── GB_spec_descriptor.m
│ │ │ │ ├── GB_spec_eWiseAdd_Matrix.m
│ │ │ │ ├── GB_spec_eWiseAdd_Vector.m
│ │ │ │ ├── GB_spec_eWiseMult_Matrix.m
│ │ │ │ ├── GB_spec_eWiseMult_Vector.m
│ │ │ │ ├── GB_spec_extractTuples.m
│ │ │ │ ├── GB_spec_getmask.m
│ │ │ │ ├── GB_spec_identity.m
│ │ │ │ ├── GB_spec_kron.m
│ │ │ │ ├── GB_spec_mask.m
│ │ │ │ ├── GB_spec_Matrix_extractElement.m
│ │ │ │ ├── GB_spec_Matrix_extract.m
│ │ │ │ ├── GB_spec_matrix.m
│ │ │ │ ├── GB_spec_mxm.m
│ │ │ │ ├── GB_spec_mxv.m
│ │ │ │ ├── GB_spec_operator.m
│ │ │ │ ├── GB_spec_op.m
│ │ │ │ ├── GB_spec_opsall.m
│ │ │ │ ├── GB_spec_random.m
│ │ │ │ ├── GB_spec_reduce_to_scalar.m
│ │ │ │ ├── GB_spec_reduce_to_vector.m
│ │ │ │ ├── GB_spec_resize.m
│ │ │ │ ├── GB_spec_Row_assign.m
│ │ │ │ ├── GB_spec_select.m
│ │ │ │ ├── GB_spec_semiring.m
│ │ │ │ ├── GB_spec_subassign.m
│ │ │ │ ├── GB_spec_transpose.m
│ │ │ │ ├── GB_spec_Vector_extractElement.m
│ │ │ │ ├── GB_spec_Vector_extract.m
│ │ │ │ ├── GB_spec_vxm.m
│ │ │ │ ├── GB_user_compare.m
│ │ │ │ ├── GB_user_op.m
│ │ │ │ ├── GB_user_opsall.m
│ │ │ │ ├── irand.m
│ │ │ │ ├── isequal_roundoff.m
│ │ │ │ ├── logstat.m
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.txt
│ │ │ │ ├── runtest.m
│ │ │ │ ├── spok
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── spok_invalid.c
│ │ │ │ │ ├── spok.c
│ │ │ │ │ ├── spok.h
│ │ │ │ │ ├── spok_install.m
│ │ │ │ │ ├── spok.m
│ │ │ │ │ ├── spok_mex.c
│ │ │ │ │ └── spok_test.m
│ │ │ │ ├── startup.m
│ │ │ │ ├── stat.m
│ │ │ │ ├── Template
│ │ │ │ │ └── GB_mx_build_template.c
│ │ │ │ ├── test00.m
│ │ │ │ ├── test01.m
│ │ │ │ ├── test02.m
│ │ │ │ ├── test03.m
│ │ │ │ ├── test04.m
│ │ │ │ ├── test05.m
│ │ │ │ ├── test06.m
│ │ │ │ ├── test07b.m
│ │ │ │ ├── test07.m
│ │ │ │ ├── test08b.m
│ │ │ │ ├── test08.m
│ │ │ │ ├── test09b.m
│ │ │ │ ├── test09.m
│ │ │ │ ├── test10.m
│ │ │ │ ├── test11.m
│ │ │ │ ├── test12.m
│ │ │ │ ├── test13.m
│ │ │ │ ├── test14.m
│ │ │ │ ├── test15.m
│ │ │ │ ├── test16.m
│ │ │ │ ├── test17.m
│ │ │ │ ├── test18.m
│ │ │ │ ├── test19b.m
│ │ │ │ ├── test19.m
│ │ │ │ ├── test20.m
│ │ │ │ ├── test21b.m
│ │ │ │ ├── test21.m
│ │ │ │ ├── test22.m
│ │ │ │ ├── test23.m
│ │ │ │ ├── test24.m
│ │ │ │ ├── test25.m
│ │ │ │ ├── test26.m
│ │ │ │ ├── test27.m
│ │ │ │ ├── test28.m
│ │ │ │ ├── test29.m
│ │ │ │ ├── test30b.m
│ │ │ │ ├── test30.m
│ │ │ │ ├── test31.m
│ │ │ │ ├── test32.m
│ │ │ │ ├── test33.m
│ │ │ │ ├── test34.m
│ │ │ │ ├── test35.m
│ │ │ │ ├── test36.m
│ │ │ │ ├── test37.m
│ │ │ │ ├── test38.m
│ │ │ │ ├── test39.m
│ │ │ │ ├── test40.m
│ │ │ │ ├── test41.m
│ │ │ │ ├── test42.m
│ │ │ │ ├── test43.m
│ │ │ │ ├── test44.m
│ │ │ │ ├── test45.m
│ │ │ │ ├── test46b.m
│ │ │ │ ├── test46.m
│ │ │ │ ├── test47.m
│ │ │ │ ├── test48.m
│ │ │ │ ├── test49.m
│ │ │ │ ├── test50.m
│ │ │ │ ├── test51b.m
│ │ │ │ ├── test51.m
│ │ │ │ ├── test52.m
│ │ │ │ ├── test53.m
│ │ │ │ ├── test54.m
│ │ │ │ ├── test55b.m
│ │ │ │ ├── test55.m
│ │ │ │ ├── test56.m
│ │ │ │ ├── test57.m
│ │ │ │ ├── test58.m
│ │ │ │ ├── test59.m
│ │ │ │ ├── test60.m
│ │ │ │ ├── test61.m
│ │ │ │ ├── test62.m
│ │ │ │ ├── test63.m
│ │ │ │ ├── test64b.m
│ │ │ │ ├── test64.m
│ │ │ │ ├── test65.m
│ │ │ │ ├── test66.m
│ │ │ │ ├── test67.m
│ │ │ │ ├── test68.m
│ │ │ │ ├── test69.m
│ │ │ │ ├── test70.m
│ │ │ │ ├── test70_plot.m
│ │ │ │ ├── test71.m
│ │ │ │ ├── test71_plot.m
│ │ │ │ ├── test71_table.m
│ │ │ │ ├── test72.m
│ │ │ │ ├── test73.m
│ │ │ │ ├── test74.m
│ │ │ │ ├── test75.m
│ │ │ │ ├── test76.m
│ │ │ │ ├── test77.m
│ │ │ │ ├── test78.m
│ │ │ │ ├── test79.m
│ │ │ │ ├── test80.m
│ │ │ │ ├── test81.m
│ │ │ │ ├── test82.m
│ │ │ │ ├── test83.m
│ │ │ │ ├── test84.m
│ │ │ │ ├── test85.m
│ │ │ │ ├── test86.m
│ │ │ │ ├── test87.m
│ │ │ │ ├── test88.m
│ │ │ │ ├── test89.m
│ │ │ │ ├── test90.m
│ │ │ │ ├── test91.m
│ │ │ │ ├── test92.m
│ │ │ │ ├── test93.m
│ │ │ │ ├── test94.m
│ │ │ │ ├── test95.m
│ │ │ │ ├── test96.m
│ │ │ │ ├── test97.m
│ │ │ │ ├── test98.m
│ │ │ │ ├── test99.m
│ │ │ │ ├── testall.m
│ │ │ │ ├── testc1.m
│ │ │ │ ├── testc2.m
│ │ │ │ ├── testc3.m
│ │ │ │ ├── testc4.m
│ │ │ │ ├── testc5.m
│ │ │ │ ├── testc6.m
│ │ │ │ ├── testc7.m
│ │ │ │ ├── testc8.m
│ │ │ │ ├── testc9.m
│ │ │ │ ├── testca.m
│ │ │ │ ├── testcb.m
│ │ │ │ ├── testcc.m
│ │ │ │ ├── test_other.m
│ │ │ │ ├── testperf_diary.txt
│ │ │ │ └── testperf.m
│ │ │ └── User
│ │ │ ├── Example
│ │ │ │ ├── my_band.m4
│ │ │ │ ├── my_complex.m4
│ │ │ │ ├── my_pagerank.m4
│ │ │ │ ├── my_plus_rdiv2.m4
│ │ │ │ ├── my_plus_rdiv.m4
│ │ │ │ └── my_scale.m4
│ │ │ └── README.txt
│ │ ├── include
│ │ ├── KLU
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── kludemo.c
│ │ │ │ ├── kludemo.out
│ │ │ │ ├── kluldemo.c
│ │ │ │ ├── klu_simple.c
│ │ │ │ ├── klu_simple.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── KLU_UserGuide.bib
│ │ │ │ ├── KLU_UserGuide.pdf
│ │ │ │ ├── KLU_UserGuide.tex
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ └── palamadai_e.pdf
│ │ │ ├── Include
│ │ │ │ ├── klu.h
│ │ │ │ ├── klu_internal.h
│ │ │ │ └── klu_version.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── Contents.m
│ │ │ │ ├── klu_demo.m
│ │ │ │ ├── klu_demo.m.out
│ │ │ │ ├── klu_install.m
│ │ │ │ ├── klu.m
│ │ │ │ ├── klu_make.m
│ │ │ │ ├── klu_mex.c
│ │ │ │ └── Test
│ │ │ │ ├── klu_test.m
│ │ │ │ ├── test1.m
│ │ │ │ ├── test2.m
│ │ │ │ ├── test3.m
│ │ │ │ ├── test4.m
│ │ │ │ └── test5.m
│ │ │ ├── Matrix
│ │ │ │ ├── 1c.mtx
│ │ │ │ ├── arrowc.mtx
│ │ │ │ ├── arrow.mtx
│ │ │ │ ├── ctina.mtx
│ │ │ │ ├── GD99_cc.mtx
│ │ │ │ ├── impcol_a.mtx
│ │ │ │ ├── onec.mtx
│ │ │ │ ├── one.mtx
│ │ │ │ ├── two.mtx
│ │ │ │ └── w156.mtx
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── klu_analyze.c
│ │ │ │ ├── klu_analyze_given.c
│ │ │ │ ├── klu.c
│ │ │ │ ├── klu_defaults.c
│ │ │ │ ├── klu_diagnostics.c
│ │ │ │ ├── klu_dump.c
│ │ │ │ ├── klu_extract.c
│ │ │ │ ├── klu_factor.c
│ │ │ │ ├── klu_free_numeric.c
│ │ │ │ ├── klu_free_symbolic.c
│ │ │ │ ├── klu_kernel.c
│ │ │ │ ├── klu_memory.c
│ │ │ │ ├── klu_refactor.c
│ │ │ │ ├── klu_scale.c
│ │ │ │ ├── klu_solve.c
│ │ │ │ ├── klu_sort.c
│ │ │ │ └── klu_tsolve.c
│ │ │ ├── SourceWrappers
│ │ │ │ ├── klu_analyze_given.o.c
│ │ │ │ ├── klu_analyze.o.c
│ │ │ │ ├── klu_d_diagnostics.o.c
│ │ │ │ ├── klu_d_dump.o.c
│ │ │ │ ├── klu_defaults.o.c
│ │ │ │ ├── klu_d_extract.o.c
│ │ │ │ ├── klu_d_factor.o.c
│ │ │ │ ├── klu_d_free_numeric.o.c
│ │ │ │ ├── klu_d_kernel.o.c
│ │ │ │ ├── klu_d.o.c
│ │ │ │ ├── klu_d_refactor.o.c
│ │ │ │ ├── klu_d_scale.o.c
│ │ │ │ ├── klu_d_solve.o.c
│ │ │ │ ├── klu_d_sort.o.c
│ │ │ │ ├── klu_d_tsolve.o.c
│ │ │ │ ├── klu_free_symbolic.o.c
│ │ │ │ ├── klu_l_analyze_given.o.c
│ │ │ │ ├── klu_l_analyze.o.c
│ │ │ │ ├── klu_l_defaults.o.c
│ │ │ │ ├── klu_l_diagnostics.o.c
│ │ │ │ ├── klu_l_dump.o.c
│ │ │ │ ├── klu_l_extract.o.c
│ │ │ │ ├── klu_l_factor.o.c
│ │ │ │ ├── klu_l_free_numeric.o.c
│ │ │ │ ├── klu_l_free_symbolic.o.c
│ │ │ │ ├── klu_l_kernel.o.c
│ │ │ │ ├── klu_l_memory.o.c
│ │ │ │ ├── klu_l.o.c
│ │ │ │ ├── klu_l_refactor.o.c
│ │ │ │ ├── klu_l_scale.o.c
│ │ │ │ ├── klu_l_solve.o.c
│ │ │ │ ├── klu_l_sort.o.c
│ │ │ │ ├── klu_l_tsolve.o.c
│ │ │ │ ├── klu_memory.o.c
│ │ │ │ ├── klu_z_diagnostics.o.c
│ │ │ │ ├── klu_z_dump.o.c
│ │ │ │ ├── klu_z_extract.o.c
│ │ │ │ ├── klu_z_factor.o.c
│ │ │ │ ├── klu_z_free_numeric.o.c
│ │ │ │ ├── klu_z_kernel.o.c
│ │ │ │ ├── klu_zl_diagnostics.o.c
│ │ │ │ ├── klu_zl_dump.o.c
│ │ │ │ ├── klu_zl_extract.o.c
│ │ │ │ ├── klu_zl_factor.o.c
│ │ │ │ ├── klu_zl_free_numeric.o.c
│ │ │ │ ├── klu_zl_kernel.o.c
│ │ │ │ ├── klu_zl.o.c
│ │ │ │ ├── klu_zl_refactor.o.c
│ │ │ │ ├── klu_zl_scale.o.c
│ │ │ │ ├── klu_zl_solve.o.c
│ │ │ │ ├── klu_zl_sort.o.c
│ │ │ │ ├── klu_zl_tsolve.o.c
│ │ │ │ ├── klu_z.o.c
│ │ │ │ ├── klu_z_refactor.o.c
│ │ │ │ ├── klu_z_scale.o.c
│ │ │ │ ├── klu_z_solve.o.c
│ │ │ │ ├── klu_z_sort.o.c
│ │ │ │ └── klu_z_tsolve.o.c
│ │ │ ├── Tcov
│ │ │ │ ├── coverage
│ │ │ │ ├── klultests
│ │ │ │ ├── klutest.c
│ │ │ │ ├── klutests
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.txt
│ │ │ │ ├── vklultests
│ │ │ │ └── vklutests
│ │ │ └── User
│ │ │ ├── klu_cholmod.c
│ │ │ ├── klu_cholmod.h
│ │ │ ├── klu_l_cholmod.c
│ │ │ ├── Makefile
│ │ │ └── README.txt
│ │ ├── LDL
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── ldlamd.out
│ │ │ │ ├── ldllamd.out
│ │ │ │ ├── ldllmain.out
│ │ │ │ ├── ldllsimple.c
│ │ │ │ ├── ldllsimple.out
│ │ │ │ ├── ldlmain.c
│ │ │ │ ├── ldlmain.out
│ │ │ │ ├── ldlsimple.c
│ │ │ │ ├── ldlsimple.out
│ │ │ │ └── Makefile
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── ldl.bib
│ │ │ │ ├── ldl_userguide.pdf
│ │ │ │ ├── ldl_userguide.tex
│ │ │ │ ├── lesser.txt
│ │ │ │ ├── License.txt
│ │ │ │ └── Makefile
│ │ │ ├── Include
│ │ │ │ └── ldl.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── makefile2wrappers.txt
│ │ │ ├── MATLAB
│ │ │ │ ├── Contents.m
│ │ │ │ ├── ldldemo.m
│ │ │ │ ├── ldldemo.out
│ │ │ │ ├── ldl_install.m
│ │ │ │ ├── ldlmain2.m
│ │ │ │ ├── ldlmain2.out
│ │ │ │ ├── ldl_make.m
│ │ │ │ ├── ldlmex.c
│ │ │ │ ├── ldlrow.m
│ │ │ │ ├── ldlsparse.m
│ │ │ │ ├── ldlsymbol.m
│ │ │ │ ├── ldlsymbolmex.c
│ │ │ │ ├── ldltest.m
│ │ │ │ └── ldltest.out
│ │ │ ├── Matrix
│ │ │ │ ├── A01
│ │ │ │ ├── A02
│ │ │ │ ├── A03
│ │ │ │ ├── A04
│ │ │ │ ├── A05
│ │ │ │ ├── A06
│ │ │ │ ├── A07
│ │ │ │ ├── A08
│ │ │ │ ├── A09
│ │ │ │ ├── A10
│ │ │ │ ├── A11
│ │ │ │ ├── A12
│ │ │ │ ├── A13
│ │ │ │ ├── A14
│ │ │ │ ├── A15
│ │ │ │ ├── A16
│ │ │ │ ├── A17
│ │ │ │ ├── A18
│ │ │ │ ├── A19
│ │ │ │ ├── A20
│ │ │ │ ├── A21
│ │ │ │ ├── A22
│ │ │ │ ├── A23
│ │ │ │ ├── A24
│ │ │ │ ├── A25
│ │ │ │ ├── A26
│ │ │ │ ├── A27
│ │ │ │ ├── A28
│ │ │ │ ├── A29
│ │ │ │ └── A30
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ └── ldl.c
│ │ │ └── SourceWrappers
│ │ │ ├── ldll.o.c
│ │ │ └── ldl.o.c
│ │ ├── lib
│ │ ├── LICENSE.txt
│ │ ├── Makefile
│ │ ├── makefile2wrappers.py
│ │ ├── MATLAB_Tools
│ │ │ ├── Contents.m
│ │ │ ├── dimacs10
│ │ │ │ ├── adjnoun.graph
│ │ │ │ ├── bad1.graph
│ │ │ │ ├── bad2.graph
│ │ │ │ ├── bad3.graph
│ │ │ │ ├── bad4.graph
│ │ │ │ ├── bad5.graph
│ │ │ │ ├── bad6.graph
│ │ │ │ ├── bad7.graph
│ │ │ │ ├── bad8.graph
│ │ │ │ ├── bad9.graph
│ │ │ │ ├── Contents.m
│ │ │ │ ├── dimacs10_convert_to_graph.c
│ │ │ │ ├── dimacs10_demo.m
│ │ │ │ ├── dimacs10_install.m
│ │ │ │ ├── dimacs10.m
│ │ │ │ ├── fig8a.graph
│ │ │ │ ├── fig8b.graph
│ │ │ │ ├── fig8c.graph
│ │ │ │ ├── fig8d.graph
│ │ │ │ ├── ilp_test.graph
│ │ │ │ ├── metis_graph_read.m
│ │ │ │ ├── metis_graph_read_mex.c
│ │ │ │ ├── metis_graph_test.m
│ │ │ │ └── multi.graph
│ │ │ ├── Doc
│ │ │ │ └── License.txt
│ │ │ ├── Factorize
│ │ │ │ ├── cod.m
│ │ │ │ ├── cod_qmult.m
│ │ │ │ ├── cod_sparse.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── Demo
│ │ │ │ │ ├── factorize_demo.m
│ │ │ │ │ └── fdemo.m
│ │ │ │ ├── Doc
│ │ │ │ │ ├── factorize_article.pdf
│ │ │ │ │ ├── factorize_demo.html
│ │ │ │ │ ├── factorize_demo.pdf
│ │ │ │ │ └── factorize_demo.tex
│ │ │ │ ├── factorization_chol_dense.m
│ │ │ │ ├── factorization_chol_sparse.m
│ │ │ │ ├── factorization_cod_dense.m
│ │ │ │ ├── factorization_cod_sparse.m
│ │ │ │ ├── factorization_ldl_dense.m
│ │ │ │ ├── factorization_ldl_sparse.m
│ │ │ │ ├── factorization_lu_dense.m
│ │ │ │ ├── factorization_lu_sparse.m
│ │ │ │ ├── factorization.m
│ │ │ │ ├── factorization_qr_dense.m
│ │ │ │ ├── factorization_qr_sparse.m
│ │ │ │ ├── factorization_qrt_dense.m
│ │ │ │ ├── factorization_qrt_sparse.m
│ │ │ │ ├── factorization_svd.m
│ │ │ │ ├── factorize.m
│ │ │ │ ├── inverse.m
│ │ │ │ ├── private
│ │ │ │ │ ├── cheap_condest.m
│ │ │ │ │ ├── get_diag.m
│ │ │ │ │ └── rank_est.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── rq.m
│ │ │ │ └── Test
│ │ │ │ ├── Contents.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── reset_rand.m
│ │ │ │ ├── test_accuracy.m
│ │ │ │ ├── test_all_cod.m
│ │ │ │ ├── test_all.m
│ │ │ │ ├── test_all_svd.m
│ │ │ │ ├── test_all.txt
│ │ │ │ ├── test_cod.m
│ │ │ │ ├── test_disp.m
│ │ │ │ ├── test_errors.m
│ │ │ │ ├── test_factorize.m
│ │ │ │ ├── test_function.m
│ │ │ │ ├── test_functions.m
│ │ │ │ ├── test_performance.m
│ │ │ │ └── test_svd.m
│ │ │ ├── find_components
│ │ │ │ ├── Contents.m
│ │ │ │ ├── find_components_example.m
│ │ │ │ ├── find_components.m
│ │ │ │ ├── find_components.png
│ │ │ │ └── largest_component.m
│ │ │ ├── GEE
│ │ │ │ ├── Contents.m
│ │ │ │ ├── gee_its_short.m
│ │ │ │ ├── gee_its_simple_backsolve.m
│ │ │ │ ├── gee_its_simple_factorize.m
│ │ │ │ ├── gee_its_simple_forwardsolve.m
│ │ │ │ ├── gee_its_simple.m
│ │ │ │ ├── gee_its_simple_resid.m
│ │ │ │ ├── gee_its_simple_test.m
│ │ │ │ ├── gee_its_sweet.m
│ │ │ │ ├── gee_its_too_short.m
│ │ │ │ └── private
│ │ │ │ └── gee_its_simple_check.m
│ │ │ ├── getversion.m
│ │ │ ├── gipper.m
│ │ │ ├── hprintf.m
│ │ │ ├── LINFACTOR
│ │ │ │ ├── Contents.m
│ │ │ │ ├── linfactor.m
│ │ │ │ ├── lintest.m
│ │ │ │ ├── lintests.m
│ │ │ │ └── README.txt
│ │ │ ├── MESHND
│ │ │ │ ├── Contents.m
│ │ │ │ ├── meshnd_example.m
│ │ │ │ ├── meshnd.m
│ │ │ │ ├── meshnd.png
│ │ │ │ ├── meshnd_quality.m
│ │ │ │ ├── meshnd_quality_out.txt
│ │ │ │ ├── meshnd_quality.png
│ │ │ │ ├── meshsparse.m
│ │ │ │ └── README.txt
│ │ │ ├── pagerankdemo.m
│ │ │ ├── SFMULT
│ │ │ │ ├── Contents.m
│ │ │ │ ├── Makefile
│ │ │ │ ├── sfmult_anxnyn.c
│ │ │ │ ├── sfmult_anxnyt.c
│ │ │ │ ├── sfmult_anxnyt_k.c
│ │ │ │ ├── sfmult_anxtyn.c
│ │ │ │ ├── sfmult_anxtyt.c
│ │ │ │ ├── sfmult_anxtyt_k.c
│ │ │ │ ├── sfmult_atxnyn.c
│ │ │ │ ├── sfmult_atxnyt.c
│ │ │ │ ├── sfmult_atxtyn.c
│ │ │ │ ├── sfmult_atxtyn_k.c
│ │ │ │ ├── sfmult_atxtyt.c
│ │ │ │ ├── sfmult_atxtyt_k.c
│ │ │ │ ├── sfmult.c
│ │ │ │ ├── sfmult.h
│ │ │ │ ├── sfmult.m
│ │ │ │ ├── sfmult_mex.c
│ │ │ │ ├── sfmult_vector_1.c
│ │ │ │ ├── sfmult_vector_k.c
│ │ │ │ ├── sfmult_xA.c
│ │ │ │ └── ssmult_transpose.c
│ │ │ ├── shellgui
│ │ │ │ ├── Contents.m
│ │ │ │ ├── seashell.m
│ │ │ │ ├── shellgui.fig
│ │ │ │ └── shellgui.m
│ │ │ ├── sparseinv
│ │ │ │ ├── Contents.m
│ │ │ │ ├── sparseinv.c
│ │ │ │ ├── sparseinv.h
│ │ │ │ ├── sparseinv_install.m
│ │ │ │ ├── sparseinv.m
│ │ │ │ ├── sparseinv_mex.c
│ │ │ │ └── sparseinv_test.m
│ │ │ ├── spok
│ │ │ │ ├── Contents.m
│ │ │ │ ├── private
│ │ │ │ │ └── spok_invalid.c
│ │ │ │ ├── spok.c
│ │ │ │ ├── spok.h
│ │ │ │ ├── spok_install.m
│ │ │ │ ├── spok.m
│ │ │ │ ├── spok_mex.c
│ │ │ │ └── spok_test.m
│ │ │ ├── spqr_rank
│ │ │ │ ├── Contents.m
│ │ │ │ ├── demo_spqr_rank.m
│ │ │ │ ├── private
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── spqr_failure.m
│ │ │ │ │ ├── spqr_rank_assign_stats.m
│ │ │ │ │ ├── spqr_rank_deflation.m
│ │ │ │ │ ├── spqr_rank_form_basis.m
│ │ │ │ │ ├── spqr_rank_get_inputs.m
│ │ │ │ │ ├── spqr_rank_order_fields.m
│ │ │ │ │ ├── spqr_repeatable.m
│ │ │ │ │ ├── spqr_wrapper.m
│ │ │ │ │ ├── test_spqr_coverage.txt
│ │ │ │ │ └── tol_is_default.m
│ │ │ │ ├── quickdemo_spqr_rank.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── save_samples_demo_spqr_rank.mat
│ │ │ │ ├── SJget
│ │ │ │ │ ├── Contents.m
│ │ │ │ │ ├── mat
│ │ │ │ │ │ ├── GHS_indef
│ │ │ │ │ │ │ └── laser.mat
│ │ │ │ │ │ ├── HB
│ │ │ │ │ │ │ ├── bcspwr02.mat
│ │ │ │ │ │ │ ├── bcsstm01.mat
│ │ │ │ │ │ │ ├── bcsstm03.mat
│ │ │ │ │ │ │ ├── bcsstm04.mat
│ │ │ │ │ │ │ ├── can_144.mat
│ │ │ │ │ │ │ ├── can_187.mat
│ │ │ │ │ │ │ ├── can_61.mat
│ │ │ │ │ │ │ ├── curtis54.mat
│ │ │ │ │ │ │ ├── dwt_162.mat
│ │ │ │ │ │ │ ├── dwt_193.mat
│ │ │ │ │ │ │ ├── dwt_198.mat
│ │ │ │ │ │ │ ├── dwt_209.mat
│ │ │ │ │ │ │ ├── dwt_72.mat
│ │ │ │ │ │ │ ├── fs_183_3.mat
│ │ │ │ │ │ │ ├── gent113.mat
│ │ │ │ │ │ │ ├── jgl009.mat
│ │ │ │ │ │ │ ├── jgl011.mat
│ │ │ │ │ │ │ ├── lap_25.mat
│ │ │ │ │ │ │ ├── lns_131.mat
│ │ │ │ │ │ │ ├── lnsp_131.mat
│ │ │ │ │ │ │ ├── mcca.mat
│ │ │ │ │ │ │ ├── rgg010.mat
│ │ │ │ │ │ │ ├── west0156.mat
│ │ │ │ │ │ │ ├── will199.mat
│ │ │ │ │ │ │ └── will57.mat
│ │ │ │ │ │ ├── JGD_Homology
│ │ │ │ │ │ │ ├── ch3-3-b1.mat
│ │ │ │ │ │ │ ├── ch4-4-b1.mat
│ │ │ │ │ │ │ ├── ch4-4-b2.mat
│ │ │ │ │ │ │ ├── ch5-5-b1.mat
│ │ │ │ │ │ │ ├── cis-n4c6-b1.mat
│ │ │ │ │ │ │ ├── klein-b1.mat
│ │ │ │ │ │ │ ├── n2c6-b1.mat
│ │ │ │ │ │ │ ├── n3c4-b1.mat
│ │ │ │ │ │ │ ├── n3c4-b2.mat
│ │ │ │ │ │ │ ├── n3c4-b3.mat
│ │ │ │ │ │ │ ├── n3c4-b4.mat
│ │ │ │ │ │ │ ├── n3c5-b1.mat
│ │ │ │ │ │ │ ├── n3c5-b2.mat
│ │ │ │ │ │ │ ├── n3c5-b3.mat
│ │ │ │ │ │ │ ├── n3c6-b1.mat
│ │ │ │ │ │ │ ├── n4c5-b1.mat
│ │ │ │ │ │ │ └── n4c6-b1.mat
│ │ │ │ │ │ ├── JGD_Margulies
│ │ │ │ │ │ │ ├── cat_ears_2_1.mat
│ │ │ │ │ │ │ ├── cat_ears_3_1.mat
│ │ │ │ │ │ │ ├── flower_4_1.mat
│ │ │ │ │ │ │ ├── wheel_3_1.mat
│ │ │ │ │ │ │ ├── wheel_4_1.mat
│ │ │ │ │ │ │ ├── wheel_5_1.mat
│ │ │ │ │ │ │ ├── wheel_6_1.mat
│ │ │ │ │ │ │ └── wheel_7_1.mat
│ │ │ │ │ │ ├── JGD_Relat
│ │ │ │ │ │ │ ├── rel3.mat
│ │ │ │ │ │ │ ├── rel4.mat
│ │ │ │ │ │ │ ├── relat3.mat
│ │ │ │ │ │ │ └── relat4.mat
│ │ │ │ │ │ ├── NYPA
│ │ │ │ │ │ │ └── Maragal_1.mat
│ │ │ │ │ │ ├── Pajek
│ │ │ │ │ │ │ ├── Erdos971.mat
│ │ │ │ │ │ │ ├── football.mat
│ │ │ │ │ │ │ ├── GD01_b.mat
│ │ │ │ │ │ │ ├── GD01_c.mat
│ │ │ │ │ │ │ ├── GD02_a.mat
│ │ │ │ │ │ │ ├── GD02_b.mat
│ │ │ │ │ │ │ ├── GD06_theory.mat
│ │ │ │ │ │ │ ├── GD95_a.mat
│ │ │ │ │ │ │ ├── GD95_b.mat
│ │ │ │ │ │ │ ├── GD96_b.mat
│ │ │ │ │ │ │ ├── GD96_c.mat
│ │ │ │ │ │ │ ├── GD96_d.mat
│ │ │ │ │ │ │ ├── GD97_a.mat
│ │ │ │ │ │ │ ├── GD97_b.mat
│ │ │ │ │ │ │ ├── GD98_a.mat
│ │ │ │ │ │ │ ├── GD98_b.mat
│ │ │ │ │ │ │ ├── GD98_c.mat
│ │ │ │ │ │ │ ├── GD99_b.mat
│ │ │ │ │ │ │ ├── GD99_c.mat
│ │ │ │ │ │ │ ├── GlossGT.mat
│ │ │ │ │ │ │ ├── Ragusa16.mat
│ │ │ │ │ │ │ ├── Ragusa18.mat
│ │ │ │ │ │ │ ├── Sandi_authors.mat
│ │ │ │ │ │ │ ├── Tina_AskCal.mat
│ │ │ │ │ │ │ ├── Tina_DisCal.mat
│ │ │ │ │ │ │ └── Tina_DisCog.mat
│ │ │ │ │ │ ├── Pothen
│ │ │ │ │ │ │ └── sphere2.mat
│ │ │ │ │ │ ├── Regtools
│ │ │ │ │ │ │ ├── baart_100.mat
│ │ │ │ │ │ │ ├── baart_200.mat
│ │ │ │ │ │ │ ├── foxgood_100.mat
│ │ │ │ │ │ │ ├── foxgood_200.mat
│ │ │ │ │ │ │ ├── gravity_1000.mat
│ │ │ │ │ │ │ ├── gravity_100.mat
│ │ │ │ │ │ │ ├── gravity_200.mat
│ │ │ │ │ │ │ ├── heat_100.mat
│ │ │ │ │ │ │ ├── heat_200.mat
│ │ │ │ │ │ │ ├── i_laplace_100.mat
│ │ │ │ │ │ │ ├── i_laplace_200.mat
│ │ │ │ │ │ │ ├── parallax_100.mat
│ │ │ │ │ │ │ ├── parallax_200.mat
│ │ │ │ │ │ │ ├── shaw_100.mat
│ │ │ │ │ │ │ ├── shaw_200.mat
│ │ │ │ │ │ │ ├── tomo_100.mat
│ │ │ │ │ │ │ ├── ursell_100.mat
│ │ │ │ │ │ │ ├── ursell_200.mat
│ │ │ │ │ │ │ ├── wing_100.mat
│ │ │ │ │ │ │ ├── wing_200.mat
│ │ │ │ │ │ │ └── wing_500.mat
│ │ │ │ │ │ ├── Sandia
│ │ │ │ │ │ │ ├── oscil_dcop_24.mat
│ │ │ │ │ │ │ ├── oscil_dcop_33.mat
│ │ │ │ │ │ │ └── oscil_dcop_34.mat
│ │ │ │ │ │ └── SJ_Index.mat
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── SJget_defaults.m
│ │ │ │ │ ├── SJget_example.m
│ │ │ │ │ ├── SJget_install.m
│ │ │ │ │ ├── SJget_lookup.m
│ │ │ │ │ ├── SJget.m
│ │ │ │ │ ├── SJgrep.m
│ │ │ │ │ ├── SJplot.m
│ │ │ │ │ ├── SJrank.m
│ │ │ │ │ └── SJweb.m
│ │ │ │ ├── spqr_basic.m
│ │ │ │ ├── spqr_cod.m
│ │ │ │ ├── spqr_explicit_basis.m
│ │ │ │ ├── spqr_null.m
│ │ │ │ ├── spqr_null_mult.m
│ │ │ │ ├── spqr_pinv.m
│ │ │ │ ├── spqr_rank_opts.m
│ │ │ │ ├── spqr_rank_stats.m
│ │ │ │ ├── spqr_ssi.m
│ │ │ │ ├── spqr_ssp.m
│ │ │ │ ├── test_spqr_coverage.m
│ │ │ │ └── test_spqr_rank.m
│ │ │ ├── SSMULT
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── Contents.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── Results
│ │ │ │ │ ├── CoreDuo_Linux.png
│ │ │ │ │ ├── CoreDuo_MS_lcc.png
│ │ │ │ │ ├── CoreDuo_MS_vc2005.png
│ │ │ │ │ ├── Opteron64_Linux.png
│ │ │ │ │ ├── Opteron64_sstest2.png
│ │ │ │ │ ├── Pentium4M_Linux.png
│ │ │ │ │ ├── s2.m
│ │ │ │ │ └── sstest2_results.mat
│ │ │ │ ├── sptranspose.c
│ │ │ │ ├── sptranspose.m
│ │ │ │ ├── ssmult.c
│ │ │ │ ├── ssmult_demo.m
│ │ │ │ ├── ssmult_dot.c
│ │ │ │ ├── ssmult.h
│ │ │ │ ├── ssmult_install.m
│ │ │ │ ├── ssmult.m
│ │ │ │ ├── ssmult_mex.c
│ │ │ │ ├── ssmult_saxpy.c
│ │ │ │ ├── ssmultsym.c
│ │ │ │ ├── ssmultsym.m
│ │ │ │ ├── ssmult_template.c
│ │ │ │ ├── ssmult_test.m
│ │ │ │ ├── ssmult_transpose.c
│ │ │ │ ├── sstest2.m
│ │ │ │ ├── sstest3.m
│ │ │ │ ├── sstest.m
│ │ │ │ └── tryit.mat
│ │ │ ├── SuiteSparseCollection
│ │ │ │ ├── Contents.m
│ │ │ │ ├── Doc
│ │ │ │ │ └── ChangeLog
│ │ │ │ ├── dsxy2figxy.m
│ │ │ │ ├── README.txt
│ │ │ │ ├── sscellstring.m
│ │ │ │ ├── ssexport.m
│ │ │ │ ├── ssfull_read.m
│ │ │ │ ├── ssfull_write.c
│ │ │ │ ├── ssfull_write.m
│ │ │ │ ├── ssgplot.m
│ │ │ │ ├── ssindex.m
│ │ │ │ ├── ss_install.m
│ │ │ │ ├── sslocation.m
│ │ │ │ ├── sspage.m
│ │ │ │ ├── sspages.m
│ │ │ │ ├── ssread.m
│ │ │ │ ├── ssstats.m
│ │ │ │ ├── sstextread.m
│ │ │ │ ├── sstextwrite.m
│ │ │ │ └── sswrite.m
│ │ │ └── waitmex
│ │ │ ├── README.txt
│ │ │ ├── waitexample.c
│ │ │ ├── waitexample.m
│ │ │ ├── waitex.m
│ │ │ ├── waitmex.c
│ │ │ ├── waitmex.h
│ │ │ └── waitmex.m
│ │ ├── metis-5.1.0
│ │ │ ├── BUILD.txt
│ │ │ ├── BUILD-Windows.txt
│ │ │ ├── Changelog
│ │ │ ├── CMakeLists.txt
│ │ │ ├── GKlib
│ │ │ │ ├── b64.c
│ │ │ │ ├── blas.c
│ │ │ │ ├── BUILD.txt
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── conf
│ │ │ │ │ └── check_thread_storage.c
│ │ │ │ ├── csr.c
│ │ │ │ ├── error.c
│ │ │ │ ├── evaluate.c
│ │ │ │ ├── fkvkselect.c
│ │ │ │ ├── fs.c
│ │ │ │ ├── getopt.c
│ │ │ │ ├── gk_arch.h
│ │ │ │ ├── gk_defs.h
│ │ │ │ ├── gk_externs.h
│ │ │ │ ├── gk_getopt.h
│ │ │ │ ├── GKlib.h
│ │ │ │ ├── GKlibSystem.cmake
│ │ │ │ ├── gk_macros.h
│ │ │ │ ├── gk_mkblas.h
│ │ │ │ ├── gk_mkmemory.h
│ │ │ │ ├── gk_mkpqueue2.h
│ │ │ │ ├── gk_mkpqueue.h
│ │ │ │ ├── gk_mkrandom.h
│ │ │ │ ├── gk_mksort.h
│ │ │ │ ├── gk_mkutils.h
│ │ │ │ ├── gk_proto.h
│ │ │ │ ├── gkregex.c
│ │ │ │ ├── gkregex.h
│ │ │ │ ├── gk_struct.h
│ │ │ │ ├── gk_types.h
│ │ │ │ ├── graph.c
│ │ │ │ ├── htable.c
│ │ │ │ ├── io.c
│ │ │ │ ├── itemsets.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mcore.c
│ │ │ │ ├── memory.c
│ │ │ │ ├── ms_inttypes.h
│ │ │ │ ├── ms_stat.h
│ │ │ │ ├── ms_stdint.h
│ │ │ │ ├── omp.c
│ │ │ │ ├── pdb.c
│ │ │ │ ├── pqueue.c
│ │ │ │ ├── random.c
│ │ │ │ ├── rw.c
│ │ │ │ ├── seq.c
│ │ │ │ ├── sort.c
│ │ │ │ ├── string.c
│ │ │ │ ├── test
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── fis.c
│ │ │ │ │ ├── gkgraph.c
│ │ │ │ │ ├── gksort.c
│ │ │ │ │ ├── Makefile.in.old
│ │ │ │ │ ├── Makefile.old
│ │ │ │ │ ├── rw.c
│ │ │ │ │ └── strings.c
│ │ │ │ ├── timers.c
│ │ │ │ ├── tokenizer.c
│ │ │ │ └── util.c
│ │ │ ├── graphs
│ │ │ │ ├── 4elt.graph
│ │ │ │ ├── copter2.graph
│ │ │ │ ├── mdual.graph
│ │ │ │ ├── metis.mesh
│ │ │ │ ├── README
│ │ │ │ └── test.mgraph
│ │ │ ├── include
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ └── metis.h
│ │ │ ├── Install.txt
│ │ │ ├── libmetis
│ │ │ │ ├── auxapi.c
│ │ │ │ ├── balance.c
│ │ │ │ ├── bucketsort.c
│ │ │ │ ├── checkgraph.c
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── coarsen.c
│ │ │ │ ├── compress.c
│ │ │ │ ├── contig.c
│ │ │ │ ├── debug.c
│ │ │ │ ├── defs.h
│ │ │ │ ├── fm.c
│ │ │ │ ├── fortran.c
│ │ │ │ ├── frename.c
│ │ │ │ ├── gklib.c
│ │ │ │ ├── gklib_defs.h
│ │ │ │ ├── gklib_rename.h
│ │ │ │ ├── graph.c
│ │ │ │ ├── initpart.c
│ │ │ │ ├── kmetis.c
│ │ │ │ ├── kwayfm.c
│ │ │ │ ├── kwayrefine.c
│ │ │ │ ├── macros.h
│ │ │ │ ├── mcutil.c
│ │ │ │ ├── mesh.c
│ │ │ │ ├── meshpart.c
│ │ │ │ ├── metislib.h
│ │ │ │ ├── minconn.c
│ │ │ │ ├── mincover.c
│ │ │ │ ├── mmd.c
│ │ │ │ ├── ometis.c
│ │ │ │ ├── options.c
│ │ │ │ ├── parmetis.c
│ │ │ │ ├── pmetis.c
│ │ │ │ ├── proto.h
│ │ │ │ ├── refine.c
│ │ │ │ ├── rename.h
│ │ │ │ ├── separator.c
│ │ │ │ ├── sfm.c
│ │ │ │ ├── srefine.c
│ │ │ │ ├── stat.c
│ │ │ │ ├── stdheaders.h
│ │ │ │ ├── struct.h
│ │ │ │ ├── timing.c
│ │ │ │ ├── util.c
│ │ │ │ └── wspace.c
│ │ │ ├── LICENSE.txt
│ │ │ ├── Makefile
│ │ │ ├── manual
│ │ │ │ └── manual.pdf
│ │ │ ├── programs
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── cmdline_gpmetis.c
│ │ │ │ ├── cmdline_m2gmetis.c
│ │ │ │ ├── cmdline_mpmetis.c
│ │ │ │ ├── cmdline_ndmetis.c
│ │ │ │ ├── cmpfillin.c
│ │ │ │ ├── defs.h
│ │ │ │ ├── gpmetis.c
│ │ │ │ ├── graphchk.c
│ │ │ │ ├── io.c
│ │ │ │ ├── m2gmetis.c
│ │ │ │ ├── metisbin.h
│ │ │ │ ├── mpmetis.c
│ │ │ │ ├── ndmetis.c
│ │ │ │ ├── proto.h
│ │ │ │ ├── smbfactor.c
│ │ │ │ ├── stat.c
│ │ │ │ └── struct.h
│ │ │ ├── README.txt
│ │ │ └── vsgen.bat
│ │ ├── Mongoose
│ │ │ ├── CMake
│ │ │ │ └── cmake_colors.cmake
│ │ │ ├── CMakeLists.txt
│ │ │ ├── codecov.yml
│ │ │ ├── codemeta.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Demo
│ │ │ │ └── demo.cpp
│ │ │ ├── Doc
│ │ │ │ ├── CONTRIBUTOR-LICENSE
│ │ │ │ ├── CONTRIBUTOR-LICENSE.md
│ │ │ │ ├── Figures
│ │ │ │ │ ├── BrotherlyMatching.eps
│ │ │ │ │ ├── CommunityMatching.eps
│ │ │ │ │ └── MultilevelOverview.eps
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── Mongoose_UserGuide.pdf
│ │ │ │ ├── Mongoose_UserGuide.tex
│ │ │ │ ├── references.bib
│ │ │ │ └── title-info.tex
│ │ │ ├── Executable
│ │ │ │ └── mongoose.cpp
│ │ │ ├── External
│ │ │ │ └── mmio
│ │ │ │ ├── Include
│ │ │ │ │ └── mmio.h
│ │ │ │ └── Source
│ │ │ │ └── mmio.c
│ │ │ ├── Include
│ │ │ │ ├── Mongoose_BoundaryHeap.hpp
│ │ │ │ ├── Mongoose_Coarsening.hpp
│ │ │ │ ├── Mongoose_CSparse.hpp
│ │ │ │ ├── Mongoose_CutCost.hpp
│ │ │ │ ├── Mongoose_Debug.hpp
│ │ │ │ ├── Mongoose_EdgeCut.hpp
│ │ │ │ ├── Mongoose_EdgeCutOptions.hpp
│ │ │ │ ├── Mongoose_EdgeCutProblem.hpp
│ │ │ │ ├── Mongoose_Graph.hpp
│ │ │ │ ├── Mongoose_GuessCut.hpp
│ │ │ │ ├── Mongoose.hpp
│ │ │ │ ├── Mongoose_ImproveFM.hpp
│ │ │ │ ├── Mongoose_ImproveQP.hpp
│ │ │ │ ├── Mongoose_Internal.hpp
│ │ │ │ ├── Mongoose_IO.hpp
│ │ │ │ ├── Mongoose_Logger.hpp
│ │ │ │ ├── Mongoose_Matching.hpp
│ │ │ │ ├── Mongoose_QPBoundary.hpp
│ │ │ │ ├── Mongoose_QPDelta.hpp
│ │ │ │ ├── Mongoose_QPGradProj.hpp
│ │ │ │ ├── Mongoose_QPLinks.hpp
│ │ │ │ ├── Mongoose_QPMaxHeap.hpp
│ │ │ │ ├── Mongoose_QPMinHeap.hpp
│ │ │ │ ├── Mongoose_QPNapDown.hpp
│ │ │ │ ├── Mongoose_QPNapsack.hpp
│ │ │ │ ├── Mongoose_QPNapUp.hpp
│ │ │ │ ├── Mongoose_Random.hpp
│ │ │ │ ├── Mongoose_Refinement.hpp
│ │ │ │ ├── Mongoose_Sanitize.hpp
│ │ │ │ ├── Mongoose_Version.hpp
│ │ │ │ ├── Mongoose_Version.hpp.in
│ │ │ │ └── Mongoose_Waterdance.hpp
│ │ │ ├── Lib
│ │ │ ├── Makefile
│ │ │ ├── MATLAB
│ │ │ │ ├── 494_bus.mat
│ │ │ │ ├── coarsen.cpp
│ │ │ │ ├── coarsen.m
│ │ │ │ ├── comparison
│ │ │ │ │ ├── compareAll.m
│ │ │ │ │ └── compare.m
│ │ │ │ ├── Contents.m
│ │ │ │ ├── edgecut.cpp
│ │ │ │ ├── edgecut.m
│ │ │ │ ├── edgecut_options.cpp
│ │ │ │ ├── edgecut_options.m
│ │ │ │ ├── mex_util
│ │ │ │ │ ├── mex_get_graph.cpp
│ │ │ │ │ ├── mex_get_options.cpp
│ │ │ │ │ ├── mex_getput_vector.cpp
│ │ │ │ │ ├── mex_put_options.cpp
│ │ │ │ │ └── mex_struct_util.cpp
│ │ │ │ ├── mongoose_demo.m
│ │ │ │ ├── mongoose_make.m
│ │ │ │ ├── mongoose_mex.hpp
│ │ │ │ ├── mongoose_plot.m
│ │ │ │ ├── mongoose_test.m
│ │ │ │ ├── safe_coarsen.m
│ │ │ │ ├── safe_edgecut.m
│ │ │ │ ├── sanitize.cpp
│ │ │ │ └── sanitize.m
│ │ │ ├── Matrix
│ │ │ │ ├── bcspwr01.mtx
│ │ │ │ ├── bcspwr02.mtx
│ │ │ │ ├── bcspwr03.mtx
│ │ │ │ ├── bcspwr04.mtx
│ │ │ │ ├── bcspwr05.mtx
│ │ │ │ ├── bcspwr06.mtx
│ │ │ │ ├── bcspwr07.mtx
│ │ │ │ ├── bcspwr08.mtx
│ │ │ │ ├── bcspwr09.mtx
│ │ │ │ ├── bcspwr10.mtx
│ │ │ │ ├── dwt_992.mtx
│ │ │ │ ├── Erdos971.mtx
│ │ │ │ ├── G51.mtx
│ │ │ │ ├── GD97_b.mtx
│ │ │ │ ├── jagmesh7.mtx
│ │ │ │ ├── NotreDame_www.mtx
│ │ │ │ └── Pd.mtx
│ │ │ ├── README.md
│ │ │ ├── Source
│ │ │ │ ├── Mongoose_BoundaryHeap.cpp
│ │ │ │ ├── Mongoose_Coarsening.cpp
│ │ │ │ ├── Mongoose_CSparse.cpp
│ │ │ │ ├── Mongoose_Debug.cpp
│ │ │ │ ├── Mongoose_EdgeCut.cpp
│ │ │ │ ├── Mongoose_EdgeCutOptions.cpp
│ │ │ │ ├── Mongoose_EdgeCutProblem.cpp
│ │ │ │ ├── Mongoose_Graph.cpp
│ │ │ │ ├── Mongoose_GuessCut.cpp
│ │ │ │ ├── Mongoose_ImproveFM.cpp
│ │ │ │ ├── Mongoose_ImproveQP.cpp
│ │ │ │ ├── Mongoose_IO.cpp
│ │ │ │ ├── Mongoose_Logger.cpp
│ │ │ │ ├── Mongoose_Matching.cpp
│ │ │ │ ├── Mongoose_QPBoundary.cpp
│ │ │ │ ├── Mongoose_QPDelta.cpp
│ │ │ │ ├── Mongoose_QPGradProj.cpp
│ │ │ │ ├── Mongoose_QPLinks.cpp
│ │ │ │ ├── Mongoose_QPMaxHeap.cpp
│ │ │ │ ├── Mongoose_QPMinHeap.cpp
│ │ │ │ ├── Mongoose_QPNapDown.cpp
│ │ │ │ ├── Mongoose_QPNapsack.cpp
│ │ │ │ ├── Mongoose_QPNapUp.cpp
│ │ │ │ ├── Mongoose_Random.cpp
│ │ │ │ ├── Mongoose_Refinement.cpp
│ │ │ │ ├── Mongoose_Sanitize.cpp
│ │ │ │ ├── Mongoose_Version.cpp
│ │ │ │ └── Mongoose_Waterdance.cpp
│ │ │ ├── SuiteSparse_config
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.txt
│ │ │ │ ├── SuiteSparse_config.c
│ │ │ │ ├── SuiteSparse_config.h
│ │ │ │ ├── SuiteSparse_config.mk
│ │ │ │ └── xerbla
│ │ │ │ ├── Makefile
│ │ │ │ ├── xerbla.c
│ │ │ │ ├── xerbla.f
│ │ │ │ └── xerbla.h
│ │ │ ├── Tests
│ │ │ │ ├── Matrix
│ │ │ │ │ ├── bad_dimensions.mtx
│ │ │ │ │ ├── bad_header.mtx
│ │ │ │ │ ├── bad_matrix_type.mtx
│ │ │ │ │ └── Trec4.mtx
│ │ │ │ ├── Mongoose_Test_EdgeSeparator.cpp
│ │ │ │ ├── Mongoose_Test_EdgeSeparator_exe.cpp
│ │ │ │ ├── Mongoose_Test.hpp
│ │ │ │ ├── Mongoose_Test_IO.cpp
│ │ │ │ ├── Mongoose_Test_IO_exe.cpp
│ │ │ │ ├── Mongoose_Test_Memory.cpp
│ │ │ │ ├── Mongoose_Test_Memory_exe.cpp
│ │ │ │ ├── Mongoose_Test_Performance.cpp
│ │ │ │ ├── Mongoose_Test_Performance_exe.cpp
│ │ │ │ ├── Mongoose_Test_Reference.cpp
│ │ │ │ ├── Mongoose_Test_Reference_exe.cpp
│ │ │ │ ├── Mongoose_UnitTest_EdgeSep_exe.cpp
│ │ │ │ ├── Mongoose_UnitTest_Graph_exe.cpp
│ │ │ │ ├── Mongoose_UnitTest_IO_exe.cpp
│ │ │ │ ├── Results
│ │ │ │ │ ├── bcspwr01_result.txt
│ │ │ │ │ ├── bcspwr02_result.txt
│ │ │ │ │ ├── bcspwr03_result.txt
│ │ │ │ │ ├── bcspwr04_result.txt
│ │ │ │ │ ├── bcspwr05_result.txt
│ │ │ │ │ ├── bcspwr06_result.txt
│ │ │ │ │ ├── bcspwr07_result.txt
│ │ │ │ │ ├── bcspwr08_result.txt
│ │ │ │ │ ├── bcspwr09_result.txt
│ │ │ │ │ ├── bcspwr10_result.txt
│ │ │ │ │ └── Pd_result.txt
│ │ │ │ └── runTests
│ │ │ └── Version
│ │ │ ├── codemeta.json.in
│ │ │ ├── Mongoose_Version.hpp.in
│ │ │ └── title-info.tex.in
│ │ ├── RBio
│ │ │ ├── Demo
│ │ │ │ ├── Makefile
│ │ │ │ ├── RBdemo.c
│ │ │ │ └── RBdemo.out
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── gpl.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ └── RBio.h
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── RBio
│ │ │ │ ├── Contents.m
│ │ │ │ ├── mywest
│ │ │ │ ├── private
│ │ │ │ │ ├── bcsstk01.rb
│ │ │ │ │ ├── farm.rb
│ │ │ │ │ ├── lap_25.pse
│ │ │ │ │ ├── lap_25.rb
│ │ │ │ │ ├── testRB1.m
│ │ │ │ │ ├── testRB2.m
│ │ │ │ │ ├── testRB3.m
│ │ │ │ │ ├── west0479.rb
│ │ │ │ │ └── west0479.rua
│ │ │ │ ├── RBerror.c
│ │ │ │ ├── RBfix.m
│ │ │ │ ├── RBinstall.m
│ │ │ │ ├── RBmake.m
│ │ │ │ ├── RBraw.c
│ │ │ │ ├── RBraw.m
│ │ │ │ ├── RBread.c
│ │ │ │ ├── RBreade.m
│ │ │ │ ├── RBread.m
│ │ │ │ ├── RBtype.c
│ │ │ │ ├── RBtype.m
│ │ │ │ ├── RBwrite.c
│ │ │ │ └── RBwrite.m
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ └── RBio.c
│ │ │ └── Tcov
│ │ │ ├── Makefile
│ │ │ ├── mangled
│ │ │ │ ├── 10.rb
│ │ │ │ ├── 11.rb
│ │ │ │ ├── 12.rb
│ │ │ │ ├── 13.rb
│ │ │ │ ├── 14.rb
│ │ │ │ ├── 15.rb
│ │ │ │ ├── 1.rb
│ │ │ │ ├── 2.rb
│ │ │ │ ├── 3.rb
│ │ │ │ ├── 4.rb
│ │ │ │ ├── 5.rb
│ │ │ │ ├── 6.rb
│ │ │ │ ├── 7.rb
│ │ │ │ ├── 8.rb
│ │ │ │ └── 9.rb
│ │ │ ├── matrices
│ │ │ │ ├── dwg961a.tar.gz
│ │ │ │ ├── m4b.rb
│ │ │ │ ├── m4.rb
│ │ │ │ ├── mhd1280a.tar.gz
│ │ │ │ ├── mhd1280b.tar.gz
│ │ │ │ ├── plskz362.tar.gz
│ │ │ │ ├── qc324.tar.gz
│ │ │ │ ├── s4.rb
│ │ │ │ ├── Tina_DisCog.tar.gz
│ │ │ │ └── west0067.tar.gz
│ │ │ ├── RBtest.c
│ │ │ └── README.txt
│ │ ├── README.txt
│ │ ├── share
│ │ ├── SPQR
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Demo
│ │ │ │ ├── demo_colamd2.sh
│ │ │ │ ├── demo_colamd3.sh
│ │ │ │ ├── demo_colamd.sh
│ │ │ │ ├── demo_metis2.sh
│ │ │ │ ├── demo_metis3.sh
│ │ │ │ ├── demo_metis.sh
│ │ │ │ ├── go4.m
│ │ │ │ ├── go5.m
│ │ │ │ ├── Makefile
│ │ │ │ ├── qrdemoc.c
│ │ │ │ ├── qrdemoc_out.txt
│ │ │ │ ├── qrdemo.cpp
│ │ │ │ ├── qrdemo_gpu2.cpp
│ │ │ │ ├── qrdemo_gpu3.cpp
│ │ │ │ ├── qrdemo_gpu.cpp
│ │ │ │ ├── qrdemo_gpu.out
│ │ │ │ ├── qrdemo.m
│ │ │ │ ├── qrdemo_out.txt
│ │ │ │ ├── qrsimplec.c
│ │ │ │ ├── qrsimple.cpp
│ │ │ │ ├── README.txt
│ │ │ │ ├── spqr_gpu2.m
│ │ │ │ ├── spqr_gpu3.m
│ │ │ │ └── spqr_gpu.m
│ │ │ ├── Doc
│ │ │ │ ├── algo_spqr.pdf
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── gpl.txt
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── qrgpu_paper.pdf
│ │ │ │ ├── README.txt
│ │ │ │ ├── spqr.pdf
│ │ │ │ ├── spqr_user_guide.bib
│ │ │ │ ├── spqr_user_guide.pdf
│ │ │ │ └── spqr_user_guide.tex
│ │ │ ├── Include
│ │ │ │ ├── spqrgpu.hpp
│ │ │ │ ├── spqr.hpp
│ │ │ │ ├── SuiteSparseQR_C.h
│ │ │ │ ├── SuiteSparseQR_definitions.h
│ │ │ │ └── SuiteSparseQR.hpp
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── MATLAB
│ │ │ │ ├── Contents.m
│ │ │ │ ├── spqr.cpp
│ │ │ │ ├── spqr_demo.m
│ │ │ │ ├── spqr_install.m
│ │ │ │ ├── spqr.m
│ │ │ │ ├── spqr_make.m
│ │ │ │ ├── spqr_mx.cpp
│ │ │ │ ├── spqr_mx_error.c
│ │ │ │ ├── spqr_mx.hpp
│ │ │ │ ├── spqr_qmult.cpp
│ │ │ │ ├── spqr_qmult.m
│ │ │ │ ├── spqr_singletons.cpp
│ │ │ │ ├── spqr_singletons.m
│ │ │ │ ├── spqr_solve.cpp
│ │ │ │ └── spqr_solve.m
│ │ │ ├── Matrix
│ │ │ │ ├── a04.mtx
│ │ │ │ ├── a0.mtx
│ │ │ │ ├── a1.mtx
│ │ │ │ ├── a2.mtx
│ │ │ │ ├── a4.mtx
│ │ │ │ ├── arrow.mtx
│ │ │ │ ├── ash219.mtx
│ │ │ │ ├── b1_ss.mtx
│ │ │ │ ├── bcspwr01.mtx
│ │ │ │ ├── bfwa62.mtx
│ │ │ │ ├── c2.mtx
│ │ │ │ ├── c32.mtx
│ │ │ │ ├── Franz6_id1959_aug.mtx
│ │ │ │ ├── GD01_b.mtx
│ │ │ │ ├── GD06_theory.mtx
│ │ │ │ ├── GD98_a.mtx
│ │ │ │ ├── Groebner_id2003_aug.mtx
│ │ │ │ ├── lfat5b.mtx
│ │ │ │ ├── LFAT5.mtx
│ │ │ │ ├── lp_e226.mtx
│ │ │ │ ├── lp_e226_transposed.mtx
│ │ │ │ ├── lpi_galenet.mtx
│ │ │ │ ├── lpi_itest6.mtx
│ │ │ │ ├── lp_share1b.mtx
│ │ │ │ ├── pwr01b.mtx
│ │ │ │ ├── r2.mtx
│ │ │ │ ├── Ragusa16.mtx
│ │ │ │ ├── README.txt
│ │ │ │ ├── s32.mtx
│ │ │ │ ├── Tina_AskCal.mtx
│ │ │ │ ├── Tina_AskCal_perm.mtx
│ │ │ │ ├── west0067.mtx
│ │ │ │ └── young1c.mtx
│ │ │ ├── README.txt
│ │ │ ├── Source
│ │ │ │ ├── spqr_1colamd.cpp
│ │ │ │ ├── spqr_1factor.cpp
│ │ │ │ ├── spqr_1fixed.cpp
│ │ │ │ ├── spqr_analyze.cpp
│ │ │ │ ├── spqr_append.cpp
│ │ │ │ ├── spqr_assemble.cpp
│ │ │ │ ├── spqr_cpack.cpp
│ │ │ │ ├── spqr_csize.cpp
│ │ │ │ ├── spqr_cumsum.cpp
│ │ │ │ ├── spqr_debug.cpp
│ │ │ │ ├── spqr_factorize.cpp
│ │ │ │ ├── spqr_fcsize.cpp
│ │ │ │ ├── spqr_freefac.cpp
│ │ │ │ ├── spqr_freenum.cpp
│ │ │ │ ├── spqr_freesym.cpp
│ │ │ │ ├── spqr_front.cpp
│ │ │ │ ├── spqr_fsize.cpp
│ │ │ │ ├── spqr_happly.cpp
│ │ │ │ ├── spqr_happly_work.cpp
│ │ │ │ ├── spqr_hpinv.cpp
│ │ │ │ ├── spqr_kernel.cpp
│ │ │ │ ├── spqr_larftb.cpp
│ │ │ │ ├── spqr_maxcolnorm.cpp
│ │ │ │ ├── spqr_panel.cpp
│ │ │ │ ├── spqr_parallel.cpp
│ │ │ │ ├── spqr_rconvert.cpp
│ │ │ │ ├── spqr_rcount.cpp
│ │ │ │ ├── spqr_rhpack.cpp
│ │ │ │ ├── spqr_rmap.cpp
│ │ │ │ ├── spqr_rsolve.cpp
│ │ │ │ ├── spqr_shift.cpp
│ │ │ │ ├── spqr_stranspose1.cpp
│ │ │ │ ├── spqr_stranspose2.cpp
│ │ │ │ ├── spqr_tol.cpp
│ │ │ │ ├── spqr_trapezoidal.cpp
│ │ │ │ ├── spqr_type.cpp
│ │ │ │ ├── SuiteSparseQR_C.cpp
│ │ │ │ ├── SuiteSparseQR.cpp
│ │ │ │ ├── SuiteSparseQR_expert.cpp
│ │ │ │ └── SuiteSparseQR_qmult.cpp
│ │ │ ├── SPQRGPU
│ │ │ │ ├── spqrgpu_buildAssemblyMaps.cpp
│ │ │ │ ├── spqrgpu_computeFrontStaging.cpp
│ │ │ │ └── spqrgpu_kernel.cpp
│ │ │ └── Tcov
│ │ │ ├── cov
│ │ │ ├── Makefile
│ │ │ ├── matrix1.txt
│ │ │ ├── matrixlist.txt
│ │ │ ├── qrtestc.c
│ │ │ ├── qrtest.cpp
│ │ │ └── README.txt
│ │ ├── ssget
│ │ │ ├── Contents.m
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ └── License.txt
│ │ │ ├── files
│ │ │ │ ├── ACUSIM
│ │ │ │ │ └── Pres_Poisson.png
│ │ │ │ ├── AG-Monien
│ │ │ │ │ ├── 3elt_dual.png
│ │ │ │ │ ├── 3elt.png
│ │ │ │ │ ├── airfoil1_dual.png
│ │ │ │ │ ├── airfoil1.png
│ │ │ │ │ ├── bfly.png
│ │ │ │ │ ├── big_dual.png
│ │ │ │ │ ├── biplane-9.png
│ │ │ │ │ ├── brack2.png
│ │ │ │ │ ├── cage.png
│ │ │ │ │ ├── cca.png
│ │ │ │ │ ├── ccc.png
│ │ │ │ │ ├── crack_dual.png
│ │ │ │ │ ├── crack.png
│ │ │ │ │ ├── debr.png
│ │ │ │ │ ├── diag.png
│ │ │ │ │ ├── grid1_dual.png
│ │ │ │ │ ├── grid1.png
│ │ │ │ │ ├── grid2_dual.png
│ │ │ │ │ ├── grid2.png
│ │ │ │ │ ├── L-9.png
│ │ │ │ │ ├── L.png
│ │ │ │ │ ├── netz4504_dual.png
│ │ │ │ │ ├── netz4504.png
│ │ │ │ │ ├── se.png
│ │ │ │ │ ├── shock-9.png
│ │ │ │ │ ├── stufe-10.png
│ │ │ │ │ ├── stufe.png
│ │ │ │ │ ├── ukerbe1_dual.png
│ │ │ │ │ ├── ukerbe1.png
│ │ │ │ │ ├── wave.png
│ │ │ │ │ ├── whitaker3_dual.png
│ │ │ │ │ └── whitaker3.png
│ │ │ │ ├── Alemdar
│ │ │ │ │ └── Alemdar.png
│ │ │ │ ├── AMD
│ │ │ │ │ ├── G2_circuit.png
│ │ │ │ │ └── G3_circuit.png
│ │ │ │ ├── Andrews
│ │ │ │ │ └── Andrews.png
│ │ │ │ ├── Andrianov
│ │ │ │ │ ├── ex3sta1.png
│ │ │ │ │ ├── fxm3_6.png
│ │ │ │ │ ├── fxm4_6.png
│ │ │ │ │ ├── ins2.png
│ │ │ │ │ ├── lp1.png
│ │ │ │ │ ├── lpl1.png
│ │ │ │ │ ├── mip1.png
│ │ │ │ │ ├── net100.png
│ │ │ │ │ ├── net125.png
│ │ │ │ │ ├── net150.png
│ │ │ │ │ ├── net25.png
│ │ │ │ │ ├── net4-1.png
│ │ │ │ │ ├── net50.png
│ │ │ │ │ ├── net75.png
│ │ │ │ │ ├── pattern1.png
│ │ │ │ │ └── pf2177.png
│ │ │ │ ├── ANSYS
│ │ │ │ │ ├── Delor295K.png
│ │ │ │ │ ├── Delor338K.png
│ │ │ │ │ └── Delor64K.png
│ │ │ │ ├── Arenas
│ │ │ │ │ ├── celegans_metabolic.png
│ │ │ │ │ ├── email.png
│ │ │ │ │ ├── jazz.png
│ │ │ │ │ └── PGPgiantcompo.png
│ │ │ │ ├── ATandT
│ │ │ │ │ ├── onetone1.png
│ │ │ │ │ ├── onetone2.png
│ │ │ │ │ ├── pre2.png
│ │ │ │ │ └── twotone.png
│ │ │ │ ├── Averous
│ │ │ │ │ ├── epb0.png
│ │ │ │ │ ├── epb1.png
│ │ │ │ │ ├── epb2.png
│ │ │ │ │ └── epb3.png
│ │ │ │ ├── Bai
│ │ │ │ │ ├── af23560.png
│ │ │ │ │ ├── bfwa398.png
│ │ │ │ │ ├── bfwa62.png
│ │ │ │ │ ├── bfwa782.png
│ │ │ │ │ ├── bfwb398.png
│ │ │ │ │ ├── bfwb62.png
│ │ │ │ │ ├── bfwb782.png
│ │ │ │ │ ├── bwm2000.png
│ │ │ │ │ ├── bwm200.png
│ │ │ │ │ ├── cdde1.png
│ │ │ │ │ ├── cdde2.png
│ │ │ │ │ ├── cdde3.png
│ │ │ │ │ ├── cdde4.png
│ │ │ │ │ ├── cdde5.png
│ │ │ │ │ ├── cdde6.png
│ │ │ │ │ ├── ck104.png
│ │ │ │ │ ├── ck400.png
│ │ │ │ │ ├── ck656.png
│ │ │ │ │ ├── cryg10000.png
│ │ │ │ │ ├── cryg2500.png
│ │ │ │ │ ├── dw1024.png
│ │ │ │ │ ├── dw2048.png
│ │ │ │ │ ├── dw256A.png
│ │ │ │ │ ├── dw256B.png
│ │ │ │ │ ├── dw4096.png
│ │ │ │ │ ├── dw8192.png
│ │ │ │ │ ├── dwa512.png
│ │ │ │ │ ├── dwb512.png
│ │ │ │ │ ├── dwg961a.png
│ │ │ │ │ ├── dwg961b.png
│ │ │ │ │ ├── lop163.png
│ │ │ │ │ ├── mhd1280a.png
│ │ │ │ │ ├── mhd1280b.png
│ │ │ │ │ ├── mhd3200a.png
│ │ │ │ │ ├── mhd3200b.png
│ │ │ │ │ ├── mhd4800a.png
│ │ │ │ │ ├── mhd4800b.png
│ │ │ │ │ ├── mhda416.png
│ │ │ │ │ ├── mhdb416.png
│ │ │ │ │ ├── odepa400.png
│ │ │ │ │ ├── odepb400.png
│ │ │ │ │ ├── olm1000.png
│ │ │ │ │ ├── olm100.png
│ │ │ │ │ ├── olm2000.png
│ │ │ │ │ ├── olm5000.png
│ │ │ │ │ ├── olm500.png
│ │ │ │ │ ├── pde225.png
│ │ │ │ │ ├── pde2961.png
│ │ │ │ │ ├── pde900.png
│ │ │ │ │ ├── qc2534.png
│ │ │ │ │ ├── qc324.png
│ │ │ │ │ ├── qh1484.png
│ │ │ │ │ ├── qh768.png
│ │ │ │ │ ├── qh882.png
│ │ │ │ │ ├── rbsa480.png
│ │ │ │ │ ├── rbsb480.png
│ │ │ │ │ ├── rdb1250l.png
│ │ │ │ │ ├── rdb1250.png
│ │ │ │ │ ├── rdb200l.png
│ │ │ │ │ ├── rdb200.png
│ │ │ │ │ ├── rdb2048_noL.png
│ │ │ │ │ ├── rdb2048.png
│ │ │ │ │ ├── rdb3200l.png
│ │ │ │ │ ├── rdb450l.png
│ │ │ │ │ ├── rdb450.png
│ │ │ │ │ ├── rdb5000.png
│ │ │ │ │ ├── rdb800l.png
│ │ │ │ │ ├── rdb968.png
│ │ │ │ │ ├── rw136.png
│ │ │ │ │ ├── rw496.png
│ │ │ │ │ ├── rw5151.png
│ │ │ │ │ ├── tols1090.png
│ │ │ │ │ ├── tols2000.png
│ │ │ │ │ ├── tols340.png
│ │ │ │ │ ├── tols4000.png
│ │ │ │ │ ├── tols90.png
│ │ │ │ │ ├── tub1000.png
│ │ │ │ │ └── tub100.png
│ │ │ │ ├── Barabasi
│ │ │ │ │ ├── NotreDame_actors.png
│ │ │ │ │ ├── NotreDame_www.png
│ │ │ │ │ └── NotreDame_yeast.png
│ │ │ │ ├── Bates
│ │ │ │ │ ├── Chem97Zt.png
│ │ │ │ │ ├── Chem97ZtZ.png
│ │ │ │ │ └── sls.png
│ │ │ │ ├── Belcastro
│ │ │ │ │ ├── human_gene1.png
│ │ │ │ │ ├── human_gene2.png
│ │ │ │ │ └── mouse_gene.png
│ │ │ │ ├── BenElechi
│ │ │ │ │ └── BenElechi1.png
│ │ │ │ ├── Bindel
│ │ │ │ │ ├── ted_AB.png
│ │ │ │ │ ├── ted_AB_unscaled.png
│ │ │ │ │ ├── ted_A.png
│ │ │ │ │ ├── ted_A_unscaled.png
│ │ │ │ │ ├── ted_B.png
│ │ │ │ │ └── ted_B_unscaled.png
│ │ │ │ ├── Bodendiek
│ │ │ │ │ ├── CurlCurl_0.png
│ │ │ │ │ ├── CurlCurl_1.png
│ │ │ │ │ ├── CurlCurl_2.png
│ │ │ │ │ ├── CurlCurl_3.png
│ │ │ │ │ └── CurlCurl_4.png
│ │ │ │ ├── Boeing
│ │ │ │ │ ├── bcsstk34.png
│ │ │ │ │ ├── bcsstk35.png
│ │ │ │ │ ├── bcsstk36.png
│ │ │ │ │ ├── bcsstk37.png
│ │ │ │ │ ├── bcsstk38.png
│ │ │ │ │ ├── bcsstk39.png
│ │ │ │ │ ├── bcsstm34.png
│ │ │ │ │ ├── bcsstm35.png
│ │ │ │ │ ├── bcsstm36.png
│ │ │ │ │ ├── bcsstm37.png
│ │ │ │ │ ├── bcsstm38.png
│ │ │ │ │ ├── bcsstm39.png
│ │ │ │ │ ├── crystk01.png
│ │ │ │ │ ├── crystk02.png
│ │ │ │ │ ├── crystk03.png
│ │ │ │ │ ├── crystm01.png
│ │ │ │ │ ├── crystm02.png
│ │ │ │ │ ├── crystm03.png
│ │ │ │ │ ├── ct20stif.png
│ │ │ │ │ ├── msc00726.png
│ │ │ │ │ ├── msc01050.png
│ │ │ │ │ ├── msc01440.png
│ │ │ │ │ ├── msc04515.png
│ │ │ │ │ ├── msc10848.png
│ │ │ │ │ ├── msc23052.png
│ │ │ │ │ ├── nasa1824.png
│ │ │ │ │ ├── nasa2910.png
│ │ │ │ │ ├── nasa4704.png
│ │ │ │ │ ├── pcrystk02.png
│ │ │ │ │ ├── pcrystk03.png
│ │ │ │ │ ├── pct20stif.png
│ │ │ │ │ └── pwtk.png
│ │ │ │ ├── Bomhof
│ │ │ │ │ ├── circuit_1.png
│ │ │ │ │ ├── circuit_2.png
│ │ │ │ │ ├── circuit_3.png
│ │ │ │ │ └── circuit_4.png
│ │ │ │ ├── Botonakis
│ │ │ │ │ ├── FEM_3D_thermal1.png
│ │ │ │ │ ├── FEM_3D_thermal2.png
│ │ │ │ │ ├── thermomech_dK.png
│ │ │ │ │ ├── thermomech_dM.png
│ │ │ │ │ ├── thermomech_TC.png
│ │ │ │ │ └── thermomech_TK.png
│ │ │ │ ├── Bourchtein
│ │ │ │ │ ├── atmosmodd.png
│ │ │ │ │ ├── atmosmodj.png
│ │ │ │ │ ├── atmosmodl.png
│ │ │ │ │ └── atmosmodm.png
│ │ │ │ ├── Bova
│ │ │ │ │ └── rma10.png
│ │ │ │ ├── Brethour
│ │ │ │ │ ├── coater1.png
│ │ │ │ │ └── coater2.png
│ │ │ │ ├── Brogan
│ │ │ │ │ └── specular.png
│ │ │ │ ├── Brunetiere
│ │ │ │ │ └── thermal.png
│ │ │ │ ├── Buss
│ │ │ │ │ ├── 12month1.png
│ │ │ │ │ └── connectus.png
│ │ │ │ ├── Bydder
│ │ │ │ │ ├── mri1.png
│ │ │ │ │ └── mri2.png
│ │ │ │ ├── Cannizzo
│ │ │ │ │ └── sts4098.png
│ │ │ │ ├── Castrillon
│ │ │ │ │ └── denormal.png
│ │ │ │ ├── CEMW
│ │ │ │ │ ├── t2em.png
│ │ │ │ │ ├── tmt_sym.png
│ │ │ │ │ ├── tmt_unsym.png
│ │ │ │ │ └── vfem.png
│ │ │ │ ├── Chen
│ │ │ │ │ ├── pkustk01.png
│ │ │ │ │ ├── pkustk02.png
│ │ │ │ │ ├── pkustk03.png
│ │ │ │ │ ├── pkustk04.png
│ │ │ │ │ ├── pkustk05.png
│ │ │ │ │ ├── pkustk06.png
│ │ │ │ │ ├── pkustk07.png
│ │ │ │ │ ├── pkustk08.png
│ │ │ │ │ ├── pkustk09.png
│ │ │ │ │ ├── pkustk10.png
│ │ │ │ │ ├── pkustk11.png
│ │ │ │ │ ├── pkustk12.png
│ │ │ │ │ ├── pkustk13.png
│ │ │ │ │ └── pkustk14.png
│ │ │ │ ├── Chevron
│ │ │ │ │ ├── Chevron1.png
│ │ │ │ │ ├── Chevron2.png
│ │ │ │ │ ├── Chevron3.png
│ │ │ │ │ └── Chevron4.png
│ │ │ │ ├── Clark
│ │ │ │ │ └── tomographic1.png
│ │ │ │ ├── Cote
│ │ │ │ │ ├── mplate.png
│ │ │ │ │ └── vibrobox.png
│ │ │ │ ├── CPM
│ │ │ │ │ ├── cz10228.png
│ │ │ │ │ ├── cz1268.png
│ │ │ │ │ ├── cz148.png
│ │ │ │ │ ├── cz20468.png
│ │ │ │ │ ├── cz2548.png
│ │ │ │ │ ├── cz308.png
│ │ │ │ │ ├── cz40948.png
│ │ │ │ │ ├── cz5108.png
│ │ │ │ │ └── cz628.png
│ │ │ │ ├── Cunningham
│ │ │ │ │ ├── k3plates.png
│ │ │ │ │ ├── m3plates.png
│ │ │ │ │ ├── qa8fk.png
│ │ │ │ │ └── qa8fm.png
│ │ │ │ ├── Cylshell
│ │ │ │ │ ├── s1rmq4m1.png
│ │ │ │ │ ├── s1rmt3m1.png
│ │ │ │ │ ├── s2rmq4m1.png
│ │ │ │ │ ├── s2rmt3m1.png
│ │ │ │ │ ├── s3rmq4m1.png
│ │ │ │ │ ├── s3rmt3m1.png
│ │ │ │ │ └── s3rmt3m3.png
│ │ │ │ ├── Dattorro
│ │ │ │ │ ├── EternityII_A.png
│ │ │ │ │ ├── EternityII_E.png
│ │ │ │ │ └── EternityII_Etilde.png
│ │ │ │ ├── Davis
│ │ │ │ │ └── FX_March2010.png
│ │ │ │ ├── Dehghani
│ │ │ │ │ └── light_in_tissue.png
│ │ │ │ ├── DIMACS10
│ │ │ │ │ ├── 144.png
│ │ │ │ │ ├── 333SP.png
│ │ │ │ │ ├── 598a.png
│ │ │ │ │ ├── adaptive.png
│ │ │ │ │ ├── ak2010.png
│ │ │ │ │ ├── al2010.png
│ │ │ │ │ ├── ar2010.png
│ │ │ │ │ ├── AS365.png
│ │ │ │ │ ├── asia_osm.png
│ │ │ │ │ ├── auto.png
│ │ │ │ │ ├── az2010.png
│ │ │ │ │ ├── belgium_osm.png
│ │ │ │ │ ├── ca2010.png
│ │ │ │ │ ├── caidaRouterLevel.png
│ │ │ │ │ ├── channel-500x100x100-b050.png
│ │ │ │ │ ├── chesapeake.png
│ │ │ │ │ ├── citationCiteseer.png
│ │ │ │ │ ├── co2010.png
│ │ │ │ │ ├── coAuthorsCiteseer.png
│ │ │ │ │ ├── coAuthorsDBLP.png
│ │ │ │ │ ├── coPapersCiteseer.png
│ │ │ │ │ ├── coPapersDBLP.png
│ │ │ │ │ ├── cs4.png
│ │ │ │ │ ├── ct2010.png
│ │ │ │ │ ├── cti.png
│ │ │ │ │ ├── data.png
│ │ │ │ │ ├── de2010.png
│ │ │ │ │ ├── delaunay_n10.png
│ │ │ │ │ ├── delaunay_n11.png
│ │ │ │ │ ├── delaunay_n12.png
│ │ │ │ │ ├── delaunay_n13.png
│ │ │ │ │ ├── delaunay_n14.png
│ │ │ │ │ ├── delaunay_n15.png
│ │ │ │ │ ├── delaunay_n16.png
│ │ │ │ │ ├── delaunay_n17.png
│ │ │ │ │ ├── delaunay_n18.png
│ │ │ │ │ ├── delaunay_n19.png
│ │ │ │ │ ├── delaunay_n20.png
│ │ │ │ │ ├── delaunay_n21.png
│ │ │ │ │ ├── delaunay_n22.png
│ │ │ │ │ ├── delaunay_n23.png
│ │ │ │ │ ├── delaunay_n24.png
│ │ │ │ │ ├── europe_osm.png
│ │ │ │ │ ├── fe_4elt2.png
│ │ │ │ │ ├── fe_body.png
│ │ │ │ │ ├── fe_ocean.png
│ │ │ │ │ ├── fe_rotor.png
│ │ │ │ │ ├── fe_sphere.png
│ │ │ │ │ ├── fe_tooth.png
│ │ │ │ │ ├── fl2010.png
│ │ │ │ │ ├── ga2010.png
│ │ │ │ │ ├── germany_osm.png
│ │ │ │ │ ├── G_n_pin_pout.png
│ │ │ │ │ ├── great-britain_osm.png
│ │ │ │ │ ├── hi2010.png
│ │ │ │ │ ├── hugebubbles-00000.png
│ │ │ │ │ ├── hugebubbles-00010.png
│ │ │ │ │ ├── hugebubbles-00020.png
│ │ │ │ │ ├── hugetrace-00000.png
│ │ │ │ │ ├── hugetrace-00010.png
│ │ │ │ │ ├── hugetrace-00020.png
│ │ │ │ │ ├── hugetric-00000.png
│ │ │ │ │ ├── hugetric-00010.png
│ │ │ │ │ ├── hugetric-00020.png
│ │ │ │ │ ├── ia2010.png
│ │ │ │ │ ├── id2010.png
│ │ │ │ │ ├── il2010.png
│ │ │ │ │ ├── in2010.png
│ │ │ │ │ ├── italy_osm.png
│ │ │ │ │ ├── kron_g500-logn16.png
│ │ │ │ │ ├── kron_g500-logn17.png
│ │ │ │ │ ├── kron_g500-logn18.png
│ │ │ │ │ ├── kron_g500-logn19.png
│ │ │ │ │ ├── kron_g500-logn20.png
│ │ │ │ │ ├── kron_g500-logn21.png
│ │ │ │ │ ├── ks2010.png
│ │ │ │ │ ├── ky2010.png
│ │ │ │ │ ├── la2010.png
│ │ │ │ │ ├── luxembourg_osm.png
│ │ │ │ │ ├── m14b.png
│ │ │ │ │ ├── M6.png
│ │ │ │ │ ├── ma2010.png
│ │ │ │ │ ├── md2010.png
│ │ │ │ │ ├── me2010.png
│ │ │ │ │ ├── mi2010.png
│ │ │ │ │ ├── mn2010.png
│ │ │ │ │ ├── mo2010.png
│ │ │ │ │ ├── ms2010.png
│ │ │ │ │ ├── mt2010.png
│ │ │ │ │ ├── NACA0015.png
│ │ │ │ │ ├── nc2010.png
│ │ │ │ │ ├── nd2010.png
│ │ │ │ │ ├── ne2010.png
│ │ │ │ │ ├── netherlands_osm.png
│ │ │ │ │ ├── nh2010.png
│ │ │ │ │ ├── nj2010.png
│ │ │ │ │ ├── NLR.png
│ │ │ │ │ ├── nm2010.png
│ │ │ │ │ ├── nv2010.png
│ │ │ │ │ ├── ny2010.png
│ │ │ │ │ ├── oh2010.png
│ │ │ │ │ ├── ok2010.png
│ │ │ │ │ ├── or2010.png
│ │ │ │ │ ├── pa2010.png
│ │ │ │ │ ├── packing-500x100x100-b050.png
│ │ │ │ │ ├── preferentialAttachment.png
│ │ │ │ │ ├── rgg_n_2_15_s0.png
│ │ │ │ │ ├── rgg_n_2_16_s0.png
│ │ │ │ │ ├── rgg_n_2_17_s0.png
│ │ │ │ │ ├── rgg_n_2_18_s0.png
│ │ │ │ │ ├── rgg_n_2_19_s0.png
│ │ │ │ │ ├── rgg_n_2_20_s0.png
│ │ │ │ │ ├── rgg_n_2_21_s0.png
│ │ │ │ │ ├── rgg_n_2_22_s0.png
│ │ │ │ │ ├── rgg_n_2_23_s0.png
│ │ │ │ │ ├── rgg_n_2_24_s0.png
│ │ │ │ │ ├── ri2010.png
│ │ │ │ │ ├── road_central.png
│ │ │ │ │ ├── road_usa.png
│ │ │ │ │ ├── sc2010.png
│ │ │ │ │ ├── sd2010.png
│ │ │ │ │ ├── smallworld.png
│ │ │ │ │ ├── t60k.png
│ │ │ │ │ ├── tn2010.png
│ │ │ │ │ ├── tx2010.png
│ │ │ │ │ ├── uk.png
│ │ │ │ │ ├── ut2010.png
│ │ │ │ │ ├── va2010.png
│ │ │ │ │ ├── venturiLevel3.png
│ │ │ │ │ ├── vsp_barth5_1Ksep_50in_5Kout.png
│ │ │ │ │ ├── vsp_bcsstk30_500sep_10in_1Kout.png
│ │ │ │ │ ├── vsp_befref_fxm_2_4_air02.png
│ │ │ │ │ ├── vsp_bump2_e18_aa01_model1_crew1.png
│ │ │ │ │ ├── vsp_c-30_data_data.png
│ │ │ │ │ ├── vsp_c-60_data_cti_cs4.png
│ │ │ │ │ ├── vsp_data_and_seymourl.png
│ │ │ │ │ ├── vsp_finan512_scagr7-2c_rlfddd.png
│ │ │ │ │ ├── vsp_mod2_pgp2_slptsk.png
│ │ │ │ │ ├── vsp_model1_crew1_cr42_south31.png
│ │ │ │ │ ├── vsp_msc10848_300sep_100in_1Kout.png
│ │ │ │ │ ├── vsp_p0291_seymourl_iiasa.png
│ │ │ │ │ ├── vsp_sctap1-2b_and_seymourl.png
│ │ │ │ │ ├── vsp_south31_slptsk.png
│ │ │ │ │ ├── vsp_vibrobox_scagr7-2c_rlfddd.png
│ │ │ │ │ ├── vt2010.png
│ │ │ │ │ ├── wa2010.png
│ │ │ │ │ ├── wi2010.png
│ │ │ │ │ ├── wing_nodal.png
│ │ │ │ │ ├── wing.png
│ │ │ │ │ ├── wv2010.png
│ │ │ │ │ └── wy2010.png
│ │ │ │ ├── DNVS
│ │ │ │ │ ├── crplat2.png
│ │ │ │ │ ├── fcondp2.png
│ │ │ │ │ ├── fullb.png
│ │ │ │ │ ├── halfb.png
│ │ │ │ │ ├── m_t1.png
│ │ │ │ │ ├── ship_001.png
│ │ │ │ │ ├── ship_003.png
│ │ │ │ │ ├── shipsec1.png
│ │ │ │ │ ├── shipsec5.png
│ │ │ │ │ ├── shipsec8.png
│ │ │ │ │ ├── thread.png
│ │ │ │ │ ├── trdheim.png
│ │ │ │ │ ├── troll.png
│ │ │ │ │ ├── tsyl201.png
│ │ │ │ │ └── x104.png
│ │ │ │ ├── DRIVCAV
│ │ │ │ │ ├── cavity01.png
│ │ │ │ │ ├── cavity02.png
│ │ │ │ │ ├── cavity03.png
│ │ │ │ │ ├── cavity04.png
│ │ │ │ │ ├── cavity05.png
│ │ │ │ │ ├── cavity06.png
│ │ │ │ │ ├── cavity07.png
│ │ │ │ │ ├── cavity08.png
│ │ │ │ │ ├── cavity09.png
│ │ │ │ │ ├── cavity10.png
│ │ │ │ │ ├── cavity11.png
│ │ │ │ │ ├── cavity12.png
│ │ │ │ │ ├── cavity13.png
│ │ │ │ │ ├── cavity14.png
│ │ │ │ │ ├── cavity15.png
│ │ │ │ │ ├── cavity16.png
│ │ │ │ │ ├── cavity17.png
│ │ │ │ │ ├── cavity18.png
│ │ │ │ │ ├── cavity19.png
│ │ │ │ │ ├── cavity20.png
│ │ │ │ │ ├── cavity21.png
│ │ │ │ │ ├── cavity22.png
│ │ │ │ │ ├── cavity23.png
│ │ │ │ │ ├── cavity24.png
│ │ │ │ │ ├── cavity25.png
│ │ │ │ │ └── cavity26.png
│ │ │ │ ├── Dziekonski
│ │ │ │ │ ├── dielFilterV2clx.png
│ │ │ │ │ ├── dielFilterV2real.png
│ │ │ │ │ ├── dielFilterV3clx.png
│ │ │ │ │ ├── dielFilterV3real.png
│ │ │ │ │ └── gsm_106857.png
│ │ │ │ ├── Embree
│ │ │ │ │ └── ifiss_mat.png
│ │ │ │ ├── Engwirda
│ │ │ │ │ └── airfoil_2d.png
│ │ │ │ ├── FEMLAB
│ │ │ │ │ ├── ns3Da.png
│ │ │ │ │ ├── poisson2D.png
│ │ │ │ │ ├── poisson3Da.png
│ │ │ │ │ ├── poisson3Db.png
│ │ │ │ │ ├── problem1.png
│ │ │ │ │ ├── sme3Da.png
│ │ │ │ │ ├── sme3Db.png
│ │ │ │ │ ├── sme3Dc.png
│ │ │ │ │ └── waveguide3D.png
│ │ │ │ ├── FIDAP
│ │ │ │ │ ├── ex10hs.png
│ │ │ │ │ ├── ex10.png
│ │ │ │ │ ├── ex11.png
│ │ │ │ │ ├── ex12.png
│ │ │ │ │ ├── ex13.png
│ │ │ │ │ ├── ex14.png
│ │ │ │ │ ├── ex15.png
│ │ │ │ │ ├── ex18.png
│ │ │ │ │ ├── ex19.png
│ │ │ │ │ ├── ex1.png
│ │ │ │ │ ├── ex20.png
│ │ │ │ │ ├── ex21.png
│ │ │ │ │ ├── ex22.png
│ │ │ │ │ ├── ex23.png
│ │ │ │ │ ├── ex24.png
│ │ │ │ │ ├── ex25.png
│ │ │ │ │ ├── ex26.png
│ │ │ │ │ ├── ex27.png
│ │ │ │ │ ├── ex28.png
│ │ │ │ │ ├── ex29.png
│ │ │ │ │ ├── ex2.png
│ │ │ │ │ ├── ex31.png
│ │ │ │ │ ├── ex32.png
│ │ │ │ │ ├── ex33.png
│ │ │ │ │ ├── ex35.png
│ │ │ │ │ ├── ex36.png
│ │ │ │ │ ├── ex37.png
│ │ │ │ │ ├── ex3.png
│ │ │ │ │ ├── ex40.png
│ │ │ │ │ ├── ex4.png
│ │ │ │ │ ├── ex5.png
│ │ │ │ │ ├── ex6.png
│ │ │ │ │ ├── ex7.png
│ │ │ │ │ ├── ex8.png
│ │ │ │ │ └── ex9.png
│ │ │ │ ├── Fluorem
│ │ │ │ │ ├── DK01R.png
│ │ │ │ │ ├── GT01R.png
│ │ │ │ │ ├── HV15R.png
│ │ │ │ │ ├── PR02R.png
│ │ │ │ │ └── RM07R.png
│ │ │ │ ├── FreeFieldTechnologies
│ │ │ │ │ └── mono_500Hz.png
│ │ │ │ ├── Freescale
│ │ │ │ │ ├── circuit5M_dc.png
│ │ │ │ │ ├── circuit5M.png
│ │ │ │ │ ├── Freescale1.png
│ │ │ │ │ ├── Freescale2.png
│ │ │ │ │ ├── FullChip.png
│ │ │ │ │ ├── memchip.png
│ │ │ │ │ └── transient.png
│ │ │ │ ├── Gaertner
│ │ │ │ │ ├── big.png
│ │ │ │ │ ├── nopoly.png
│ │ │ │ │ └── pesa.png
│ │ │ │ ├── Garon
│ │ │ │ │ ├── garon1.png
│ │ │ │ │ └── garon2.png
│ │ │ │ ├── GenBank
│ │ │ │ │ ├── kmer_A2a.png
│ │ │ │ │ ├── kmer_P1a.png
│ │ │ │ │ ├── kmer_U1a.png
│ │ │ │ │ ├── kmer_V1r.png
│ │ │ │ │ └── kmer_V2a.png
│ │ │ │ ├── GHS_indef
│ │ │ │ │ ├── a0nsdsil.png
│ │ │ │ │ ├── a2nnsnsl.png
│ │ │ │ │ ├── a5esindl.png
│ │ │ │ │ ├── aug2dc.png
│ │ │ │ │ ├── aug2d.png
│ │ │ │ │ ├── aug3dcqp.png
│ │ │ │ │ ├── aug3d.png
│ │ │ │ │ ├── blockqp1.png
│ │ │ │ │ ├── bloweya.png
│ │ │ │ │ ├── bloweybl.png
│ │ │ │ │ ├── bloweybq.png
│ │ │ │ │ ├── bmw3_2.png
│ │ │ │ │ ├── boyd1.png
│ │ │ │ │ ├── boyd2.png
│ │ │ │ │ ├── brainpc2.png
│ │ │ │ │ ├── bratu3d.png
│ │ │ │ │ ├── c-55.png
│ │ │ │ │ ├── c-58.png
│ │ │ │ │ ├── c-59.png
│ │ │ │ │ ├── c-62ghs.png
│ │ │ │ │ ├── c-63.png
│ │ │ │ │ ├── c-68.png
│ │ │ │ │ ├── c-69.png
│ │ │ │ │ ├── c-70.png
│ │ │ │ │ ├── c-71.png
│ │ │ │ │ ├── c-72.png
│ │ │ │ │ ├── cont-201.png
│ │ │ │ │ ├── cont-300.png
│ │ │ │ │ ├── copter2.png
│ │ │ │ │ ├── cvxqp3.png
│ │ │ │ │ ├── darcy003.png
│ │ │ │ │ ├── dawson5.png
│ │ │ │ │ ├── dixmaanl.png
│ │ │ │ │ ├── d_pretok.png
│ │ │ │ │ ├── dtoc.png
│ │ │ │ │ ├── exdata_1.png
│ │ │ │ │ ├── helm2d03.png
│ │ │ │ │ ├── helm3d01.png
│ │ │ │ │ ├── k1_san.png
│ │ │ │ │ ├── laser.png
│ │ │ │ │ ├── linverse.png
│ │ │ │ │ ├── mario001.png
│ │ │ │ │ ├── mario002.png
│ │ │ │ │ ├── ncvxbqp1.png
│ │ │ │ │ ├── ncvxqp1.png
│ │ │ │ │ ├── ncvxqp3.png
│ │ │ │ │ ├── ncvxqp5.png
│ │ │ │ │ ├── ncvxqp7.png
│ │ │ │ │ ├── ncvxqp9.png
│ │ │ │ │ ├── olesnik0.png
│ │ │ │ │ ├── qpband.png
│ │ │ │ │ ├── sit100.png
│ │ │ │ │ ├── sparsine.png
│ │ │ │ │ ├── spmsrtls.png
│ │ │ │ │ ├── stokes128.png
│ │ │ │ │ ├── stokes64.png
│ │ │ │ │ ├── stokes64s.png
│ │ │ │ │ ├── tuma1.png
│ │ │ │ │ ├── tuma2.png
│ │ │ │ │ └── turon_m.png
│ │ │ │ ├── GHS_psdef
│ │ │ │ │ ├── apache1.png
│ │ │ │ │ ├── apache2.png
│ │ │ │ │ ├── audikw_1.png
│ │ │ │ │ ├── bmw7st_1.png
│ │ │ │ │ ├── bmwcra_1.png
│ │ │ │ │ ├── copter1.png
│ │ │ │ │ ├── copter2.png
│ │ │ │ │ ├── crankseg_1.png
│ │ │ │ │ ├── crankseg_2.png
│ │ │ │ │ ├── cvxbqp1.png
│ │ │ │ │ ├── finance256.png
│ │ │ │ │ ├── ford1.png
│ │ │ │ │ ├── ford2.png
│ │ │ │ │ ├── gridgena.png
│ │ │ │ │ ├── hood.png
│ │ │ │ │ ├── inline_1.png
│ │ │ │ │ ├── jnlbrng1.png
│ │ │ │ │ ├── ldoor.png
│ │ │ │ │ ├── minsurfo.png
│ │ │ │ │ ├── obstclae.png
│ │ │ │ │ ├── oilpan.png
│ │ │ │ │ ├── opt1.png
│ │ │ │ │ ├── pds10.png
│ │ │ │ │ ├── pwt.png
│ │ │ │ │ ├── ramage02.png
│ │ │ │ │ ├── s3dkq4m2.png
│ │ │ │ │ ├── s3dkt3m2.png
│ │ │ │ │ ├── srb1.png
│ │ │ │ │ ├── torsion1.png
│ │ │ │ │ ├── vanbody.png
│ │ │ │ │ ├── wathen100.png
│ │ │ │ │ └── wathen120.png
│ │ │ │ ├── Gleich
│ │ │ │ │ ├── flickr.png
│ │ │ │ │ ├── minnesota.png
│ │ │ │ │ ├── usroads-48.png
│ │ │ │ │ ├── usroads.png
│ │ │ │ │ ├── wb-cs-stanford.png
│ │ │ │ │ ├── wb-edu.png
│ │ │ │ │ ├── wikipedia-20051105.png
│ │ │ │ │ ├── wikipedia-20060925.png
│ │ │ │ │ ├── wikipedia-20061104.png
│ │ │ │ │ └── wikipedia-20070206.png
│ │ │ │ ├── Goodwin
│ │ │ │ │ ├── Goodwin_010.png
│ │ │ │ │ ├── Goodwin_013.png
│ │ │ │ │ ├── Goodwin_017.png
│ │ │ │ │ ├── Goodwin_023.png
│ │ │ │ │ ├── Goodwin_030.png
│ │ │ │ │ ├── Goodwin_040.png
│ │ │ │ │ ├── Goodwin_054.png
│ │ │ │ │ ├── Goodwin_071.png
│ │ │ │ │ ├── Goodwin_095.png
│ │ │ │ │ ├── Goodwin_127.png
│ │ │ │ │ ├── goodwin.png
│ │ │ │ │ └── rim.png
│ │ │ │ ├── Graham
│ │ │ │ │ └── graham1.png
│ │ │ │ ├── Grueninger
│ │ │ │ │ ├── windtunnel_evap2d.png
│ │ │ │ │ └── windtunnel_evap3d.png
│ │ │ │ ├── Grund
│ │ │ │ │ ├── b1_ss.png
│ │ │ │ │ ├── b2_ss.png
│ │ │ │ │ ├── bayer01.png
│ │ │ │ │ ├── bayer02.png
│ │ │ │ │ ├── bayer03.png
│ │ │ │ │ ├── bayer04.png
│ │ │ │ │ ├── bayer05.png
│ │ │ │ │ ├── bayer06.png
│ │ │ │ │ ├── bayer07.png
│ │ │ │ │ ├── bayer08.png
│ │ │ │ │ ├── bayer09.png
│ │ │ │ │ ├── bayer10.png
│ │ │ │ │ ├── b_dyn.png
│ │ │ │ │ ├── d_dyn1.png
│ │ │ │ │ ├── d_dyn.png
│ │ │ │ │ ├── d_ss.png
│ │ │ │ │ ├── meg1.png
│ │ │ │ │ ├── meg4.png
│ │ │ │ │ ├── poli3.png
│ │ │ │ │ ├── poli4.png
│ │ │ │ │ ├── poli_large.png
│ │ │ │ │ └── poli.png
│ │ │ │ ├── Gset
│ │ │ │ │ ├── G10.png
│ │ │ │ │ ├── G11.png
│ │ │ │ │ ├── G12.png
│ │ │ │ │ ├── G13.png
│ │ │ │ │ ├── G14.png
│ │ │ │ │ ├── G15.png
│ │ │ │ │ ├── G16.png
│ │ │ │ │ ├── G17.png
│ │ │ │ │ ├── G18.png
│ │ │ │ │ ├── G19.png
│ │ │ │ │ ├── G1.png
│ │ │ │ │ ├── G20.png
│ │ │ │ │ ├── G21.png
│ │ │ │ │ ├── G22.png
│ │ │ │ │ ├── G23.png
│ │ │ │ │ ├── G24.png
│ │ │ │ │ ├── G25.png
│ │ │ │ │ ├── G26.png
│ │ │ │ │ ├── G27.png
│ │ │ │ │ ├── G28.png
│ │ │ │ │ ├── G29.png
│ │ │ │ │ ├── G2.png
│ │ │ │ │ ├── G30.png
│ │ │ │ │ ├── G31.png
│ │ │ │ │ ├── G32.png
│ │ │ │ │ ├── G33.png
│ │ │ │ │ ├── G34.png
│ │ │ │ │ ├── G35.png
│ │ │ │ │ ├── G36.png
│ │ │ │ │ ├── G37.png
│ │ │ │ │ ├── G38.png
│ │ │ │ │ ├── G39.png
│ │ │ │ │ ├── G3.png
│ │ │ │ │ ├── G40.png
│ │ │ │ │ ├── G41.png
│ │ │ │ │ ├── G42.png
│ │ │ │ │ ├── G43.png
│ │ │ │ │ ├── G44.png
│ │ │ │ │ ├── G45.png
│ │ │ │ │ ├── G46.png
│ │ │ │ │ ├── G47.png
│ │ │ │ │ ├── G48.png
│ │ │ │ │ ├── G49.png
│ │ │ │ │ ├── G4.png
│ │ │ │ │ ├── G50.png
│ │ │ │ │ ├── G51.png
│ │ │ │ │ ├── G52.png
│ │ │ │ │ ├── G53.png
│ │ │ │ │ ├── G54.png
│ │ │ │ │ ├── G55.png
│ │ │ │ │ ├── G56.png
│ │ │ │ │ ├── G57.png
│ │ │ │ │ ├── G58.png
│ │ │ │ │ ├── G59.png
│ │ │ │ │ ├── G5.png
│ │ │ │ │ ├── G60.png
│ │ │ │ │ ├── G61.png
│ │ │ │ │ ├── G62.png
│ │ │ │ │ ├── G63.png
│ │ │ │ │ ├── G64.png
│ │ │ │ │ ├── G65.png
│ │ │ │ │ ├── G66.png
│ │ │ │ │ ├── G67.png
│ │ │ │ │ ├── G6.png
│ │ │ │ │ ├── G7.png
│ │ │ │ │ ├── G8.png
│ │ │ │ │ └── G9.png
│ │ │ │ ├── Guettel
│ │ │ │ │ ├── TEM152078.png
│ │ │ │ │ ├── TEM181302.png
│ │ │ │ │ └── TEM27623.png
│ │ │ │ ├── Gupta
│ │ │ │ │ ├── gupta1.png
│ │ │ │ │ ├── gupta2.png
│ │ │ │ │ └── gupta3.png
│ │ │ │ ├── Hamm
│ │ │ │ │ ├── add20.png
│ │ │ │ │ ├── add32.png
│ │ │ │ │ ├── bcircuit.png
│ │ │ │ │ ├── hcircuit.png
│ │ │ │ │ ├── memplus.png
│ │ │ │ │ └── scircuit.png
│ │ │ │ ├── Hamrle
│ │ │ │ │ ├── Hamrle1.png
│ │ │ │ │ ├── Hamrle2.png
│ │ │ │ │ └── Hamrle3.png
│ │ │ │ ├── Hardesty
│ │ │ │ │ ├── Hardesty1.png
│ │ │ │ │ ├── Hardesty2.png
│ │ │ │ │ └── Hardesty3.png
│ │ │ │ ├── Harvard_Seismology
│ │ │ │ │ └── JP.png
│ │ │ │ ├── HB
│ │ │ │ │ ├── 1138_bus.png
│ │ │ │ │ ├── 494_bus.png
│ │ │ │ │ ├── 662_bus.png
│ │ │ │ │ ├── 685_bus.png
│ │ │ │ │ ├── abb313.png
│ │ │ │ │ ├── arc130.png
│ │ │ │ │ ├── ash219.png
│ │ │ │ │ ├── ash292.png
│ │ │ │ │ ├── ash331.png
│ │ │ │ │ ├── ash608.png
│ │ │ │ │ ├── ash85.png
│ │ │ │ │ ├── ash958.png
│ │ │ │ │ ├── bcspwr01.png
│ │ │ │ │ ├── bcspwr02.png
│ │ │ │ │ ├── bcspwr03.png
│ │ │ │ │ ├── bcspwr04.png
│ │ │ │ │ ├── bcspwr05.png
│ │ │ │ │ ├── bcspwr06.png
│ │ │ │ │ ├── bcspwr07.png
│ │ │ │ │ ├── bcspwr08.png
│ │ │ │ │ ├── bcspwr09.png
│ │ │ │ │ ├── bcspwr10.png
│ │ │ │ │ ├── bcsstk01.png
│ │ │ │ │ ├── bcsstk02.png
│ │ │ │ │ ├── bcsstk03.png
│ │ │ │ │ ├── bcsstk04.png
│ │ │ │ │ ├── bcsstk05.png
│ │ │ │ │ ├── bcsstk06.png
│ │ │ │ │ ├── bcsstk07.png
│ │ │ │ │ ├── bcsstk08.png
│ │ │ │ │ ├── bcsstk09.png
│ │ │ │ │ ├── bcsstk10.png
│ │ │ │ │ ├── bcsstk11.png
│ │ │ │ │ ├── bcsstk12.png
│ │ │ │ │ ├── bcsstk13.png
│ │ │ │ │ ├── bcsstk14.png
│ │ │ │ │ ├── bcsstk15.png
│ │ │ │ │ ├── bcsstk16.png
│ │ │ │ │ ├── bcsstk17.png
│ │ │ │ │ ├── bcsstk18.png
│ │ │ │ │ ├── bcsstk19.png
│ │ │ │ │ ├── bcsstk20.png
│ │ │ │ │ ├── bcsstk21.png
│ │ │ │ │ ├── bcsstk22.png
│ │ │ │ │ ├── bcsstk23.png
│ │ │ │ │ ├── bcsstk24.png
│ │ │ │ │ ├── bcsstk25.png
│ │ │ │ │ ├── bcsstk26.png
│ │ │ │ │ ├── bcsstk27.png
│ │ │ │ │ ├── bcsstk28.png
│ │ │ │ │ ├── bcsstk29.png
│ │ │ │ │ ├── bcsstk30.png
│ │ │ │ │ ├── bcsstk31.png
│ │ │ │ │ ├── bcsstk32.png
│ │ │ │ │ ├── bcsstk33.png
│ │ │ │ │ ├── bcsstm01.png
│ │ │ │ │ ├── bcsstm02.png
│ │ │ │ │ ├── bcsstm03.png
│ │ │ │ │ ├── bcsstm04.png
│ │ │ │ │ ├── bcsstm05.png
│ │ │ │ │ ├── bcsstm06.png
│ │ │ │ │ ├── bcsstm07.png
│ │ │ │ │ ├── bcsstm08.png
│ │ │ │ │ ├── bcsstm09.png
│ │ │ │ │ ├── bcsstm10.png
│ │ │ │ │ ├── bcsstm11.png
│ │ │ │ │ ├── bcsstm12.png
│ │ │ │ │ ├── bcsstm13.png
│ │ │ │ │ ├── bcsstm19.png
│ │ │ │ │ ├── bcsstm20.png
│ │ │ │ │ ├── bcsstm21.png
│ │ │ │ │ ├── bcsstm22.png
│ │ │ │ │ ├── bcsstm23.png
│ │ │ │ │ ├── bcsstm24.png
│ │ │ │ │ ├── bcsstm25.png
│ │ │ │ │ ├── bcsstm26.png
│ │ │ │ │ ├── bcsstm27.png
│ │ │ │ │ ├── beacxc.png
│ │ │ │ │ ├── beaflw.png
│ │ │ │ │ ├── beause.png
│ │ │ │ │ ├── blckhole.png
│ │ │ │ │ ├── bp_0.png
│ │ │ │ │ ├── bp_1000.png
│ │ │ │ │ ├── bp_1200.png
│ │ │ │ │ ├── bp_1400.png
│ │ │ │ │ ├── bp_1600.png
│ │ │ │ │ ├── bp_200.png
│ │ │ │ │ ├── bp_400.png
│ │ │ │ │ ├── bp_600.png
│ │ │ │ │ ├── bp_800.png
│ │ │ │ │ ├── can_1054.png
│ │ │ │ │ ├── can_1072.png
│ │ │ │ │ ├── can_144.png
│ │ │ │ │ ├── can_161.png
│ │ │ │ │ ├── can_187.png
│ │ │ │ │ ├── can_229.png
│ │ │ │ │ ├── can_24.png
│ │ │ │ │ ├── can_256.png
│ │ │ │ │ ├── can_268.png
│ │ │ │ │ ├── can_292.png
│ │ │ │ │ ├── can_445.png
│ │ │ │ │ ├── can_61.png
│ │ │ │ │ ├── can_62.png
│ │ │ │ │ ├── can_634.png
│ │ │ │ │ ├── can_715.png
│ │ │ │ │ ├── can_73.png
│ │ │ │ │ ├── can_838.png
│ │ │ │ │ ├── can_96.png
│ │ │ │ │ ├── cegb2802.png
│ │ │ │ │ ├── cegb2919.png
│ │ │ │ │ ├── cegb3024.png
│ │ │ │ │ ├── cegb3306.png
│ │ │ │ │ ├── curtis54.png
│ │ │ │ │ ├── dwt_1005.png
│ │ │ │ │ ├── dwt_1007.png
│ │ │ │ │ ├── dwt_1242.png
│ │ │ │ │ ├── dwt_162.png
│ │ │ │ │ ├── dwt_193.png
│ │ │ │ │ ├── dwt_198.png
│ │ │ │ │ ├── dwt_209.png
│ │ │ │ │ ├── dwt_221.png
│ │ │ │ │ ├── dwt_234.png
│ │ │ │ │ ├── dwt_245.png
│ │ │ │ │ ├── dwt_2680.png
│ │ │ │ │ ├── dwt_307.png
│ │ │ │ │ ├── dwt_310.png
│ │ │ │ │ ├── dwt_346.png
│ │ │ │ │ ├── dwt_361.png
│ │ │ │ │ ├── dwt_419.png
│ │ │ │ │ ├── dwt_492.png
│ │ │ │ │ ├── dwt_503.png
│ │ │ │ │ ├── dwt_512.png
│ │ │ │ │ ├── dwt_592.png
│ │ │ │ │ ├── dwt_59.png
│ │ │ │ │ ├── dwt_607.png
│ │ │ │ │ ├── dwt_66.png
│ │ │ │ │ ├── dwt_72.png
│ │ │ │ │ ├── dwt_758.png
│ │ │ │ │ ├── dwt_869.png
│ │ │ │ │ ├── dwt_878.png
│ │ │ │ │ ├── dwt_87.png
│ │ │ │ │ ├── dwt_918.png
│ │ │ │ │ ├── dwt_992.png
│ │ │ │ │ ├── eris1176.png
│ │ │ │ │ ├── fs_183_1.png
│ │ │ │ │ ├── fs_183_3.png
│ │ │ │ │ ├── fs_183_4.png
│ │ │ │ │ ├── fs_183_6.png
│ │ │ │ │ ├── fs_541_1.png
│ │ │ │ │ ├── fs_541_2.png
│ │ │ │ │ ├── fs_541_3.png
│ │ │ │ │ ├── fs_541_4.png
│ │ │ │ │ ├── fs_680_1.png
│ │ │ │ │ ├── fs_680_2.png
│ │ │ │ │ ├── fs_680_3.png
│ │ │ │ │ ├── fs_760_1.png
│ │ │ │ │ ├── fs_760_2.png
│ │ │ │ │ ├── fs_760_3.png
│ │ │ │ │ ├── gemat11.png
│ │ │ │ │ ├── gemat12.png
│ │ │ │ │ ├── gemat1.png
│ │ │ │ │ ├── gent113.png
│ │ │ │ │ ├── gr_30_30.png
│ │ │ │ │ ├── gre_1107.png
│ │ │ │ │ ├── gre_115.png
│ │ │ │ │ ├── gre_185.png
│ │ │ │ │ ├── gre_216a.png
│ │ │ │ │ ├── gre_216b.png
│ │ │ │ │ ├── gre_343.png
│ │ │ │ │ ├── gre_512.png
│ │ │ │ │ ├── hor_131.png
│ │ │ │ │ ├── ibm32.png
│ │ │ │ │ ├── illc1033.png
│ │ │ │ │ ├── illc1850.png
│ │ │ │ │ ├── impcol_a.png
│ │ │ │ │ ├── impcol_b.png
│ │ │ │ │ ├── impcol_c.png
│ │ │ │ │ ├── impcol_d.png
│ │ │ │ │ ├── impcol_e.png
│ │ │ │ │ ├── jagmesh1.png
│ │ │ │ │ ├── jagmesh2.png
│ │ │ │ │ ├── jagmesh3.png
│ │ │ │ │ ├── jagmesh4.png
│ │ │ │ │ ├── jagmesh5.png
│ │ │ │ │ ├── jagmesh6.png
│ │ │ │ │ ├── jagmesh7.png
│ │ │ │ │ ├── jagmesh8.png
│ │ │ │ │ ├── jagmesh9.png
│ │ │ │ │ ├── jgl009.png
│ │ │ │ │ ├── jgl011.png
│ │ │ │ │ ├── jpwh_991.png
│ │ │ │ │ ├── lap_25.png
│ │ │ │ │ ├── lns_131.png
│ │ │ │ │ ├── lns_3937.png
│ │ │ │ │ ├── lns_511.png
│ │ │ │ │ ├── lnsp_131.png
│ │ │ │ │ ├── lnsp3937.png
│ │ │ │ │ ├── lnsp_511.png
│ │ │ │ │ ├── lock1074.png
│ │ │ │ │ ├── lock2232.png
│ │ │ │ │ ├── lock3491.png
│ │ │ │ │ ├── lock_700.png
│ │ │ │ │ ├── lshp1009.png
│ │ │ │ │ ├── lshp1270.png
│ │ │ │ │ ├── lshp1561.png
│ │ │ │ │ ├── lshp1882.png
│ │ │ │ │ ├── lshp2233.png
│ │ │ │ │ ├── lshp2614.png
│ │ │ │ │ ├── lshp_265.png
│ │ │ │ │ ├── lshp3025.png
│ │ │ │ │ ├── lshp3466.png
│ │ │ │ │ ├── lshp_406.png
│ │ │ │ │ ├── lshp_577.png
│ │ │ │ │ ├── lshp_778.png
│ │ │ │ │ ├── lund_a.png
│ │ │ │ │ ├── lund_b.png
│ │ │ │ │ ├── mahindas.png
│ │ │ │ │ ├── man_5976.png
│ │ │ │ │ ├── mbeacxc.png
│ │ │ │ │ ├── mbeaflw.png
│ │ │ │ │ ├── mbeause.png
│ │ │ │ │ ├── mcca.png
│ │ │ │ │ ├── mcfe.png
│ │ │ │ │ ├── nnc1374.png
│ │ │ │ │ ├── nnc261.png
│ │ │ │ │ ├── nnc666.png
│ │ │ │ │ ├── nos1.png
│ │ │ │ │ ├── nos2.png
│ │ │ │ │ ├── nos3.png
│ │ │ │ │ ├── nos4.png
│ │ │ │ │ ├── nos5.png
│ │ │ │ │ ├── nos6.png
│ │ │ │ │ ├── nos7.png
│ │ │ │ │ ├── orani678.png
│ │ │ │ │ ├── orsirr_1.png
│ │ │ │ │ ├── orsirr_2.png
│ │ │ │ │ ├── orsreg_1.png
│ │ │ │ │ ├── plat1919.png
│ │ │ │ │ ├── plat362.png
│ │ │ │ │ ├── plsk1919.png
│ │ │ │ │ ├── plskz362.png
│ │ │ │ │ ├── pores_1.png
│ │ │ │ │ ├── pores_2.png
│ │ │ │ │ ├── pores_3.png
│ │ │ │ │ ├── psmigr_1.png
│ │ │ │ │ ├── psmigr_2.png
│ │ │ │ │ ├── psmigr_3.png
│ │ │ │ │ ├── rgg010.png
│ │ │ │ │ ├── saylr1.png
│ │ │ │ │ ├── saylr3.png
│ │ │ │ │ ├── saylr4.png
│ │ │ │ │ ├── sherman1.png
│ │ │ │ │ ├── sherman2.png
│ │ │ │ │ ├── sherman3.png
│ │ │ │ │ ├── sherman4.png
│ │ │ │ │ ├── sherman5.png
│ │ │ │ │ ├── shl_0.png
│ │ │ │ │ ├── shl_200.png
│ │ │ │ │ ├── shl_400.png
│ │ │ │ │ ├── sstmodel.png
│ │ │ │ │ ├── steam1.png
│ │ │ │ │ ├── steam2.png
│ │ │ │ │ ├── steam3.png
│ │ │ │ │ ├── str_0.png
│ │ │ │ │ ├── str_200.png
│ │ │ │ │ ├── str_400.png
│ │ │ │ │ ├── str_600.png
│ │ │ │ │ ├── watt_1.png
│ │ │ │ │ ├── watt_2.png
│ │ │ │ │ ├── well1033.png
│ │ │ │ │ ├── well1850.png
│ │ │ │ │ ├── west0067.png
│ │ │ │ │ ├── west0132.png
│ │ │ │ │ ├── west0156.png
│ │ │ │ │ ├── west0167.png
│ │ │ │ │ ├── west0381.png
│ │ │ │ │ ├── west0479.png
│ │ │ │ │ ├── west0497.png
│ │ │ │ │ ├── west0655.png
│ │ │ │ │ ├── west0989.png
│ │ │ │ │ ├── west1505.png
│ │ │ │ │ ├── west2021.png
│ │ │ │ │ ├── will199.png
│ │ │ │ │ ├── will57.png
│ │ │ │ │ ├── wm1.png
│ │ │ │ │ ├── wm2.png
│ │ │ │ │ ├── wm3.png
│ │ │ │ │ ├── young1c.png
│ │ │ │ │ ├── young2c.png
│ │ │ │ │ ├── young3c.png
│ │ │ │ │ ├── young4c.png
│ │ │ │ │ └── zenios.png
│ │ │ │ ├── Hohn
│ │ │ │ │ ├── fd12.png
│ │ │ │ │ ├── fd15.png
│ │ │ │ │ ├── fd18.png
│ │ │ │ │ ├── sinc12.png
│ │ │ │ │ ├── sinc15.png
│ │ │ │ │ └── sinc18.png
│ │ │ │ ├── Hollinger
│ │ │ │ │ ├── g7jac010.png
│ │ │ │ │ ├── g7jac010sc.png
│ │ │ │ │ ├── g7jac020.png
│ │ │ │ │ ├── g7jac020sc.png
│ │ │ │ │ ├── g7jac040.png
│ │ │ │ │ ├── g7jac040sc.png
│ │ │ │ │ ├── g7jac050sc.png
│ │ │ │ │ ├── g7jac060.png
│ │ │ │ │ ├── g7jac060sc.png
│ │ │ │ │ ├── g7jac080.png
│ │ │ │ │ ├── g7jac080sc.png
│ │ │ │ │ ├── g7jac100.png
│ │ │ │ │ ├── g7jac100sc.png
│ │ │ │ │ ├── g7jac120.png
│ │ │ │ │ ├── g7jac120sc.png
│ │ │ │ │ ├── g7jac140.png
│ │ │ │ │ ├── g7jac140sc.png
│ │ │ │ │ ├── g7jac160.png
│ │ │ │ │ ├── g7jac160sc.png
│ │ │ │ │ ├── g7jac180.png
│ │ │ │ │ ├── g7jac180sc.png
│ │ │ │ │ ├── g7jac200.png
│ │ │ │ │ ├── g7jac200sc.png
│ │ │ │ │ ├── jan99jac020.png
│ │ │ │ │ ├── jan99jac020sc.png
│ │ │ │ │ ├── jan99jac040.png
│ │ │ │ │ ├── jan99jac040sc.png
│ │ │ │ │ ├── jan99jac060.png
│ │ │ │ │ ├── jan99jac060sc.png
│ │ │ │ │ ├── jan99jac080.png
│ │ │ │ │ ├── jan99jac080sc.png
│ │ │ │ │ ├── jan99jac100.png
│ │ │ │ │ ├── jan99jac100sc.png
│ │ │ │ │ ├── jan99jac120.png
│ │ │ │ │ ├── jan99jac120sc.png
│ │ │ │ │ ├── mark3jac020.png
│ │ │ │ │ ├── mark3jac020sc.png
│ │ │ │ │ ├── mark3jac040.png
│ │ │ │ │ ├── mark3jac040sc.png
│ │ │ │ │ ├── mark3jac060.png
│ │ │ │ │ ├── mark3jac060sc.png
│ │ │ │ │ ├── mark3jac080.png
│ │ │ │ │ ├── mark3jac080sc.png
│ │ │ │ │ ├── mark3jac100.png
│ │ │ │ │ ├── mark3jac100sc.png
│ │ │ │ │ ├── mark3jac120.png
│ │ │ │ │ ├── mark3jac120sc.png
│ │ │ │ │ ├── mark3jac140.png
│ │ │ │ │ └── mark3jac140sc.png
│ │ │ │ ├── HVDC
│ │ │ │ │ ├── hvdc1.png
│ │ │ │ │ └── hvdc2.png
│ │ │ │ ├── IBM_Austin
│ │ │ │ │ └── coupled.png
│ │ │ │ ├── IBM_EDA
│ │ │ │ │ ├── ckt11752_dc_1.png
│ │ │ │ │ ├── ckt11752_tr_0.png
│ │ │ │ │ ├── dc1.png
│ │ │ │ │ ├── dc2.png
│ │ │ │ │ ├── dc3.png
│ │ │ │ │ ├── trans4.png
│ │ │ │ │ └── trans5.png
│ │ │ │ ├── INPRO
│ │ │ │ │ └── msdoor.png
│ │ │ │ ├── IPSO
│ │ │ │ │ ├── HTC_336_4438.png
│ │ │ │ │ ├── HTC_336_9129.png
│ │ │ │ │ ├── OPF_10000.png
│ │ │ │ │ ├── OPF_3754.png
│ │ │ │ │ ├── OPF_6000.png
│ │ │ │ │ ├── TSC_OPF_1047.png
│ │ │ │ │ └── TSC_OPF_300.png
│ │ │ │ ├── Janna
│ │ │ │ │ ├── Bump_2911.png
│ │ │ │ │ ├── CoupCons3D.png
│ │ │ │ │ ├── Cube_Coup_dt0.png
│ │ │ │ │ ├── Cube_Coup_dt6.png
│ │ │ │ │ ├── Emilia_923.png
│ │ │ │ │ ├── Fault_639.png
│ │ │ │ │ ├── Flan_1565.png
│ │ │ │ │ ├── Geo_1438.png
│ │ │ │ │ ├── Hook_1498.png
│ │ │ │ │ ├── Long_Coup_dt0.png
│ │ │ │ │ ├── Long_Coup_dt6.png
│ │ │ │ │ ├── ML_Geer.png
│ │ │ │ │ ├── ML_Laplace.png
│ │ │ │ │ ├── PFlow_742.png
│ │ │ │ │ ├── Queen_4147.png
│ │ │ │ │ ├── Serena.png
│ │ │ │ │ ├── StocF-1465.png
│ │ │ │ │ └── Transport.png
│ │ │ │ ├── JGD_BIBD
│ │ │ │ │ ├── bibd_11_5.png
│ │ │ │ │ ├── bibd_12_4.png
│ │ │ │ │ ├── bibd_12_5.png
│ │ │ │ │ ├── bibd_13_6.png
│ │ │ │ │ ├── bibd_14_7.png
│ │ │ │ │ ├── bibd_15_3.png
│ │ │ │ │ ├── bibd_15_7.png
│ │ │ │ │ ├── bibd_16_8.png
│ │ │ │ │ ├── bibd_17_3.png
│ │ │ │ │ ├── bibd_17_4b.png
│ │ │ │ │ ├── bibd_17_4.png
│ │ │ │ │ ├── bibd_17_8.png
│ │ │ │ │ ├── bibd_18_9.png
│ │ │ │ │ ├── bibd_19_9.png
│ │ │ │ │ ├── bibd_20_10.png
│ │ │ │ │ ├── bibd_22_8.png
│ │ │ │ │ ├── bibd_49_3.png
│ │ │ │ │ ├── bibd_81_2.png
│ │ │ │ │ ├── bibd_81_3.png
│ │ │ │ │ ├── bibd_9_3.png
│ │ │ │ │ └── bibd_9_5.png
│ │ │ │ ├── JGD_CAG
│ │ │ │ │ ├── CAG_mat1916.png
│ │ │ │ │ ├── CAG_mat364.png
│ │ │ │ │ └── CAG_mat72.png
│ │ │ │ ├── JGD_Forest
│ │ │ │ │ ├── TF10.png
│ │ │ │ │ ├── TF11.png
│ │ │ │ │ ├── TF12.png
│ │ │ │ │ ├── TF13.png
│ │ │ │ │ ├── TF14.png
│ │ │ │ │ ├── TF15.png
│ │ │ │ │ ├── TF16.png
│ │ │ │ │ ├── TF17.png
│ │ │ │ │ ├── TF18.png
│ │ │ │ │ └── TF19.png
│ │ │ │ ├── JGD_Franz
│ │ │ │ │ ├── Franz10.png
│ │ │ │ │ ├── Franz11.png
│ │ │ │ │ ├── Franz1.png
│ │ │ │ │ ├── Franz2.png
│ │ │ │ │ ├── Franz3.png
│ │ │ │ │ ├── Franz4.png
│ │ │ │ │ ├── Franz5.png
│ │ │ │ │ ├── Franz6.png
│ │ │ │ │ ├── Franz7.png
│ │ │ │ │ ├── Franz8.png
│ │ │ │ │ └── Franz9.png
│ │ │ │ ├── JGD_G5
│ │ │ │ │ ├── IG5-10.png
│ │ │ │ │ ├── IG5-11.png
│ │ │ │ │ ├── IG5-12.png
│ │ │ │ │ ├── IG5-13.png
│ │ │ │ │ ├── IG5-14.png
│ │ │ │ │ ├── IG5-15.png
│ │ │ │ │ ├── IG5-16.png
│ │ │ │ │ ├── IG5-17.png
│ │ │ │ │ ├── IG5-18.png
│ │ │ │ │ ├── IG5-6.png
│ │ │ │ │ ├── IG5-7.png
│ │ │ │ │ ├── IG5-8.png
│ │ │ │ │ └── IG5-9.png
│ │ │ │ ├── JGD_GL6
│ │ │ │ │ ├── GL6_D_10.png
│ │ │ │ │ ├── GL6_D_6.png
│ │ │ │ │ ├── GL6_D_7.png
│ │ │ │ │ ├── GL6_D_8.png
│ │ │ │ │ └── GL6_D_9.png
│ │ │ │ ├── JGD_GL7d
│ │ │ │ │ ├── GL7d10.png
│ │ │ │ │ ├── GL7d11.png
│ │ │ │ │ ├── GL7d12.png
│ │ │ │ │ ├── GL7d13.png
│ │ │ │ │ ├── GL7d14.png
│ │ │ │ │ ├── GL7d15.png
│ │ │ │ │ ├── GL7d16.png
│ │ │ │ │ ├── GL7d17.png
│ │ │ │ │ ├── GL7d18.png
│ │ │ │ │ ├── GL7d19.png
│ │ │ │ │ ├── GL7d20.png
│ │ │ │ │ ├── GL7d21.png
│ │ │ │ │ ├── GL7d22.png
│ │ │ │ │ ├── GL7d23.png
│ │ │ │ │ ├── GL7d24.png
│ │ │ │ │ ├── GL7d25.png
│ │ │ │ │ └── GL7d26.png
│ │ │ │ ├── JGD_Groebner
│ │ │ │ │ ├── c8_mat11_I.png
│ │ │ │ │ ├── c8_mat11.png
│ │ │ │ │ ├── f855_mat9_I.png
│ │ │ │ │ ├── f855_mat9.png
│ │ │ │ │ ├── HFE18_96_in.png
│ │ │ │ │ ├── rkat7_mat5.png
│ │ │ │ │ ├── robot24c1_mat5_J.png
│ │ │ │ │ └── robot24c1_mat5.png
│ │ │ │ ├── JGD_Homology
│ │ │ │ │ ├── ch3-3-b1.png
│ │ │ │ │ ├── ch3-3-b2.png
│ │ │ │ │ ├── ch4-4-b1.png
│ │ │ │ │ ├── ch4-4-b2.png
│ │ │ │ │ ├── ch4-4-b3.png
│ │ │ │ │ ├── ch5-5-b1.png
│ │ │ │ │ ├── ch5-5-b2.png
│ │ │ │ │ ├── ch5-5-b3.png
│ │ │ │ │ ├── ch5-5-b4.png
│ │ │ │ │ ├── ch6-6-b1.png
│ │ │ │ │ ├── ch6-6-b2.png
│ │ │ │ │ ├── ch6-6-b3.png
│ │ │ │ │ ├── ch6-6-b4.png
│ │ │ │ │ ├── ch6-6-b5.png
│ │ │ │ │ ├── ch7-6-b1.png
│ │ │ │ │ ├── ch7-6-b2.png
│ │ │ │ │ ├── ch7-6-b3.png
│ │ │ │ │ ├── ch7-6-b4.png
│ │ │ │ │ ├── ch7-6-b5.png
│ │ │ │ │ ├── ch7-7-b1.png
│ │ │ │ │ ├── ch7-7-b2.png
│ │ │ │ │ ├── ch7-7-b5.png
│ │ │ │ │ ├── ch7-8-b1.png
│ │ │ │ │ ├── ch7-8-b2.png
│ │ │ │ │ ├── ch7-8-b3.png
│ │ │ │ │ ├── ch7-8-b4.png
│ │ │ │ │ ├── ch7-8-b5.png
│ │ │ │ │ ├── ch7-9-b1.png
│ │ │ │ │ ├── ch7-9-b2.png
│ │ │ │ │ ├── ch7-9-b3.png
│ │ │ │ │ ├── ch7-9-b4.png
│ │ │ │ │ ├── ch7-9-b5.png
│ │ │ │ │ ├── ch8-8-b1.png
│ │ │ │ │ ├── ch8-8-b2.png
│ │ │ │ │ ├── ch8-8-b3.png
│ │ │ │ │ ├── ch8-8-b4.png
│ │ │ │ │ ├── ch8-8-b5.png
│ │ │ │ │ ├── cis-n4c6-b13.png
│ │ │ │ │ ├── cis-n4c6-b14.png
│ │ │ │ │ ├── cis-n4c6-b15.png
│ │ │ │ │ ├── cis-n4c6-b1.png
│ │ │ │ │ ├── cis-n4c6-b2.png
│ │ │ │ │ ├── cis-n4c6-b3.png
│ │ │ │ │ ├── cis-n4c6-b4.png
│ │ │ │ │ ├── D6-6.png
│ │ │ │ │ ├── klein-b1.png
│ │ │ │ │ ├── klein-b2.png
│ │ │ │ │ ├── lutz30-23-b6.png
│ │ │ │ │ ├── m133-b3.png
│ │ │ │ │ ├── mk10-b1.png
│ │ │ │ │ ├── mk10-b2.png
│ │ │ │ │ ├── mk10-b3.png
│ │ │ │ │ ├── mk10-b4.png
│ │ │ │ │ ├── mk11-b1.png
│ │ │ │ │ ├── mk11-b2.png
│ │ │ │ │ ├── mk11-b3.png
│ │ │ │ │ ├── mk11-b4b.png
│ │ │ │ │ ├── mk11-b4.png
│ │ │ │ │ ├── mk12-b1.png
│ │ │ │ │ ├── mk12-b2.png
│ │ │ │ │ ├── mk12-b3.png
│ │ │ │ │ ├── mk12-b4.png
│ │ │ │ │ ├── mk12-b5.png
│ │ │ │ │ ├── mk13-b5.png
│ │ │ │ │ ├── mk9-b1.png
│ │ │ │ │ ├── mk9-b2.png
│ │ │ │ │ ├── mk9-b3.png
│ │ │ │ │ ├── n2c6-b10.png
│ │ │ │ │ ├── n2c6-b1.png
│ │ │ │ │ ├── n2c6-b2.png
│ │ │ │ │ ├── n2c6-b3.png
│ │ │ │ │ ├── n2c6-b4.png
│ │ │ │ │ ├── n2c6-b5.png
│ │ │ │ │ ├── n2c6-b6.png
│ │ │ │ │ ├── n2c6-b7.png
│ │ │ │ │ ├── n2c6-b8.png
│ │ │ │ │ ├── n2c6-b9.png
│ │ │ │ │ ├── n3c4-b1.png
│ │ │ │ │ ├── n3c4-b2.png
│ │ │ │ │ ├── n3c4-b3.png
│ │ │ │ │ ├── n3c4-b4.png
│ │ │ │ │ ├── n3c5-b1.png
│ │ │ │ │ ├── n3c5-b2.png
│ │ │ │ │ ├── n3c5-b3.png
│ │ │ │ │ ├── n3c5-b4.png
│ │ │ │ │ ├── n3c5-b5.png
│ │ │ │ │ ├── n3c5-b6.png
│ │ │ │ │ ├── n3c5-b7.png
│ │ │ │ │ ├── n3c6-b10.png
│ │ │ │ │ ├── n3c6-b11.png
│ │ │ │ │ ├── n3c6-b1.png
│ │ │ │ │ ├── n3c6-b2.png
│ │ │ │ │ ├── n3c6-b3.png
│ │ │ │ │ ├── n3c6-b4.png
│ │ │ │ │ ├── n3c6-b5.png
│ │ │ │ │ ├── n3c6-b6.png
│ │ │ │ │ ├── n3c6-b7.png
│ │ │ │ │ ├── n3c6-b8.png
│ │ │ │ │ ├── n3c6-b9.png
│ │ │ │ │ ├── n4c5-b10.png
│ │ │ │ │ ├── n4c5-b11.png
│ │ │ │ │ ├── n4c5-b1.png
│ │ │ │ │ ├── n4c5-b2.png
│ │ │ │ │ ├── n4c5-b3.png
│ │ │ │ │ ├── n4c5-b4.png
│ │ │ │ │ ├── n4c5-b5.png
│ │ │ │ │ ├── n4c5-b6.png
│ │ │ │ │ ├── n4c5-b7.png
│ │ │ │ │ ├── n4c5-b8.png
│ │ │ │ │ ├── n4c5-b9.png
│ │ │ │ │ ├── n4c6-b10.png
│ │ │ │ │ ├── n4c6-b11.png
│ │ │ │ │ ├── n4c6-b12.png
│ │ │ │ │ ├── n4c6-b13.png
│ │ │ │ │ ├── n4c6-b14.png
│ │ │ │ │ ├── n4c6-b15.png
│ │ │ │ │ ├── n4c6-b1.png
│ │ │ │ │ ├── n4c6-b2.png
│ │ │ │ │ ├── n4c6-b3.png
│ │ │ │ │ ├── n4c6-b4.png
│ │ │ │ │ ├── n4c6-b5.png
│ │ │ │ │ ├── n4c6-b6.png
│ │ │ │ │ ├── n4c6-b7.png
│ │ │ │ │ ├── n4c6-b8.png
│ │ │ │ │ ├── n4c6-b9.png
│ │ │ │ │ ├── shar_te2-b1.png
│ │ │ │ │ ├── shar_te2-b2.png
│ │ │ │ │ └── shar_te2-b3.png
│ │ │ │ ├── JGD_Kocay
│ │ │ │ │ ├── Trec10.png
│ │ │ │ │ ├── Trec11.png
│ │ │ │ │ ├── Trec12.png
│ │ │ │ │ ├── Trec13.png
│ │ │ │ │ ├── Trec14.png
│ │ │ │ │ ├── Trec3.png
│ │ │ │ │ ├── Trec4.png
│ │ │ │ │ ├── Trec5.png
│ │ │ │ │ ├── Trec6.png
│ │ │ │ │ ├── Trec7.png
│ │ │ │ │ ├── Trec8.png
│ │ │ │ │ └── Trec9.png
│ │ │ │ ├── JGD_Margulies
│ │ │ │ │ ├── cat_ears_2_1.png
│ │ │ │ │ ├── cat_ears_2_4.png
│ │ │ │ │ ├── cat_ears_3_1.png
│ │ │ │ │ ├── cat_ears_3_4.png
│ │ │ │ │ ├── cat_ears_4_1.png
│ │ │ │ │ ├── cat_ears_4_4.png
│ │ │ │ │ ├── flower_4_1.png
│ │ │ │ │ ├── flower_4_4.png
│ │ │ │ │ ├── flower_5_1.png
│ │ │ │ │ ├── flower_5_4.png
│ │ │ │ │ ├── flower_7_1.png
│ │ │ │ │ ├── flower_7_4.png
│ │ │ │ │ ├── flower_8_1.png
│ │ │ │ │ ├── flower_8_4.png
│ │ │ │ │ ├── kneser_10_4_1.png
│ │ │ │ │ ├── kneser_6_2_1.png
│ │ │ │ │ ├── kneser_8_3_1.png
│ │ │ │ │ ├── wheel_3_1.png
│ │ │ │ │ ├── wheel_4_1.png
│ │ │ │ │ ├── wheel_5_1.png
│ │ │ │ │ ├── wheel_601.png
│ │ │ │ │ ├── wheel_6_1.png
│ │ │ │ │ └── wheel_7_1.png
│ │ │ │ ├── JGD_Relat
│ │ │ │ │ ├── rel3.png
│ │ │ │ │ ├── rel4.png
│ │ │ │ │ ├── rel5.png
│ │ │ │ │ ├── rel6.png
│ │ │ │ │ ├── rel7.png
│ │ │ │ │ ├── rel8.png
│ │ │ │ │ ├── rel9.png
│ │ │ │ │ ├── relat3.png
│ │ │ │ │ ├── relat4.png
│ │ │ │ │ ├── relat5.png
│ │ │ │ │ ├── relat6.png
│ │ │ │ │ ├── relat7b.png
│ │ │ │ │ ├── relat7.png
│ │ │ │ │ ├── relat8.png
│ │ │ │ │ └── relat9.png
│ │ │ │ ├── JGD_SL6
│ │ │ │ │ ├── D_10.png
│ │ │ │ │ ├── D_11.png
│ │ │ │ │ ├── D_5.png
│ │ │ │ │ ├── D_6.png
│ │ │ │ │ ├── D_7.png
│ │ │ │ │ ├── D_8.png
│ │ │ │ │ └── D_9.png
│ │ │ │ ├── JGD_SPG
│ │ │ │ │ ├── 08blocks.png
│ │ │ │ │ ├── EX1.png
│ │ │ │ │ ├── EX2.png
│ │ │ │ │ ├── EX3.png
│ │ │ │ │ ├── EX4.png
│ │ │ │ │ ├── EX5.png
│ │ │ │ │ └── EX6.png
│ │ │ │ ├── JGD_Taha
│ │ │ │ │ ├── abtaha1.png
│ │ │ │ │ └── abtaha2.png
│ │ │ │ ├── JGD_Trefethen
│ │ │ │ │ ├── Trefethen_150.png
│ │ │ │ │ ├── Trefethen_20000b.png
│ │ │ │ │ ├── Trefethen_20000.png
│ │ │ │ │ ├── Trefethen_2000.png
│ │ │ │ │ ├── Trefethen_200b.png
│ │ │ │ │ ├── Trefethen_200.png
│ │ │ │ │ ├── Trefethen_20b.png
│ │ │ │ │ ├── Trefethen_20.png
│ │ │ │ │ ├── Trefethen_300.png
│ │ │ │ │ ├── Trefethen_500.png
│ │ │ │ │ └── Trefethen_700.png
│ │ │ │ ├── Kamvar
│ │ │ │ │ ├── Stanford_Berkeley.png
│ │ │ │ │ └── Stanford.png
│ │ │ │ ├── Kemelmacher
│ │ │ │ │ └── Kemelmacher.png
│ │ │ │ ├── Kim
│ │ │ │ │ ├── kim1.png
│ │ │ │ │ └── kim2.png
│ │ │ │ ├── Koutsovasilis
│ │ │ │ │ ├── F1.png
│ │ │ │ │ └── F2.png
│ │ │ │ ├── Langemyr
│ │ │ │ │ └── comsol.png
│ │ │ │ ├── LAW
│ │ │ │ │ ├── amazon-2008.png
│ │ │ │ │ ├── arabic-2005.png
│ │ │ │ │ ├── cnr-2000.png
│ │ │ │ │ ├── dblp-2010.png
│ │ │ │ │ ├── enron.png
│ │ │ │ │ ├── eu-2005.png
│ │ │ │ │ ├── hollywood-2009.png
│ │ │ │ │ ├── in-2004.png
│ │ │ │ │ ├── indochina-2004.png
│ │ │ │ │ ├── it-2004.png
│ │ │ │ │ ├── ljournal-2008.png
│ │ │ │ │ ├── sk-2005.png
│ │ │ │ │ ├── uk-2002.png
│ │ │ │ │ ├── uk-2005.png
│ │ │ │ │ └── webbase-2001.png
│ │ │ │ ├── Lee
│ │ │ │ │ ├── fem_filter.png
│ │ │ │ │ └── fem_hifreq_circuit.png
│ │ │ │ ├── LeGresley
│ │ │ │ │ ├── LeGresley_2508.png
│ │ │ │ │ ├── LeGresley_4908.png
│ │ │ │ │ └── LeGresley_87936.png
│ │ │ │ ├── Li
│ │ │ │ │ ├── li.png
│ │ │ │ │ └── pli.png
│ │ │ │ ├── Lin
│ │ │ │ │ └── Lin.png
│ │ │ │ ├── LiuWenzhuo
│ │ │ │ │ └── powersim.png
│ │ │ │ ├── Lourakis
│ │ │ │ │ └── bundle1.png
│ │ │ │ ├── LPnetlib
│ │ │ │ │ ├── lp_25fv47.png
│ │ │ │ │ ├── lp_80bau3b.png
│ │ │ │ │ ├── lp_adlittle.png
│ │ │ │ │ ├── lp_afiro.png
│ │ │ │ │ ├── lp_agg2.png
│ │ │ │ │ ├── lp_agg3.png
│ │ │ │ │ ├── lp_agg.png
│ │ │ │ │ ├── lp_bandm.png
│ │ │ │ │ ├── lp_beaconfd.png
│ │ │ │ │ ├── lp_blend.png
│ │ │ │ │ ├── lp_bnl1.png
│ │ │ │ │ ├── lp_bnl2.png
│ │ │ │ │ ├── lp_bore3d.png
│ │ │ │ │ ├── lp_brandy.png
│ │ │ │ │ ├── lp_capri.png
│ │ │ │ │ ├── lp_cre_a.png
│ │ │ │ │ ├── lp_cre_b.png
│ │ │ │ │ ├── lp_cre_c.png
│ │ │ │ │ ├── lp_cre_d.png
│ │ │ │ │ ├── lp_cycle.png
│ │ │ │ │ ├── lp_czprob.png
│ │ │ │ │ ├── lp_d2q06c.png
│ │ │ │ │ ├── lp_d6cube.png
│ │ │ │ │ ├── lp_degen2.png
│ │ │ │ │ ├── lp_degen3.png
│ │ │ │ │ ├── lp_dfl001.png
│ │ │ │ │ ├── lp_e226.png
│ │ │ │ │ ├── lp_etamacro.png
│ │ │ │ │ ├── lp_fffff800.png
│ │ │ │ │ ├── lp_finnis.png
│ │ │ │ │ ├── lp_fit1d.png
│ │ │ │ │ ├── lp_fit1p.png
│ │ │ │ │ ├── lp_fit2d.png
│ │ │ │ │ ├── lp_fit2p.png
│ │ │ │ │ ├── lp_ganges.png
│ │ │ │ │ ├── lp_gfrd_pnc.png
│ │ │ │ │ ├── lp_greenbea.png
│ │ │ │ │ ├── lp_greenbeb.png
│ │ │ │ │ ├── lp_grow15.png
│ │ │ │ │ ├── lp_grow22.png
│ │ │ │ │ ├── lp_grow7.png
│ │ │ │ │ ├── lpi_bgdbg1.png
│ │ │ │ │ ├── lpi_bgetam.png
│ │ │ │ │ ├── lpi_bgindy.png
│ │ │ │ │ ├── lpi_bgprtr.png
│ │ │ │ │ ├── lpi_box1.png
│ │ │ │ │ ├── lpi_ceria3d.png
│ │ │ │ │ ├── lpi_chemcom.png
│ │ │ │ │ ├── lpi_cplex1.png
│ │ │ │ │ ├── lpi_cplex2.png
│ │ │ │ │ ├── lpi_ex72a.png
│ │ │ │ │ ├── lpi_ex73a.png
│ │ │ │ │ ├── lpi_forest6.png
│ │ │ │ │ ├── lpi_galenet.png
│ │ │ │ │ ├── lpi_gosh.png
│ │ │ │ │ ├── lpi_gran.png
│ │ │ │ │ ├── lpi_greenbea.png
│ │ │ │ │ ├── lpi_itest2.png
│ │ │ │ │ ├── lpi_itest6.png
│ │ │ │ │ ├── lpi_klein1.png
│ │ │ │ │ ├── lpi_klein2.png
│ │ │ │ │ ├── lpi_klein3.png
│ │ │ │ │ ├── lpi_mondou2.png
│ │ │ │ │ ├── lpi_pang.png
│ │ │ │ │ ├── lpi_pilot4i.png
│ │ │ │ │ ├── lpi_qual.png
│ │ │ │ │ ├── lpi_reactor.png
│ │ │ │ │ ├── lpi_refinery.png
│ │ │ │ │ ├── lp_israel.png
│ │ │ │ │ ├── lpi_vol1.png
│ │ │ │ │ ├── lpi_woodinfe.png
│ │ │ │ │ ├── lp_kb2.png
│ │ │ │ │ ├── lp_ken_07.png
│ │ │ │ │ ├── lp_ken_11.png
│ │ │ │ │ ├── lp_ken_13.png
│ │ │ │ │ ├── lp_ken_18.png
│ │ │ │ │ ├── lp_lotfi.png
│ │ │ │ │ ├── lp_maros.png
│ │ │ │ │ ├── lp_maros_r7.png
│ │ │ │ │ ├── lp_modszk1.png
│ │ │ │ │ ├── lp_osa_07.png
│ │ │ │ │ ├── lp_osa_14.png
│ │ │ │ │ ├── lp_osa_30.png
│ │ │ │ │ ├── lp_osa_60.png
│ │ │ │ │ ├── lp_pds_02.png
│ │ │ │ │ ├── lp_pds_06.png
│ │ │ │ │ ├── lp_pds_10.png
│ │ │ │ │ ├── lp_pds_20.png
│ │ │ │ │ ├── lp_perold.png
│ │ │ │ │ ├── lp_pilot4.png
│ │ │ │ │ ├── lp_pilot87.png
│ │ │ │ │ ├── lp_pilot_ja.png
│ │ │ │ │ ├── lp_pilotnov.png
│ │ │ │ │ ├── lp_pilot.png
│ │ │ │ │ ├── lp_pilot_we.png
│ │ │ │ │ ├── lp_qap12.png
│ │ │ │ │ ├── lp_qap15.png
│ │ │ │ │ ├── lp_qap8.png
│ │ │ │ │ ├── lp_recipe.png
│ │ │ │ │ ├── lp_sc105.png
│ │ │ │ │ ├── lp_sc205.png
│ │ │ │ │ ├── lp_sc50a.png
│ │ │ │ │ ├── lp_sc50b.png
│ │ │ │ │ ├── lp_scagr25.png
│ │ │ │ │ ├── lp_scagr7.png
│ │ │ │ │ ├── lp_scfxm1.png
│ │ │ │ │ ├── lp_scfxm2.png
│ │ │ │ │ ├── lp_scfxm3.png
│ │ │ │ │ ├── lp_scorpion.png
│ │ │ │ │ ├── lp_scrs8.png
│ │ │ │ │ ├── lp_scsd1.png
│ │ │ │ │ ├── lp_scsd6.png
│ │ │ │ │ ├── lp_scsd8.png
│ │ │ │ │ ├── lp_sctap1.png
│ │ │ │ │ ├── lp_sctap2.png
│ │ │ │ │ ├── lp_sctap3.png
│ │ │ │ │ ├── lp_share1b.png
│ │ │ │ │ ├── lp_share2b.png
│ │ │ │ │ ├── lp_shell.png
│ │ │ │ │ ├── lp_ship04l.png
│ │ │ │ │ ├── lp_ship04s.png
│ │ │ │ │ ├── lp_ship08l.png
│ │ │ │ │ ├── lp_ship08s.png
│ │ │ │ │ ├── lp_ship12l.png
│ │ │ │ │ ├── lp_ship12s.png
│ │ │ │ │ ├── lp_sierra.png
│ │ │ │ │ ├── lp_stair.png
│ │ │ │ │ ├── lp_standata.png
│ │ │ │ │ ├── lp_standgub.png
│ │ │ │ │ ├── lp_standmps.png
│ │ │ │ │ ├── lp_stocfor1.png
│ │ │ │ │ ├── lp_stocfor2.png
│ │ │ │ │ ├── lp_stocfor3.png
│ │ │ │ │ ├── lp_truss.png
│ │ │ │ │ ├── lp_tuff.png
│ │ │ │ │ ├── lp_vtp_base.png
│ │ │ │ │ ├── lp_wood1p.png
│ │ │ │ │ └── lp_woodw.png
│ │ │ │ ├── Lucifora
│ │ │ │ │ ├── cell1.png
│ │ │ │ │ └── cell2.png
│ │ │ │ ├── Luong
│ │ │ │ │ ├── photogrammetry2.png
│ │ │ │ │ └── photogrammetry.png
│ │ │ │ ├── Mallya
│ │ │ │ │ ├── lhr01.png
│ │ │ │ │ ├── lhr02.png
│ │ │ │ │ ├── lhr04c.png
│ │ │ │ │ ├── lhr04.png
│ │ │ │ │ ├── lhr07c.png
│ │ │ │ │ ├── lhr07.png
│ │ │ │ │ ├── lhr10c.png
│ │ │ │ │ ├── lhr10.png
│ │ │ │ │ ├── lhr11c.png
│ │ │ │ │ ├── lhr11.png
│ │ │ │ │ ├── lhr14c.png
│ │ │ │ │ ├── lhr14.png
│ │ │ │ │ ├── lhr17c.png
│ │ │ │ │ ├── lhr17.png
│ │ │ │ │ ├── lhr34c.png
│ │ │ │ │ ├── lhr34.png
│ │ │ │ │ ├── lhr71c.png
│ │ │ │ │ └── lhr71.png
│ │ │ │ ├── Mancktelow
│ │ │ │ │ └── viscorocks.png
│ │ │ │ ├── Marini
│ │ │ │ │ └── eurqsa.png
│ │ │ │ ├── MathWorks
│ │ │ │ │ ├── Harvard500.png
│ │ │ │ │ ├── Kaufhold.png
│ │ │ │ │ ├── Kuu.png
│ │ │ │ │ ├── Muu.png
│ │ │ │ │ ├── Pd.png
│ │ │ │ │ ├── Pd_rhs.png
│ │ │ │ │ ├── pivtol.png
│ │ │ │ │ ├── QRpivot.png
│ │ │ │ │ ├── Sieber.png
│ │ │ │ │ ├── tomography.png
│ │ │ │ │ └── TS.png
│ │ │ │ ├── MAWI
│ │ │ │ │ ├── mawi_201512012345.png
│ │ │ │ │ ├── mawi_201512020000.png
│ │ │ │ │ ├── mawi_201512020030.png
│ │ │ │ │ ├── mawi_201512020130.png
│ │ │ │ │ └── mawi_201512020330.png
│ │ │ │ ├── MaxPlanck
│ │ │ │ │ ├── shallow_water1.png
│ │ │ │ │ └── shallow_water2.png
│ │ │ │ ├── Mazaheri
│ │ │ │ │ └── bundle_adj.png
│ │ │ │ ├── McRae
│ │ │ │ │ ├── ecology1.png
│ │ │ │ │ └── ecology2.png
│ │ │ │ ├── Meng
│ │ │ │ │ └── iChem_Jacobian.png
│ │ │ │ ├── Meszaros
│ │ │ │ │ ├── aa01.png
│ │ │ │ │ ├── aa03.png
│ │ │ │ │ ├── aa3.png
│ │ │ │ │ ├── aa4.png
│ │ │ │ │ ├── aa5.png
│ │ │ │ │ ├── aa6.png
│ │ │ │ │ ├── air02.png
│ │ │ │ │ ├── air03.png
│ │ │ │ │ ├── air04.png
│ │ │ │ │ ├── air05.png
│ │ │ │ │ ├── air06.png
│ │ │ │ │ ├── aircraft.png
│ │ │ │ │ ├── bas1lp.png
│ │ │ │ │ ├── baxter.png
│ │ │ │ │ ├── car4.png
│ │ │ │ │ ├── cari.png
│ │ │ │ │ ├── cep1.png
│ │ │ │ │ ├── ch.png
│ │ │ │ │ ├── co5.png
│ │ │ │ │ ├── co9.png
│ │ │ │ │ ├── complex.png
│ │ │ │ │ ├── cq5.png
│ │ │ │ │ ├── cq9.png
│ │ │ │ │ ├── cr42.png
│ │ │ │ │ ├── crew1.png
│ │ │ │ │ ├── dano3mip.png
│ │ │ │ │ ├── dbic1.png
│ │ │ │ │ ├── dbir1.png
│ │ │ │ │ ├── dbir2.png
│ │ │ │ │ ├── de063155.png
│ │ │ │ │ ├── de063157.png
│ │ │ │ │ ├── de080285.png
│ │ │ │ │ ├── degme.png
│ │ │ │ │ ├── delf.png
│ │ │ │ │ ├── deter0.png
│ │ │ │ │ ├── deter1.png
│ │ │ │ │ ├── deter2.png
│ │ │ │ │ ├── deter3.png
│ │ │ │ │ ├── deter4.png
│ │ │ │ │ ├── deter5.png
│ │ │ │ │ ├── deter6.png
│ │ │ │ │ ├── deter7.png
│ │ │ │ │ ├── deter8.png
│ │ │ │ │ ├── df2177.png
│ │ │ │ │ ├── e18.png
│ │ │ │ │ ├── ex3sta1.png
│ │ │ │ │ ├── farm.png
│ │ │ │ │ ├── fxm2-16.png
│ │ │ │ │ ├── fxm2-6.png
│ │ │ │ │ ├── fxm3_16.png
│ │ │ │ │ ├── fxm3_6.png
│ │ │ │ │ ├── fxm4_6.png
│ │ │ │ │ ├── gams10am.png
│ │ │ │ │ ├── gams10a.png
│ │ │ │ │ ├── gams30am.png
│ │ │ │ │ ├── gams30a.png
│ │ │ │ │ ├── gams60am.png
│ │ │ │ │ ├── gas11.png
│ │ │ │ │ ├── gen1.png
│ │ │ │ │ ├── gen2.png
│ │ │ │ │ ├── gen4.png
│ │ │ │ │ ├── gen.png
│ │ │ │ │ ├── ge.png
│ │ │ │ │ ├── iiasa.png
│ │ │ │ │ ├── iprob.png
│ │ │ │ │ ├── jendrec1.png
│ │ │ │ │ ├── karted.png
│ │ │ │ │ ├── kl02.png
│ │ │ │ │ ├── kleemin.png
│ │ │ │ │ ├── l30.png
│ │ │ │ │ ├── l9.png
│ │ │ │ │ ├── large.png
│ │ │ │ │ ├── lp22.png
│ │ │ │ │ ├── lpl2.png
│ │ │ │ │ ├── lpl3.png
│ │ │ │ │ ├── mod2.png
│ │ │ │ │ ├── model10.png
│ │ │ │ │ ├── model1.png
│ │ │ │ │ ├── model2.png
│ │ │ │ │ ├── model3.png
│ │ │ │ │ ├── model4.png
│ │ │ │ │ ├── model5.png
│ │ │ │ │ ├── model6.png
│ │ │ │ │ ├── model7.png
│ │ │ │ │ ├── model8.png
│ │ │ │ │ ├── model9.png
│ │ │ │ │ ├── nemsafm.png
│ │ │ │ │ ├── nemscem.png
│ │ │ │ │ ├── nemsemm1.png
│ │ │ │ │ ├── nemsemm2.png
│ │ │ │ │ ├── nemspmm1.png
│ │ │ │ │ ├── nemspmm2.png
│ │ │ │ │ ├── nemswrld.png
│ │ │ │ │ ├── nl.png
│ │ │ │ │ ├── nsct.png
│ │ │ │ │ ├── nsic.png
│ │ │ │ │ ├── nsir.png
│ │ │ │ │ ├── nw14.png
│ │ │ │ │ ├── p0033.png
│ │ │ │ │ ├── p0040.png
│ │ │ │ │ ├── p010.png
│ │ │ │ │ ├── p0201.png
│ │ │ │ │ ├── p0282.png
│ │ │ │ │ ├── p0291.png
│ │ │ │ │ ├── p0548.png
│ │ │ │ │ ├── p05.png
│ │ │ │ │ ├── p2756.png
│ │ │ │ │ ├── p6000.png
│ │ │ │ │ ├── pcb1000.png
│ │ │ │ │ ├── pcb3000.png
│ │ │ │ │ ├── pf2177.png
│ │ │ │ │ ├── pgp2.png
│ │ │ │ │ ├── plddb.png
│ │ │ │ │ ├── pltexpa.png
│ │ │ │ │ ├── primagaz.png
│ │ │ │ │ ├── problem.png
│ │ │ │ │ ├── progas.png
│ │ │ │ │ ├── qiulp.png
│ │ │ │ │ ├── r05.png
│ │ │ │ │ ├── rat.png
│ │ │ │ │ ├── refine.png
│ │ │ │ │ ├── rlfddd.png
│ │ │ │ │ ├── rlfdual.png
│ │ │ │ │ ├── rlfprim.png
│ │ │ │ │ ├── rosen10.png
│ │ │ │ │ ├── rosen1.png
│ │ │ │ │ ├── rosen2.png
│ │ │ │ │ ├── rosen7.png
│ │ │ │ │ ├── rosen8.png
│ │ │ │ │ ├── route.png
│ │ │ │ │ ├── sc205-2r.png
│ │ │ │ │ ├── scagr7-2b.png
│ │ │ │ │ ├── scagr7-2c.png
│ │ │ │ │ ├── scagr7-2r.png
│ │ │ │ │ ├── scfxm1-2b.png
│ │ │ │ │ ├── scfxm1-2r.png
│ │ │ │ │ ├── scrs8-2b.png
│ │ │ │ │ ├── scrs8-2c.png
│ │ │ │ │ ├── scrs8-2r.png
│ │ │ │ │ ├── scsd8-2b.png
│ │ │ │ │ ├── scsd8-2c.png
│ │ │ │ │ ├── scsd8-2r.png
│ │ │ │ │ ├── sctap1-2b.png
│ │ │ │ │ ├── sctap1-2c.png
│ │ │ │ │ ├── sctap1-2r.png
│ │ │ │ │ ├── seymourl.png
│ │ │ │ │ ├── slptsk.png
│ │ │ │ │ ├── small.png
│ │ │ │ │ ├── south31.png
│ │ │ │ │ ├── stat96v1.png
│ │ │ │ │ ├── stat96v2.png
│ │ │ │ │ ├── stat96v3.png
│ │ │ │ │ ├── stat96v4.png
│ │ │ │ │ ├── stat96v5.png
│ │ │ │ │ ├── stoch_aircraft.png
│ │ │ │ │ ├── stormg2-125.png
│ │ │ │ │ ├── stormg2-27.png
│ │ │ │ │ ├── stormg2-8.png
│ │ │ │ │ ├── t0331-4l.png
│ │ │ │ │ ├── testbig.png
│ │ │ │ │ ├── tp-6.png
│ │ │ │ │ ├── ts-palko.png
│ │ │ │ │ ├── ulevimin.png
│ │ │ │ │ ├── us04.png
│ │ │ │ │ ├── world.png
│ │ │ │ │ └── zed.png
│ │ │ │ ├── Mittelmann
│ │ │ │ │ ├── cont11_l.png
│ │ │ │ │ ├── cont1_l.png
│ │ │ │ │ ├── fome11.png
│ │ │ │ │ ├── fome12.png
│ │ │ │ │ ├── fome13.png
│ │ │ │ │ ├── fome20.png
│ │ │ │ │ ├── fome21.png
│ │ │ │ │ ├── neos1.png
│ │ │ │ │ ├── neos2.png
│ │ │ │ │ ├── neos3.png
│ │ │ │ │ ├── neos.png
│ │ │ │ │ ├── nug08-3rd.png
│ │ │ │ │ ├── pds-100.png
│ │ │ │ │ ├── pds-30.png
│ │ │ │ │ ├── pds-40.png
│ │ │ │ │ ├── pds-50.png
│ │ │ │ │ ├── pds-60.png
│ │ │ │ │ ├── pds-70.png
│ │ │ │ │ ├── pds-80.png
│ │ │ │ │ ├── pds-90.png
│ │ │ │ │ ├── rail2586.png
│ │ │ │ │ ├── rail4284.png
│ │ │ │ │ ├── rail507.png
│ │ │ │ │ ├── rail516.png
│ │ │ │ │ ├── rail582.png
│ │ │ │ │ ├── sgpf5y6.png
│ │ │ │ │ ├── spal_004.png
│ │ │ │ │ ├── stormG2_1000.png
│ │ │ │ │ ├── watson_1.png
│ │ │ │ │ └── watson_2.png
│ │ │ │ ├── MKS
│ │ │ │ │ └── fp.png
│ │ │ │ ├── Moqri
│ │ │ │ │ └── MISKnowledgeMap.png
│ │ │ │ ├── Morandini
│ │ │ │ │ ├── robot.png
│ │ │ │ │ ├── rotor1.png
│ │ │ │ │ └── rotor2.png
│ │ │ │ ├── Muite
│ │ │ │ │ ├── Chebyshev1.png
│ │ │ │ │ ├── Chebyshev2.png
│ │ │ │ │ ├── Chebyshev3.png
│ │ │ │ │ └── Chebyshev4.png
│ │ │ │ ├── Mulvey
│ │ │ │ │ ├── finan512.png
│ │ │ │ │ └── pfinan512.png
│ │ │ │ ├── Mycielski
│ │ │ │ │ ├── mycielskian10.png
│ │ │ │ │ ├── mycielskian11.png
│ │ │ │ │ ├── mycielskian12.png
│ │ │ │ │ ├── mycielskian13.png
│ │ │ │ │ ├── mycielskian14.png
│ │ │ │ │ ├── mycielskian15.png
│ │ │ │ │ ├── mycielskian16.png
│ │ │ │ │ ├── mycielskian17.png
│ │ │ │ │ ├── mycielskian18.png
│ │ │ │ │ ├── mycielskian19.png
│ │ │ │ │ ├── mycielskian20.png
│ │ │ │ │ ├── mycielskian2.png
│ │ │ │ │ ├── mycielskian3.png
│ │ │ │ │ ├── mycielskian4.png
│ │ │ │ │ ├── mycielskian5.png
│ │ │ │ │ ├── mycielskian6.png
│ │ │ │ │ ├── mycielskian7.png
│ │ │ │ │ ├── mycielskian8.png
│ │ │ │ │ └── mycielskian9.png
│ │ │ │ ├── Nasa
│ │ │ │ │ ├── barth4.png
│ │ │ │ │ ├── barth5.png
│ │ │ │ │ ├── barth.png
│ │ │ │ │ ├── nasa1824.png
│ │ │ │ │ ├── nasa2146.png
│ │ │ │ │ ├── nasa2910.png
│ │ │ │ │ ├── nasa4704.png
│ │ │ │ │ ├── nasasrb.png
│ │ │ │ │ ├── pwt.png
│ │ │ │ │ ├── shuttle_eddy.png
│ │ │ │ │ └── skirt.png
│ │ │ │ ├── ND
│ │ │ │ │ ├── nd12k.png
│ │ │ │ │ ├── nd24k.png
│ │ │ │ │ ├── nd3k.png
│ │ │ │ │ └── nd6k.png
│ │ │ │ ├── Nemeth
│ │ │ │ │ ├── nemeth01.png
│ │ │ │ │ ├── nemeth02.png
│ │ │ │ │ ├── nemeth03.png
│ │ │ │ │ ├── nemeth04.png
│ │ │ │ │ ├── nemeth05.png
│ │ │ │ │ ├── nemeth06.png
│ │ │ │ │ ├── nemeth07.png
│ │ │ │ │ ├── nemeth08.png
│ │ │ │ │ ├── nemeth09.png
│ │ │ │ │ ├── nemeth10.png
│ │ │ │ │ ├── nemeth11.png
│ │ │ │ │ ├── nemeth12.png
│ │ │ │ │ ├── nemeth13.png
│ │ │ │ │ ├── nemeth14.png
│ │ │ │ │ ├── nemeth15.png
│ │ │ │ │ ├── nemeth16.png
│ │ │ │ │ ├── nemeth17.png
│ │ │ │ │ ├── nemeth18.png
│ │ │ │ │ ├── nemeth19.png
│ │ │ │ │ ├── nemeth20.png
│ │ │ │ │ ├── nemeth21.png
│ │ │ │ │ ├── nemeth22.png
│ │ │ │ │ ├── nemeth23.png
│ │ │ │ │ ├── nemeth24.png
│ │ │ │ │ ├── nemeth25.png
│ │ │ │ │ └── nemeth26.png
│ │ │ │ ├── Newman
│ │ │ │ │ ├── adjnoun.png
│ │ │ │ │ ├── as-22july06.png
│ │ │ │ │ ├── astro-ph.png
│ │ │ │ │ ├── celegansneural.png
│ │ │ │ │ ├── cond-mat-2003.png
│ │ │ │ │ ├── cond-mat-2005.png
│ │ │ │ │ ├── cond-mat.png
│ │ │ │ │ ├── dolphins.png
│ │ │ │ │ ├── football.png
│ │ │ │ │ ├── hep-th.png
│ │ │ │ │ ├── karate.png
│ │ │ │ │ ├── lesmis.png
│ │ │ │ │ ├── netscience.png
│ │ │ │ │ ├── polblogs.png
│ │ │ │ │ ├── polbooks.png
│ │ │ │ │ └── power.png
│ │ │ │ ├── Norris
│ │ │ │ │ ├── fv1.png
│ │ │ │ │ ├── fv2.png
│ │ │ │ │ ├── fv3.png
│ │ │ │ │ ├── heart1.png
│ │ │ │ │ ├── heart2.png
│ │ │ │ │ ├── heart3.png
│ │ │ │ │ ├── lung1.png
│ │ │ │ │ ├── lung2.png
│ │ │ │ │ ├── stomach.png
│ │ │ │ │ ├── torso1.png
│ │ │ │ │ ├── torso2.png
│ │ │ │ │ └── torso3.png
│ │ │ │ ├── NYPA
│ │ │ │ │ ├── Maragal_1.png
│ │ │ │ │ ├── Maragal_2.png
│ │ │ │ │ ├── Maragal_3.png
│ │ │ │ │ ├── Maragal_4.png
│ │ │ │ │ ├── Maragal_5.png
│ │ │ │ │ ├── Maragal_6.png
│ │ │ │ │ ├── Maragal_7.png
│ │ │ │ │ └── Maragal_8.png
│ │ │ │ ├── Oberwolfach
│ │ │ │ │ ├── bone010.png
│ │ │ │ │ ├── boneS01.png
│ │ │ │ │ ├── boneS10.png
│ │ │ │ │ ├── chipcool0.png
│ │ │ │ │ ├── chipcool1.png
│ │ │ │ │ ├── filter2D.png
│ │ │ │ │ ├── filter3D.png
│ │ │ │ │ ├── flowmeter0.png
│ │ │ │ │ ├── flowmeter5.png
│ │ │ │ │ ├── gas_sensor.png
│ │ │ │ │ ├── gyro_k.png
│ │ │ │ │ ├── gyro_m.png
│ │ │ │ │ ├── gyro.png
│ │ │ │ │ ├── inlet.png
│ │ │ │ │ ├── LF10000.png
│ │ │ │ │ ├── LF10.png
│ │ │ │ │ ├── LFAT5000.png
│ │ │ │ │ ├── LFAT5.png
│ │ │ │ │ ├── piston.png
│ │ │ │ │ ├── rail_1357.png
│ │ │ │ │ ├── rail_20209.png
│ │ │ │ │ ├── rail_5177.png
│ │ │ │ │ ├── rail_79841.png
│ │ │ │ │ ├── spiral.png
│ │ │ │ │ ├── t2dah_a.png
│ │ │ │ │ ├── t2dah_e.png
│ │ │ │ │ ├── t2dah.png
│ │ │ │ │ ├── t2dal_a.png
│ │ │ │ │ ├── t2dal_bci.png
│ │ │ │ │ ├── t2dal_e.png
│ │ │ │ │ ├── t2dal.png
│ │ │ │ │ ├── t3dh_a.png
│ │ │ │ │ ├── t3dh_e.png
│ │ │ │ │ ├── t3dh.png
│ │ │ │ │ ├── t3dl_a.png
│ │ │ │ │ ├── t3dl_e.png
│ │ │ │ │ ├── t3dl.png
│ │ │ │ │ └── windscreen.png
│ │ │ │ ├── Okunbor
│ │ │ │ │ ├── aft01.png
│ │ │ │ │ └── aft02.png
│ │ │ │ ├── Pajek
│ │ │ │ │ ├── California.png
│ │ │ │ │ ├── Cities.png
│ │ │ │ │ ├── CSphd.png
│ │ │ │ │ ├── dictionary28.png
│ │ │ │ │ ├── divorce.png
│ │ │ │ │ ├── EAT_RS.png
│ │ │ │ │ ├── EAT_SR.png
│ │ │ │ │ ├── EPA.png
│ │ │ │ │ ├── Erdos02.png
│ │ │ │ │ ├── Erdos971.png
│ │ │ │ │ ├── Erdos972.png
│ │ │ │ │ ├── Erdos981.png
│ │ │ │ │ ├── Erdos982.png
│ │ │ │ │ ├── Erdos991.png
│ │ │ │ │ ├── Erdos992.png
│ │ │ │ │ ├── EVA.png
│ │ │ │ │ ├── FA.png
│ │ │ │ │ ├── foldoc.png
│ │ │ │ │ ├── football.png
│ │ │ │ │ ├── GD00_a.png
│ │ │ │ │ ├── GD00_c.png
│ │ │ │ │ ├── GD01_Acap.png
│ │ │ │ │ ├── GD01_a.png
│ │ │ │ │ ├── GD01_b.png
│ │ │ │ │ ├── GD01_c.png
│ │ │ │ │ ├── GD02_a.png
│ │ │ │ │ ├── GD02_b.png
│ │ │ │ │ ├── GD06_Java.png
│ │ │ │ │ ├── GD06_theory.png
│ │ │ │ │ ├── GD95_a.png
│ │ │ │ │ ├── GD95_b.png
│ │ │ │ │ ├── GD95_c.png
│ │ │ │ │ ├── GD96_a.png
│ │ │ │ │ ├── GD96_b.png
│ │ │ │ │ ├── GD96_c.png
│ │ │ │ │ ├── GD96_d.png
│ │ │ │ │ ├── GD97_a.png
│ │ │ │ │ ├── GD97_b.png
│ │ │ │ │ ├── GD97_c.png
│ │ │ │ │ ├── GD98_a.png
│ │ │ │ │ ├── GD98_b.png
│ │ │ │ │ ├── GD98_c.png
│ │ │ │ │ ├── GD99_b.png
│ │ │ │ │ ├── GD99_c.png
│ │ │ │ │ ├── geom.png
│ │ │ │ │ ├── GlossGT.png
│ │ │ │ │ ├── HEP-th-new.png
│ │ │ │ │ ├── HEP-th.png
│ │ │ │ │ ├── IMDB.png
│ │ │ │ │ ├── internet.png
│ │ │ │ │ ├── Journals.png
│ │ │ │ │ ├── Kohonen.png
│ │ │ │ │ ├── Lederberg.png
│ │ │ │ │ ├── ODLIS.png
│ │ │ │ │ ├── patents_main.png
│ │ │ │ │ ├── patents.png
│ │ │ │ │ ├── Ragusa16.png
│ │ │ │ │ ├── Ragusa18.png
│ │ │ │ │ ├── Reuters911.png
│ │ │ │ │ ├── Roget.png
│ │ │ │ │ ├── Sandi_authors.png
│ │ │ │ │ ├── Sandi_sandi.png
│ │ │ │ │ ├── SciMet.png
│ │ │ │ │ ├── SmaGri.png
│ │ │ │ │ ├── SmallW.png
│ │ │ │ │ ├── Stranke94.png
│ │ │ │ │ ├── Tina_AskCal.png
│ │ │ │ │ ├── Tina_AskCog.png
│ │ │ │ │ ├── Tina_DisCal.png
│ │ │ │ │ ├── Tina_DisCog.png
│ │ │ │ │ ├── USAir97.png
│ │ │ │ │ ├── USpowerGrid.png
│ │ │ │ │ ├── Wordnet3.png
│ │ │ │ │ ├── WorldCities.png
│ │ │ │ │ ├── yeast.png
│ │ │ │ │ └── Zewail.png
│ │ │ │ ├── PARSEC
│ │ │ │ │ ├── benzene.png
│ │ │ │ │ ├── CO.png
│ │ │ │ │ ├── Ga10As10H30.png
│ │ │ │ │ ├── Ga19As19H42.png
│ │ │ │ │ ├── Ga3As3H12.png
│ │ │ │ │ ├── Ga41As41H72.png
│ │ │ │ │ ├── GaAsH6.png
│ │ │ │ │ ├── Ge87H76.png
│ │ │ │ │ ├── Ge99H100.png
│ │ │ │ │ ├── H2O.png
│ │ │ │ │ ├── Na5.png
│ │ │ │ │ ├── Si10H16.png
│ │ │ │ │ ├── Si2.png
│ │ │ │ │ ├── Si34H36.png
│ │ │ │ │ ├── Si41Ge41H72.png
│ │ │ │ │ ├── Si5H12.png
│ │ │ │ │ ├── Si87H76.png
│ │ │ │ │ ├── SiH4.png
│ │ │ │ │ ├── SiNa.png
│ │ │ │ │ ├── SiO2.png
│ │ │ │ │ └── SiO.png
│ │ │ │ ├── Pereyra
│ │ │ │ │ └── landmark.png
│ │ │ │ ├── POLYFLOW
│ │ │ │ │ ├── invextr1_new.png
│ │ │ │ │ └── mixtank_new.png
│ │ │ │ ├── Pothen
│ │ │ │ │ ├── barth4.png
│ │ │ │ │ ├── barth5.png
│ │ │ │ │ ├── barth.png
│ │ │ │ │ ├── bodyy4.png
│ │ │ │ │ ├── bodyy5.png
│ │ │ │ │ ├── bodyy6.png
│ │ │ │ │ ├── commanche_dual.png
│ │ │ │ │ ├── mesh1e1.png
│ │ │ │ │ ├── mesh1em1.png
│ │ │ │ │ ├── mesh1em6.png
│ │ │ │ │ ├── mesh2e1.png
│ │ │ │ │ ├── mesh2em5.png
│ │ │ │ │ ├── mesh3e1.png
│ │ │ │ │ ├── mesh3em5.png
│ │ │ │ │ ├── onera_dual.png
│ │ │ │ │ ├── pwt.png
│ │ │ │ │ ├── shuttle_eddy.png
│ │ │ │ │ ├── skirt.png
│ │ │ │ │ ├── sphere2.png
│ │ │ │ │ ├── sphere3.png
│ │ │ │ │ ├── tandem_dual.png
│ │ │ │ │ └── tandem_vtx.png
│ │ │ │ ├── PowerSystem
│ │ │ │ │ └── power197k.png
│ │ │ │ ├── Priebel
│ │ │ │ │ ├── 130bit.png
│ │ │ │ │ ├── 145bit.png
│ │ │ │ │ ├── 162bit.png
│ │ │ │ │ ├── 176bit.png
│ │ │ │ │ ├── 192bit.png
│ │ │ │ │ └── 208bit.png
│ │ │ │ ├── Puri
│ │ │ │ │ ├── ABACUS_shell_hd.png
│ │ │ │ │ ├── ABACUS_shell_ld.png
│ │ │ │ │ ├── ABACUS_shell_md.png
│ │ │ │ │ └── ABACUS_shell_ud.png
│ │ │ │ ├── Qaplib
│ │ │ │ │ ├── lp_nug05.png
│ │ │ │ │ ├── lp_nug06.png
│ │ │ │ │ ├── lp_nug07.png
│ │ │ │ │ ├── lp_nug08.png
│ │ │ │ │ ├── lp_nug12.png
│ │ │ │ │ ├── lp_nug15.png
│ │ │ │ │ ├── lp_nug20.png
│ │ │ │ │ └── lp_nug30.png
│ │ │ │ ├── QCD
│ │ │ │ │ ├── conf5_0-4x4-10.png
│ │ │ │ │ ├── conf5_0-4x4-14.png
│ │ │ │ │ ├── conf5_0-4x4-18.png
│ │ │ │ │ ├── conf5_0-4x4-22.png
│ │ │ │ │ ├── conf5_0-4x4-26.png
│ │ │ │ │ ├── conf5_4-8x8-05.png
│ │ │ │ │ ├── conf5_4-8x8-10.png
│ │ │ │ │ ├── conf5_4-8x8-15.png
│ │ │ │ │ ├── conf5_4-8x8-20.png
│ │ │ │ │ ├── conf6_0-4x4-20.png
│ │ │ │ │ ├── conf6_0-4x4-30.png
│ │ │ │ │ ├── conf6_0-8x8-20.png
│ │ │ │ │ ├── conf6_0-8x8-30.png
│ │ │ │ │ └── conf6_0-8x8-80.png
│ │ │ │ ├── QLi
│ │ │ │ │ ├── crashbasis.png
│ │ │ │ │ ├── largebasis.png
│ │ │ │ │ └── majorbasis.png
│ │ │ │ ├── Quaglino
│ │ │ │ │ ├── viscoplastic1.png
│ │ │ │ │ └── viscoplastic2.png
│ │ │ │ ├── QY
│ │ │ │ │ ├── case39.png
│ │ │ │ │ └── case9.png
│ │ │ │ ├── Rajat
│ │ │ │ │ ├── Raj1.png
│ │ │ │ │ ├── rajat01.png
│ │ │ │ │ ├── rajat02.png
│ │ │ │ │ ├── rajat03.png
│ │ │ │ │ ├── rajat04.png
│ │ │ │ │ ├── rajat05.png
│ │ │ │ │ ├── rajat06.png
│ │ │ │ │ ├── rajat07.png
│ │ │ │ │ ├── rajat08.png
│ │ │ │ │ ├── rajat09.png
│ │ │ │ │ ├── rajat10.png
│ │ │ │ │ ├── rajat11.png
│ │ │ │ │ ├── rajat12.png
│ │ │ │ │ ├── rajat13.png
│ │ │ │ │ ├── rajat14.png
│ │ │ │ │ ├── rajat15.png
│ │ │ │ │ ├── rajat16.png
│ │ │ │ │ ├── rajat17.png
│ │ │ │ │ ├── rajat18.png
│ │ │ │ │ ├── rajat19.png
│ │ │ │ │ ├── rajat20.png
│ │ │ │ │ ├── rajat21.png
│ │ │ │ │ ├── rajat22.png
│ │ │ │ │ ├── rajat23.png
│ │ │ │ │ ├── rajat24.png
│ │ │ │ │ ├── rajat25.png
│ │ │ │ │ ├── rajat26.png
│ │ │ │ │ ├── rajat27.png
│ │ │ │ │ ├── rajat28.png
│ │ │ │ │ ├── rajat29.png
│ │ │ │ │ ├── rajat30.png
│ │ │ │ │ └── rajat31.png
│ │ │ │ ├── Raju
│ │ │ │ │ └── laminar_duct3D.png
│ │ │ │ ├── Rommes
│ │ │ │ │ ├── bauru5727.png
│ │ │ │ │ ├── bips07_1693.png
│ │ │ │ │ ├── bips07_1998.png
│ │ │ │ │ ├── bips07_2476.png
│ │ │ │ │ ├── bips07_3078.png
│ │ │ │ │ ├── bips98_1142.png
│ │ │ │ │ ├── bips98_1450.png
│ │ │ │ │ ├── bips98_606.png
│ │ │ │ │ ├── descriptor_xingo6u.png
│ │ │ │ │ ├── juba40k.png
│ │ │ │ │ ├── M10PI_n1.png
│ │ │ │ │ ├── M10PI_n.png
│ │ │ │ │ ├── M20PI_n1.png
│ │ │ │ │ ├── M20PI_n.png
│ │ │ │ │ ├── M40PI_n1.png
│ │ │ │ │ ├── M40PI_n.png
│ │ │ │ │ ├── M80PI_n1.png
│ │ │ │ │ ├── M80PI_n.png
│ │ │ │ │ ├── mimo28x28_system.png
│ │ │ │ │ ├── mimo46x46_system.png
│ │ │ │ │ ├── mimo8x8_system.png
│ │ │ │ │ ├── nopss_11k.png
│ │ │ │ │ ├── S10PI_n1.png
│ │ │ │ │ ├── S10PI_n.png
│ │ │ │ │ ├── S20PI_n1.png
│ │ │ │ │ ├── S20PI_n.png
│ │ │ │ │ ├── S40PI_n1.png
│ │ │ │ │ ├── S40PI_n.png
│ │ │ │ │ ├── S80PI_n1.png
│ │ │ │ │ ├── S80PI_n.png
│ │ │ │ │ ├── ww_36_pmec_36.png
│ │ │ │ │ ├── ww_vref_6405.png
│ │ │ │ │ ├── xingo3012.png
│ │ │ │ │ ├── xingo_afonso_itaipu.png
│ │ │ │ │ └── zeros_nopss_13k.png
│ │ │ │ ├── Ronis
│ │ │ │ │ ├── xenon1.png
│ │ │ │ │ └── xenon2.png
│ │ │ │ ├── Rost
│ │ │ │ │ └── RFdevice.png
│ │ │ │ ├── Rothberg
│ │ │ │ │ ├── 3dtube.png
│ │ │ │ │ ├── cfd1.png
│ │ │ │ │ ├── cfd2.png
│ │ │ │ │ ├── gearbox.png
│ │ │ │ │ ├── struct3.png
│ │ │ │ │ └── struct4.png
│ │ │ │ ├── Rucci
│ │ │ │ │ └── Rucci1.png
│ │ │ │ ├── Rudnyi
│ │ │ │ │ └── water_tank.png
│ │ │ │ ├── Sandia
│ │ │ │ │ ├── adder_dcop_01.png
│ │ │ │ │ ├── adder_dcop_02.png
│ │ │ │ │ ├── adder_dcop_03.png
│ │ │ │ │ ├── adder_dcop_04.png
│ │ │ │ │ ├── adder_dcop_05.png
│ │ │ │ │ ├── adder_dcop_06.png
│ │ │ │ │ ├── adder_dcop_07.png
│ │ │ │ │ ├── adder_dcop_08.png
│ │ │ │ │ ├── adder_dcop_09.png
│ │ │ │ │ ├── adder_dcop_10.png
│ │ │ │ │ ├── adder_dcop_11.png
│ │ │ │ │ ├── adder_dcop_12.png
│ │ │ │ │ ├── adder_dcop_13.png
│ │ │ │ │ ├── adder_dcop_14.png
│ │ │ │ │ ├── adder_dcop_15.png
│ │ │ │ │ ├── adder_dcop_16.png
│ │ │ │ │ ├── adder_dcop_17.png
│ │ │ │ │ ├── adder_dcop_18.png
│ │ │ │ │ ├── adder_dcop_19.png
│ │ │ │ │ ├── adder_dcop_20.png
│ │ │ │ │ ├── adder_dcop_21.png
│ │ │ │ │ ├── adder_dcop_22.png
│ │ │ │ │ ├── adder_dcop_23.png
│ │ │ │ │ ├── adder_dcop_24.png
│ │ │ │ │ ├── adder_dcop_25.png
│ │ │ │ │ ├── adder_dcop_26.png
│ │ │ │ │ ├── adder_dcop_27.png
│ │ │ │ │ ├── adder_dcop_28.png
│ │ │ │ │ ├── adder_dcop_29.png
│ │ │ │ │ ├── adder_dcop_30.png
│ │ │ │ │ ├── adder_dcop_31.png
│ │ │ │ │ ├── adder_dcop_32.png
│ │ │ │ │ ├── adder_dcop_33.png
│ │ │ │ │ ├── adder_dcop_34.png
│ │ │ │ │ ├── adder_dcop_35.png
│ │ │ │ │ ├── adder_dcop_36.png
│ │ │ │ │ ├── adder_dcop_37.png
│ │ │ │ │ ├── adder_dcop_38.png
│ │ │ │ │ ├── adder_dcop_39.png
│ │ │ │ │ ├── adder_dcop_40.png
│ │ │ │ │ ├── adder_dcop_41.png
│ │ │ │ │ ├── adder_dcop_42.png
│ │ │ │ │ ├── adder_dcop_43.png
│ │ │ │ │ ├── adder_dcop_44.png
│ │ │ │ │ ├── adder_dcop_45.png
│ │ │ │ │ ├── adder_dcop_46.png
│ │ │ │ │ ├── adder_dcop_47.png
│ │ │ │ │ ├── adder_dcop_48.png
│ │ │ │ │ ├── adder_dcop_49.png
│ │ │ │ │ ├── adder_dcop_50.png
│ │ │ │ │ ├── adder_dcop_51.png
│ │ │ │ │ ├── adder_dcop_52.png
│ │ │ │ │ ├── adder_dcop_53.png
│ │ │ │ │ ├── adder_dcop_54.png
│ │ │ │ │ ├── adder_dcop_55.png
│ │ │ │ │ ├── adder_dcop_56.png
│ │ │ │ │ ├── adder_dcop_57.png
│ │ │ │ │ ├── adder_dcop_58.png
│ │ │ │ │ ├── adder_dcop_59.png
│ │ │ │ │ ├── adder_dcop_60.png
│ │ │ │ │ ├── adder_dcop_61.png
│ │ │ │ │ ├── adder_dcop_62.png
│ │ │ │ │ ├── adder_dcop_63.png
│ │ │ │ │ ├── adder_dcop_64.png
│ │ │ │ │ ├── adder_dcop_65.png
│ │ │ │ │ ├── adder_dcop_66.png
│ │ │ │ │ ├── adder_dcop_67.png
│ │ │ │ │ ├── adder_dcop_68.png
│ │ │ │ │ ├── adder_dcop_69.png
│ │ │ │ │ ├── adder_trans_01.png
│ │ │ │ │ ├── adder_trans_02.png
│ │ │ │ │ ├── ASIC_100k.png
│ │ │ │ │ ├── ASIC_100ks.png
│ │ │ │ │ ├── ASIC_320k.png
│ │ │ │ │ ├── ASIC_320ks.png
│ │ │ │ │ ├── ASIC_680k.png
│ │ │ │ │ ├── ASIC_680ks.png
│ │ │ │ │ ├── fpga_dcop_01.png
│ │ │ │ │ ├── fpga_dcop_02.png
│ │ │ │ │ ├── fpga_dcop_03.png
│ │ │ │ │ ├── fpga_dcop_04.png
│ │ │ │ │ ├── fpga_dcop_05.png
│ │ │ │ │ ├── fpga_dcop_06.png
│ │ │ │ │ ├── fpga_dcop_07.png
│ │ │ │ │ ├── fpga_dcop_08.png
│ │ │ │ │ ├── fpga_dcop_09.png
│ │ │ │ │ ├── fpga_dcop_10.png
│ │ │ │ │ ├── fpga_dcop_11.png
│ │ │ │ │ ├── fpga_dcop_12.png
│ │ │ │ │ ├── fpga_dcop_13.png
│ │ │ │ │ ├── fpga_dcop_14.png
│ │ │ │ │ ├── fpga_dcop_15.png
│ │ │ │ │ ├── fpga_dcop_16.png
│ │ │ │ │ ├── fpga_dcop_17.png
│ │ │ │ │ ├── fpga_dcop_18.png
│ │ │ │ │ ├── fpga_dcop_19.png
│ │ │ │ │ ├── fpga_dcop_20.png
│ │ │ │ │ ├── fpga_dcop_21.png
│ │ │ │ │ ├── fpga_dcop_22.png
│ │ │ │ │ ├── fpga_dcop_23.png
│ │ │ │ │ ├── fpga_dcop_24.png
│ │ │ │ │ ├── fpga_dcop_25.png
│ │ │ │ │ ├── fpga_dcop_26.png
│ │ │ │ │ ├── fpga_dcop_27.png
│ │ │ │ │ ├── fpga_dcop_28.png
│ │ │ │ │ ├── fpga_dcop_29.png
│ │ │ │ │ ├── fpga_dcop_30.png
│ │ │ │ │ ├── fpga_dcop_31.png
│ │ │ │ │ ├── fpga_dcop_32.png
│ │ │ │ │ ├── fpga_dcop_33.png
│ │ │ │ │ ├── fpga_dcop_34.png
│ │ │ │ │ ├── fpga_dcop_35.png
│ │ │ │ │ ├── fpga_dcop_36.png
│ │ │ │ │ ├── fpga_dcop_37.png
│ │ │ │ │ ├── fpga_dcop_38.png
│ │ │ │ │ ├── fpga_dcop_39.png
│ │ │ │ │ ├── fpga_dcop_40.png
│ │ │ │ │ ├── fpga_dcop_41.png
│ │ │ │ │ ├── fpga_dcop_42.png
│ │ │ │ │ ├── fpga_dcop_43.png
│ │ │ │ │ ├── fpga_dcop_44.png
│ │ │ │ │ ├── fpga_dcop_45.png
│ │ │ │ │ ├── fpga_dcop_46.png
│ │ │ │ │ ├── fpga_dcop_47.png
│ │ │ │ │ ├── fpga_dcop_48.png
│ │ │ │ │ ├── fpga_dcop_49.png
│ │ │ │ │ ├── fpga_dcop_50.png
│ │ │ │ │ ├── fpga_dcop_51.png
│ │ │ │ │ ├── fpga_trans_01.png
│ │ │ │ │ ├── fpga_trans_02.png
│ │ │ │ │ ├── init_adder1.png
│ │ │ │ │ ├── mult_dcop_01.png
│ │ │ │ │ ├── mult_dcop_02.png
│ │ │ │ │ ├── mult_dcop_03.png
│ │ │ │ │ ├── oscil_dcop_01.png
│ │ │ │ │ ├── oscil_dcop_02.png
│ │ │ │ │ ├── oscil_dcop_03.png
│ │ │ │ │ ├── oscil_dcop_04.png
│ │ │ │ │ ├── oscil_dcop_05.png
│ │ │ │ │ ├── oscil_dcop_06.png
│ │ │ │ │ ├── oscil_dcop_07.png
│ │ │ │ │ ├── oscil_dcop_08.png
│ │ │ │ │ ├── oscil_dcop_09.png
│ │ │ │ │ ├── oscil_dcop_10.png
│ │ │ │ │ ├── oscil_dcop_11.png
│ │ │ │ │ ├── oscil_dcop_12.png
│ │ │ │ │ ├── oscil_dcop_13.png
│ │ │ │ │ ├── oscil_dcop_14.png
│ │ │ │ │ ├── oscil_dcop_15.png
│ │ │ │ │ ├── oscil_dcop_16.png
│ │ │ │ │ ├── oscil_dcop_17.png
│ │ │ │ │ ├── oscil_dcop_18.png
│ │ │ │ │ ├── oscil_dcop_19.png
│ │ │ │ │ ├── oscil_dcop_20.png
│ │ │ │ │ ├── oscil_dcop_21.png
│ │ │ │ │ ├── oscil_dcop_22.png
│ │ │ │ │ ├── oscil_dcop_23.png
│ │ │ │ │ ├── oscil_dcop_24.png
│ │ │ │ │ ├── oscil_dcop_25.png
│ │ │ │ │ ├── oscil_dcop_26.png
│ │ │ │ │ ├── oscil_dcop_27.png
│ │ │ │ │ ├── oscil_dcop_28.png
│ │ │ │ │ ├── oscil_dcop_29.png
│ │ │ │ │ ├── oscil_dcop_30.png
│ │ │ │ │ ├── oscil_dcop_31.png
│ │ │ │ │ ├── oscil_dcop_32.png
│ │ │ │ │ ├── oscil_dcop_33.png
│ │ │ │ │ ├── oscil_dcop_34.png
│ │ │ │ │ ├── oscil_dcop_35.png
│ │ │ │ │ ├── oscil_dcop_36.png
│ │ │ │ │ ├── oscil_dcop_37.png
│ │ │ │ │ ├── oscil_dcop_38.png
│ │ │ │ │ ├── oscil_dcop_39.png
│ │ │ │ │ ├── oscil_dcop_40.png
│ │ │ │ │ ├── oscil_dcop_41.png
│ │ │ │ │ ├── oscil_dcop_42.png
│ │ │ │ │ ├── oscil_dcop_43.png
│ │ │ │ │ ├── oscil_dcop_44.png
│ │ │ │ │ ├── oscil_dcop_45.png
│ │ │ │ │ ├── oscil_dcop_46.png
│ │ │ │ │ ├── oscil_dcop_47.png
│ │ │ │ │ ├── oscil_dcop_48.png
│ │ │ │ │ ├── oscil_dcop_49.png
│ │ │ │ │ ├── oscil_dcop_50.png
│ │ │ │ │ ├── oscil_dcop_51.png
│ │ │ │ │ ├── oscil_dcop_52.png
│ │ │ │ │ ├── oscil_dcop_53.png
│ │ │ │ │ ├── oscil_dcop_54.png
│ │ │ │ │ ├── oscil_dcop_55.png
│ │ │ │ │ ├── oscil_dcop_56.png
│ │ │ │ │ ├── oscil_dcop_57.png
│ │ │ │ │ └── oscil_trans_01.png
│ │ │ │ ├── Sanghavi
│ │ │ │ │ └── ecl32.png
│ │ │ │ ├── Schenk
│ │ │ │ │ ├── nlpkkt120.png
│ │ │ │ │ ├── nlpkkt160.png
│ │ │ │ │ ├── nlpkkt200.png
│ │ │ │ │ ├── nlpkkt240.png
│ │ │ │ │ └── nlpkkt80.png
│ │ │ │ ├── Schenk_AFE
│ │ │ │ │ ├── af_0_k101.png
│ │ │ │ │ ├── af_1_k101.png
│ │ │ │ │ ├── af_2_k101.png
│ │ │ │ │ ├── af_3_k101.png
│ │ │ │ │ ├── af_4_k101.png
│ │ │ │ │ ├── af_5_k101.png
│ │ │ │ │ ├── af_shell10.png
│ │ │ │ │ ├── af_shell1.png
│ │ │ │ │ ├── af_shell2.png
│ │ │ │ │ ├── af_shell3.png
│ │ │ │ │ ├── af_shell4.png
│ │ │ │ │ ├── af_shell5.png
│ │ │ │ │ ├── af_shell6.png
│ │ │ │ │ ├── af_shell7.png
│ │ │ │ │ ├── af_shell8.png
│ │ │ │ │ └── af_shell9.png
│ │ │ │ ├── Schenk_IBMNA
│ │ │ │ │ ├── c-18.png
│ │ │ │ │ ├── c-19.png
│ │ │ │ │ ├── c-20.png
│ │ │ │ │ ├── c-21.png
│ │ │ │ │ ├── c-22.png
│ │ │ │ │ ├── c-23.png
│ │ │ │ │ ├── c-24.png
│ │ │ │ │ ├── c-25.png
│ │ │ │ │ ├── c-26.png
│ │ │ │ │ ├── c-27.png
│ │ │ │ │ ├── c-28.png
│ │ │ │ │ ├── c-29.png
│ │ │ │ │ ├── c-30.png
│ │ │ │ │ ├── c-31.png
│ │ │ │ │ ├── c-32.png
│ │ │ │ │ ├── c-33.png
│ │ │ │ │ ├── c-34.png
│ │ │ │ │ ├── c-35.png
│ │ │ │ │ ├── c-36.png
│ │ │ │ │ ├── c-37.png
│ │ │ │ │ ├── c-38.png
│ │ │ │ │ ├── c-39.png
│ │ │ │ │ ├── c-40.png
│ │ │ │ │ ├── c-41.png
│ │ │ │ │ ├── c-42.png
│ │ │ │ │ ├── c-43.png
│ │ │ │ │ ├── c-44.png
│ │ │ │ │ ├── c-45.png
│ │ │ │ │ ├── c-46.png
│ │ │ │ │ ├── c-47.png
│ │ │ │ │ ├── c-48.png
│ │ │ │ │ ├── c-49.png
│ │ │ │ │ ├── c-50.png
│ │ │ │ │ ├── c-51.png
│ │ │ │ │ ├── c-52.png
│ │ │ │ │ ├── c-53.png
│ │ │ │ │ ├── c-54.png
│ │ │ │ │ ├── c-56.png
│ │ │ │ │ ├── c-57.png
│ │ │ │ │ ├── c-60.png
│ │ │ │ │ ├── c-61.png
│ │ │ │ │ ├── c-62.png
│ │ │ │ │ ├── c-64b.png
│ │ │ │ │ ├── c-64.png
│ │ │ │ │ ├── c-65.png
│ │ │ │ │ ├── c-66b.png
│ │ │ │ │ ├── c-66.png
│ │ │ │ │ ├── c-67b.png
│ │ │ │ │ ├── c-67.png
│ │ │ │ │ ├── c-73b.png
│ │ │ │ │ ├── c-73.png
│ │ │ │ │ └── c-big.png
│ │ │ │ ├── Schenk_IBMSDS
│ │ │ │ │ ├── 2D_27628_bjtcai.png
│ │ │ │ │ ├── 2D_54019_highK.png
│ │ │ │ │ ├── 3D_28984_Tetra.png
│ │ │ │ │ ├── 3D_51448_3D.png
│ │ │ │ │ ├── ibm_matrix_2.png
│ │ │ │ │ ├── matrix_9.png
│ │ │ │ │ └── matrix-new_3.png
│ │ │ │ ├── Schenk_ISEI
│ │ │ │ │ ├── barrier2-10.png
│ │ │ │ │ ├── barrier2-11.png
│ │ │ │ │ ├── barrier2-12.png
│ │ │ │ │ ├── barrier2-1.png
│ │ │ │ │ ├── barrier2-2.png
│ │ │ │ │ ├── barrier2-3.png
│ │ │ │ │ ├── barrier2-4.png
│ │ │ │ │ ├── barrier2-9.png
│ │ │ │ │ ├── igbt3.png
│ │ │ │ │ ├── nmos3.png
│ │ │ │ │ ├── ohne2.png
│ │ │ │ │ ├── para-10.png
│ │ │ │ │ ├── para-4.png
│ │ │ │ │ ├── para-5.png
│ │ │ │ │ ├── para-6.png
│ │ │ │ │ ├── para-7.png
│ │ │ │ │ ├── para-8.png
│ │ │ │ │ └── para-9.png
│ │ │ │ ├── Schmid
│ │ │ │ │ ├── thermal1.png
│ │ │ │ │ └── thermal2.png
│ │ │ │ ├── Schulthess
│ │ │ │ │ ├── N_biocarta.png
│ │ │ │ │ ├── N_pid.png
│ │ │ │ │ └── N_reactome.png
│ │ │ │ ├── Shen
│ │ │ │ │ ├── e40r0100.png
│ │ │ │ │ ├── shermanACa.png
│ │ │ │ │ ├── shermanACb.png
│ │ │ │ │ └── shermanACd.png
│ │ │ │ ├── Shyy
│ │ │ │ │ ├── shyy161.png
│ │ │ │ │ └── shyy41.png
│ │ │ │ ├── Simon
│ │ │ │ │ ├── appu.png
│ │ │ │ │ ├── bbmat.png
│ │ │ │ │ ├── olafu.png
│ │ │ │ │ ├── raefsky1.png
│ │ │ │ │ ├── raefsky2.png
│ │ │ │ │ ├── raefsky3.png
│ │ │ │ │ ├── raefsky4.png
│ │ │ │ │ ├── raefsky5.png
│ │ │ │ │ ├── raefsky6.png
│ │ │ │ │ ├── venkat01.png
│ │ │ │ │ ├── venkat25.png
│ │ │ │ │ └── venkat50.png
│ │ │ │ ├── Sinclair
│ │ │ │ │ ├── 3Dspectralwave2.png
│ │ │ │ │ └── 3Dspectralwave.png
│ │ │ │ ├── SNAP
│ │ │ │ │ ├── amazon0302.png
│ │ │ │ │ ├── amazon0312.png
│ │ │ │ │ ├── amazon0505.png
│ │ │ │ │ ├── amazon0601.png
│ │ │ │ │ ├── as-735.png
│ │ │ │ │ ├── as-caida.png
│ │ │ │ │ ├── as-Skitter.png
│ │ │ │ │ ├── ca-AstroPh.png
│ │ │ │ │ ├── ca-CondMat.png
│ │ │ │ │ ├── ca-GrQc.png
│ │ │ │ │ ├── ca-HepPh.png
│ │ │ │ │ ├── ca-HepTh.png
│ │ │ │ │ ├── cit-HepPh.png
│ │ │ │ │ ├── cit-HepTh.png
│ │ │ │ │ ├── cit-Patents.png
│ │ │ │ │ ├── CollegeMsg.png
│ │ │ │ │ ├── com-Amazon.png
│ │ │ │ │ ├── com-DBLP.png
│ │ │ │ │ ├── com-Friendster.png
│ │ │ │ │ ├── com-LiveJournal.png
│ │ │ │ │ ├── com-Orkut.png
│ │ │ │ │ ├── com-Youtube.png
│ │ │ │ │ ├── email-Enron.png
│ │ │ │ │ ├── email-EuAll.png
│ │ │ │ │ ├── email-Eu-core.png
│ │ │ │ │ ├── email-Eu-core-temporal.png
│ │ │ │ │ ├── higgs-twitter.png
│ │ │ │ │ ├── loc-Brightkite.png
│ │ │ │ │ ├── loc-Gowalla.png
│ │ │ │ │ ├── Oregon-1.png
│ │ │ │ │ ├── Oregon-2.png
│ │ │ │ │ ├── p2p-Gnutella04.png
│ │ │ │ │ ├── p2p-Gnutella05.png
│ │ │ │ │ ├── p2p-Gnutella06.png
│ │ │ │ │ ├── p2p-Gnutella08.png
│ │ │ │ │ ├── p2p-Gnutella09.png
│ │ │ │ │ ├── p2p-Gnutella24.png
│ │ │ │ │ ├── p2p-Gnutella25.png
│ │ │ │ │ ├── p2p-Gnutella30.png
│ │ │ │ │ ├── p2p-Gnutella31.png
│ │ │ │ │ ├── roadNet-CA.png
│ │ │ │ │ ├── roadNet-PA.png
│ │ │ │ │ ├── roadNet-TX.png
│ │ │ │ │ ├── soc-Epinions1.png
│ │ │ │ │ ├── soc-LiveJournal1.png
│ │ │ │ │ ├── soc-Pokec.png
│ │ │ │ │ ├── soc-sign-bitcoin-alpha.png
│ │ │ │ │ ├── soc-sign-bitcoin-otc.png
│ │ │ │ │ ├── soc-sign-epinions.png
│ │ │ │ │ ├── soc-sign-Slashdot081106.png
│ │ │ │ │ ├── soc-sign-Slashdot090216.png
│ │ │ │ │ ├── soc-sign-Slashdot090221.png
│ │ │ │ │ ├── soc-Slashdot0811.png
│ │ │ │ │ ├── soc-Slashdot0902.png
│ │ │ │ │ ├── sx-askubuntu.png
│ │ │ │ │ ├── sx-mathoverflow.png
│ │ │ │ │ ├── sx-stackoverflow.png
│ │ │ │ │ ├── sx-superuser.png
│ │ │ │ │ ├── twitter7.png
│ │ │ │ │ ├── web-BerkStan.png
│ │ │ │ │ ├── web-Google.png
│ │ │ │ │ ├── web-NotreDame.png
│ │ │ │ │ ├── web-Stanford.png
│ │ │ │ │ ├── wiki-RfA.png
│ │ │ │ │ ├── wiki-Talk.png
│ │ │ │ │ ├── wiki-talk-temporal.png
│ │ │ │ │ ├── wiki-topcats.png
│ │ │ │ │ └── wiki-Vote.png
│ │ │ │ ├── Sorensen
│ │ │ │ │ └── Linux_call_graph.png
│ │ │ │ ├── Springer
│ │ │ │ │ └── ESOC.png
│ │ │ │ ├── ss_index.mat
│ │ │ │ ├── ssstats.csv
│ │ │ │ ├── Stevenson
│ │ │ │ │ └── LargeRegFile.png
│ │ │ │ ├── Sumner
│ │ │ │ │ └── graphics.png
│ │ │ │ ├── Sybrandt
│ │ │ │ │ └── MOLIERE_2016.png
│ │ │ │ ├── Szczerba
│ │ │ │ │ └── Ill_Stokes.png
│ │ │ │ ├── TAMU_SmartGridCenter
│ │ │ │ │ ├── ACTIVSg10K.png
│ │ │ │ │ ├── ACTIVSg2000.png
│ │ │ │ │ └── ACTIVSg70K.png
│ │ │ │ ├── TKK
│ │ │ │ │ ├── cbuckle.png
│ │ │ │ │ ├── cyl6.png
│ │ │ │ │ ├── engine.png
│ │ │ │ │ ├── g3rmt3m3.png
│ │ │ │ │ ├── plbuckle.png
│ │ │ │ │ ├── s4dkt3m2.png
│ │ │ │ │ ├── smt.png
│ │ │ │ │ ├── t2d_q4.png
│ │ │ │ │ ├── t2d_q9.png
│ │ │ │ │ ├── t520.png
│ │ │ │ │ ├── tube1.png
│ │ │ │ │ └── tube2.png
│ │ │ │ ├── TOKAMAK
│ │ │ │ │ ├── utm1700b.png
│ │ │ │ │ ├── utm300.png
│ │ │ │ │ ├── utm3060.png
│ │ │ │ │ └── utm5940.png
│ │ │ │ ├── Toledo
│ │ │ │ │ └── deltaX.png
│ │ │ │ ├── Tromble
│ │ │ │ │ └── language.png
│ │ │ │ ├── TSOPF
│ │ │ │ │ ├── TSOPF_FS_b162_c1.png
│ │ │ │ │ ├── TSOPF_FS_b162_c3.png
│ │ │ │ │ ├── TSOPF_FS_b162_c4.png
│ │ │ │ │ ├── TSOPF_FS_b300_c1.png
│ │ │ │ │ ├── TSOPF_FS_b300_c2.png
│ │ │ │ │ ├── TSOPF_FS_b300_c3.png
│ │ │ │ │ ├── TSOPF_FS_b300.png
│ │ │ │ │ ├── TSOPF_FS_b39_c19.png
│ │ │ │ │ ├── TSOPF_FS_b39_c30.png
│ │ │ │ │ ├── TSOPF_FS_b39_c7.png
│ │ │ │ │ ├── TSOPF_FS_b9_c1.png
│ │ │ │ │ ├── TSOPF_FS_b9_c6.png
│ │ │ │ │ ├── TSOPF_RS_b162_c1.png
│ │ │ │ │ ├── TSOPF_RS_b162_c3.png
│ │ │ │ │ ├── TSOPF_RS_b162_c4.png
│ │ │ │ │ ├── TSOPF_RS_b2052_c1.png
│ │ │ │ │ ├── TSOPF_RS_b2383_c1.png
│ │ │ │ │ ├── TSOPF_RS_b2383.png
│ │ │ │ │ ├── TSOPF_RS_b300_c1.png
│ │ │ │ │ ├── TSOPF_RS_b300_c2.png
│ │ │ │ │ ├── TSOPF_RS_b300_c3.png
│ │ │ │ │ ├── TSOPF_RS_b39_c19.png
│ │ │ │ │ ├── TSOPF_RS_b39_c30.png
│ │ │ │ │ ├── TSOPF_RS_b39_c7.png
│ │ │ │ │ ├── TSOPF_RS_b678_c1.png
│ │ │ │ │ ├── TSOPF_RS_b678_c2.png
│ │ │ │ │ └── TSOPF_RS_b9_c6.png
│ │ │ │ ├── Um
│ │ │ │ │ ├── 2cubes_sphere.png
│ │ │ │ │ └── offshore.png
│ │ │ │ ├── UTEP
│ │ │ │ │ ├── Dubcova1.png
│ │ │ │ │ ├── Dubcova2.png
│ │ │ │ │ └── Dubcova3.png
│ │ │ │ ├── vanHeukelum
│ │ │ │ │ ├── cage10.png
│ │ │ │ │ ├── cage11.png
│ │ │ │ │ ├── cage12.png
│ │ │ │ │ ├── cage13.png
│ │ │ │ │ ├── cage14.png
│ │ │ │ │ ├── cage15.png
│ │ │ │ │ ├── cage3.png
│ │ │ │ │ ├── cage4.png
│ │ │ │ │ ├── cage5.png
│ │ │ │ │ ├── cage6.png
│ │ │ │ │ ├── cage7.png
│ │ │ │ │ ├── cage8.png
│ │ │ │ │ └── cage9.png
│ │ │ │ ├── VanVelzen
│ │ │ │ │ ├── std1_Jac2_db.png
│ │ │ │ │ ├── std1_Jac2.png
│ │ │ │ │ ├── std1_Jac3_db.png
│ │ │ │ │ ├── std1_Jac3.png
│ │ │ │ │ ├── Zd_Jac2_db.png
│ │ │ │ │ ├── Zd_Jac2.png
│ │ │ │ │ ├── Zd_Jac3_db.png
│ │ │ │ │ ├── Zd_Jac3.png
│ │ │ │ │ ├── Zd_Jac6_db.png
│ │ │ │ │ └── Zd_Jac6.png
│ │ │ │ ├── Vavasis
│ │ │ │ │ └── av41092.png
│ │ │ │ ├── VDOL
│ │ │ │ │ ├── dynamicSoaringProblem_1.png
│ │ │ │ │ ├── dynamicSoaringProblem_2.png
│ │ │ │ │ ├── dynamicSoaringProblem_3.png
│ │ │ │ │ ├── dynamicSoaringProblem_4.png
│ │ │ │ │ ├── dynamicSoaringProblem_5.png
│ │ │ │ │ ├── dynamicSoaringProblem_6.png
│ │ │ │ │ ├── dynamicSoaringProblem_7.png
│ │ │ │ │ ├── dynamicSoaringProblem_8.png
│ │ │ │ │ ├── freeFlyingRobot_10.png
│ │ │ │ │ ├── freeFlyingRobot_11.png
│ │ │ │ │ ├── freeFlyingRobot_12.png
│ │ │ │ │ ├── freeFlyingRobot_13.png
│ │ │ │ │ ├── freeFlyingRobot_14.png
│ │ │ │ │ ├── freeFlyingRobot_15.png
│ │ │ │ │ ├── freeFlyingRobot_16.png
│ │ │ │ │ ├── freeFlyingRobot_1.png
│ │ │ │ │ ├── freeFlyingRobot_2.png
│ │ │ │ │ ├── freeFlyingRobot_3.png
│ │ │ │ │ ├── freeFlyingRobot_4.png
│ │ │ │ │ ├── freeFlyingRobot_5.png
│ │ │ │ │ ├── freeFlyingRobot_6.png
│ │ │ │ │ ├── freeFlyingRobot_7.png
│ │ │ │ │ ├── freeFlyingRobot_8.png
│ │ │ │ │ ├── freeFlyingRobot_9.png
│ │ │ │ │ ├── goddardRocketProblem_1.png
│ │ │ │ │ ├── goddardRocketProblem_2.png
│ │ │ │ │ ├── hangGlider_1.png
│ │ │ │ │ ├── hangGlider_2.png
│ │ │ │ │ ├── hangGlider_3.png
│ │ │ │ │ ├── hangGlider_4.png
│ │ │ │ │ ├── hangGlider_5.png
│ │ │ │ │ ├── kineticBatchReactor_1.png
│ │ │ │ │ ├── kineticBatchReactor_2.png
│ │ │ │ │ ├── kineticBatchReactor_3.png
│ │ │ │ │ ├── kineticBatchReactor_4.png
│ │ │ │ │ ├── kineticBatchReactor_5.png
│ │ │ │ │ ├── kineticBatchReactor_6.png
│ │ │ │ │ ├── kineticBatchReactor_7.png
│ │ │ │ │ ├── kineticBatchReactor_8.png
│ │ │ │ │ ├── kineticBatchReactor_9.png
│ │ │ │ │ ├── lowThrust_10.png
│ │ │ │ │ ├── lowThrust_11.png
│ │ │ │ │ ├── lowThrust_12.png
│ │ │ │ │ ├── lowThrust_13.png
│ │ │ │ │ ├── lowThrust_1.png
│ │ │ │ │ ├── lowThrust_2.png
│ │ │ │ │ ├── lowThrust_3.png
│ │ │ │ │ ├── lowThrust_4.png
│ │ │ │ │ ├── lowThrust_5.png
│ │ │ │ │ ├── lowThrust_6.png
│ │ │ │ │ ├── lowThrust_7.png
│ │ │ │ │ ├── lowThrust_8.png
│ │ │ │ │ ├── lowThrust_9.png
│ │ │ │ │ ├── orbitRaising_1.png
│ │ │ │ │ ├── orbitRaising_2.png
│ │ │ │ │ ├── orbitRaising_3.png
│ │ │ │ │ ├── orbitRaising_4.png
│ │ │ │ │ ├── reorientation_1.png
│ │ │ │ │ ├── reorientation_2.png
│ │ │ │ │ ├── reorientation_3.png
│ │ │ │ │ ├── reorientation_4.png
│ │ │ │ │ ├── reorientation_5.png
│ │ │ │ │ ├── reorientation_6.png
│ │ │ │ │ ├── reorientation_7.png
│ │ │ │ │ ├── reorientation_8.png
│ │ │ │ │ ├── spaceShuttleEntry_1.png
│ │ │ │ │ ├── spaceShuttleEntry_2.png
│ │ │ │ │ ├── spaceShuttleEntry_3.png
│ │ │ │ │ ├── spaceShuttleEntry_4.png
│ │ │ │ │ ├── spaceStation_10.png
│ │ │ │ │ ├── spaceStation_11.png
│ │ │ │ │ ├── spaceStation_12.png
│ │ │ │ │ ├── spaceStation_13.png
│ │ │ │ │ ├── spaceStation_14.png
│ │ │ │ │ ├── spaceStation_1.png
│ │ │ │ │ ├── spaceStation_2.png
│ │ │ │ │ ├── spaceStation_3.png
│ │ │ │ │ ├── spaceStation_4.png
│ │ │ │ │ ├── spaceStation_5.png
│ │ │ │ │ ├── spaceStation_6.png
│ │ │ │ │ ├── spaceStation_7.png
│ │ │ │ │ ├── spaceStation_8.png
│ │ │ │ │ ├── spaceStation_9.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_1.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_2.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_3.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_4.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_5.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_6.png
│ │ │ │ │ ├── tumorAntiAngiogenesis_7.png
│ │ │ │ │ └── tumorAntiAngiogenesis_8.png
│ │ │ │ ├── Wang
│ │ │ │ │ ├── swang1.png
│ │ │ │ │ ├── swang2.png
│ │ │ │ │ ├── wang1.png
│ │ │ │ │ ├── wang2.png
│ │ │ │ │ ├── wang3.png
│ │ │ │ │ └── wang4.png
│ │ │ │ ├── Watson
│ │ │ │ │ ├── Baumann.png
│ │ │ │ │ └── chem_master1.png
│ │ │ │ ├── Williams
│ │ │ │ │ ├── cant.png
│ │ │ │ │ ├── consph.png
│ │ │ │ │ ├── cop20k_A.png
│ │ │ │ │ ├── mac_econ_fwd500.png
│ │ │ │ │ ├── mc2depi.png
│ │ │ │ │ ├── pdb1HYS.png
│ │ │ │ │ └── webbase-1M.png
│ │ │ │ ├── Wissgott
│ │ │ │ │ └── parabolic_fem.png
│ │ │ │ ├── YCheng
│ │ │ │ │ ├── psse0.png
│ │ │ │ │ ├── psse1.png
│ │ │ │ │ └── psse2.png
│ │ │ │ ├── Yoshiyasu
│ │ │ │ │ ├── image_interp.png
│ │ │ │ │ └── mesh_deform.png
│ │ │ │ ├── YZhou
│ │ │ │ │ └── circuit204.png
│ │ │ │ ├── Zaoui
│ │ │ │ │ └── kkt_power.png
│ │ │ │ ├── Zhao
│ │ │ │ │ ├── Zhao1.png
│ │ │ │ │ └── Zhao2.png
│ │ │ │ └── Zitney
│ │ │ │ ├── extr1b.png
│ │ │ │ ├── extr1.png
│ │ │ │ ├── hydr1c.png
│ │ │ │ ├── hydr1.png
│ │ │ │ ├── radfr1.png
│ │ │ │ ├── rdist1.png
│ │ │ │ ├── rdist2.png
│ │ │ │ └── rdist3a.png
│ │ │ ├── Makefile
│ │ │ ├── mat
│ │ │ ├── MM
│ │ │ ├── RB
│ │ │ ├── README.txt
│ │ │ ├── ssget_defaults.m
│ │ │ ├── ssget_example.m
│ │ │ ├── ssget_lookup.m
│ │ │ ├── ssget.m
│ │ │ ├── ssgrep.m
│ │ │ ├── ssgui.jar
│ │ │ ├── ssgui.java
│ │ │ ├── sshelp.html
│ │ │ ├── sskinds.m
│ │ │ ├── sssvd.m
│ │ │ ├── ssweb.m
│ │ │ ├── svd
│ │ │ ├── UFget.m
│ │ │ └── UFkinds.m
│ │ ├── SuiteSparse_config
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── README.txt
│ │ │ ├── SuiteSparse_config.c
│ │ │ ├── SuiteSparse_config.h
│ │ │ ├── SuiteSparse_config.mk
│ │ │ └── xerbla
│ │ │ ├── Makefile
│ │ │ ├── xerbla.c
│ │ │ ├── xerbla.f
│ │ │ └── xerbla.h
│ │ ├── SuiteSparse_demo.m
│ │ ├── SuiteSparse_GPURuntime
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Doc
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── gpl.txt
│ │ │ │ └── License.txt
│ │ │ ├── Include
│ │ │ │ ├── SuiteSparseGPU_debug.hpp
│ │ │ │ ├── SuiteSparseGPU_macros.hpp
│ │ │ │ ├── SuiteSparseGPU_Runtime.hpp
│ │ │ │ ├── SuiteSparseGPU_Workspace.hpp
│ │ │ │ └── SuiteSparseGPU_workspace_macros.hpp
│ │ │ ├── Lib
│ │ │ │ └── Makefile
│ │ │ ├── Makefile
│ │ │ ├── README.txt
│ │ │ └── Source
│ │ │ ├── SuiteSparseGPU_Workspace.cpp
│ │ │ ├── SuiteSparseGPU_Workspace_cpuAllocators.cpp
│ │ │ ├── SuiteSparseGPU_Workspace_gpuAllocators.cpp
│ │ │ └── SuiteSparseGPU_Workspace_transfer.cpp
│ │ ├── SuiteSparse_install.m
│ │ ├── SuiteSparse_test.m
│ │ └── UMFPACK
│ │ ├── CMakeLists.txt
│ │ ├── Demo
│ │ │ ├── dodefault
│ │ │ ├── dospd
│ │ │ ├── HB
│ │ │ │ ├── arc130.rua
│ │ │ │ ├── can_24.psa
│ │ │ │ ├── fs_183_6.rua
│ │ │ │ ├── qc324.cua
│ │ │ │ └── west0067.rua
│ │ │ ├── Makefile
│ │ │ ├── readhb.f
│ │ │ ├── readhb_nozeros.f
│ │ │ ├── readhb_size.f
│ │ │ ├── simple_compile
│ │ │ ├── tmp
│ │ │ ├── umf4.c
│ │ │ ├── umf4_f77wrapper.c
│ │ │ ├── umf4_f77zwrapper.c
│ │ │ ├── umf4hb64.f
│ │ │ ├── umf4hb64.out
│ │ │ ├── umf4hb.f
│ │ │ ├── umf4hb.out
│ │ │ ├── umf4.out
│ │ │ ├── umf4zhb.f
│ │ │ ├── umf4zhb.out
│ │ │ ├── umfpack_di_demo.c
│ │ │ ├── umfpack_di_demo.out
│ │ │ ├── umfpack_di_demo.sed
│ │ │ ├── umfpack_dl_demo.c
│ │ │ ├── umfpack_dl_demo.out
│ │ │ ├── umfpack_dl_demo.sed
│ │ │ ├── umfpack_simple.c
│ │ │ ├── umfpack_xx_demo.c
│ │ │ ├── umfpack_zi_demo.c
│ │ │ ├── umfpack_zi_demo.out
│ │ │ ├── umfpack_zi_demo.sed
│ │ │ ├── umfpack_zl_demo.c
│ │ │ ├── umfpack_zl_demo.out
│ │ │ └── umfpack_zl_demo.sed
│ │ ├── Doc
│ │ │ ├── ChangeLog
│ │ │ ├── gpl.txt
│ │ │ ├── License.txt
│ │ │ ├── Makefile
│ │ │ ├── UMFPACK_QuickStart.pdf
│ │ │ ├── UMFPACK_QuickStart.tex
│ │ │ ├── UMFPACK_UserGuide.pdf
│ │ │ ├── UMFPACK_UserGuide.stex
│ │ │ ├── UserGuide.bib
│ │ │ ├── UserGuide.sed1
│ │ │ └── UserGuide.sed2
│ │ ├── Include
│ │ │ ├── umfpack_col_to_triplet.h
│ │ │ ├── umfpack_defaults.h
│ │ │ ├── umfpack_free_numeric.h
│ │ │ ├── umfpack_free_symbolic.h
│ │ │ ├── umfpack_get_determinant.h
│ │ │ ├── umfpack_get_lunz.h
│ │ │ ├── umfpack_get_numeric.h
│ │ │ ├── umfpack_get_symbolic.h
│ │ │ ├── umfpack_global.h
│ │ │ ├── umfpack.h
│ │ │ ├── umfpack_load_numeric.h
│ │ │ ├── umfpack_load_symbolic.h
│ │ │ ├── umfpack_numeric.h
│ │ │ ├── umfpack_qsymbolic.h
│ │ │ ├── umfpack_report_control.h
│ │ │ ├── umfpack_report_info.h
│ │ │ ├── umfpack_report_matrix.h
│ │ │ ├── umfpack_report_numeric.h
│ │ │ ├── umfpack_report_perm.h
│ │ │ ├── umfpack_report_status.h
│ │ │ ├── umfpack_report_symbolic.h
│ │ │ ├── umfpack_report_triplet.h
│ │ │ ├── umfpack_report_vector.h
│ │ │ ├── umfpack_save_numeric.h
│ │ │ ├── umfpack_save_symbolic.h
│ │ │ ├── umfpack_scale.h
│ │ │ ├── umfpack_solve.h
│ │ │ ├── umfpack_symbolic.h
│ │ │ ├── umfpack_tictoc.h
│ │ │ ├── umfpack_timer.h
│ │ │ ├── umfpack_transpose.h
│ │ │ ├── umfpack_triplet_to_col.h
│ │ │ └── umfpack_wsolve.h
│ │ ├── Lib
│ │ │ └── Makefile
│ │ ├── Makefile
│ │ ├── makefile2wrappers.txt
│ │ ├── MATLAB
│ │ │ ├── Contents.m
│ │ │ ├── luflop.m
│ │ │ ├── luflopmex.c
│ │ │ ├── lu_normest.m
│ │ │ ├── Makefile
│ │ │ ├── umfpack2.m
│ │ │ ├── umfpack_btf.m
│ │ │ ├── umfpack_demo.m
│ │ │ ├── umfpack_demo.m.out
│ │ │ ├── umfpack_details.m
│ │ │ ├── umfpack_install.m
│ │ │ ├── umfpack.m
│ │ │ ├── umfpack_make.m
│ │ │ ├── umfpackmex.c
│ │ │ ├── umfpack_report.m
│ │ │ ├── umfpack_simple.m
│ │ │ ├── umfpack_simple.m.out
│ │ │ ├── umfpack_solve.m
│ │ │ ├── umfpack_test2.m
│ │ │ ├── umfpack_test.m
│ │ │ ├── west0067_triplet
│ │ │ └── west.mat
│ │ ├── README.txt
│ │ ├── Source
│ │ │ ├── cholmod_blas.h
│ │ │ ├── umf_analyze.c
│ │ │ ├── umf_analyze.h
│ │ │ ├── umf_apply_order.c
│ │ │ ├── umf_apply_order.h
│ │ │ ├── umf_assemble.c
│ │ │ ├── umf_assemble.h
│ │ │ ├── umf_blas3_update.c
│ │ │ ├── umf_blas3_update.h
│ │ │ ├── umf_build_tuples.c
│ │ │ ├── umf_build_tuples.h
│ │ │ ├── umf_cholmod.c
│ │ │ ├── umf_cholmod.h
│ │ │ ├── umf_colamd.c
│ │ │ ├── umf_colamd.h
│ │ │ ├── umf_config.h
│ │ │ ├── umf_create_element.c
│ │ │ ├── umf_create_element.h
│ │ │ ├── umf_dump.c
│ │ │ ├── umf_dump.h
│ │ │ ├── umf_extend_front.c
│ │ │ ├── umf_extend_front.h
│ │ │ ├── umf_free.c
│ │ │ ├── umf_free.h
│ │ │ ├── umf_fsize.c
│ │ │ ├── umf_fsize.h
│ │ │ ├── umf_garbage_collection.c
│ │ │ ├── umf_garbage_collection.h
│ │ │ ├── umf_get_memory.c
│ │ │ ├── umf_get_memory.h
│ │ │ ├── umf_grow_front.c
│ │ │ ├── umf_grow_front.h
│ │ │ ├── umf_init_front.c
│ │ │ ├── umf_init_front.h
│ │ │ ├── umf_internal.h
│ │ │ ├── umf_is_permutation.c
│ │ │ ├── umf_is_permutation.h
│ │ │ ├── umf_kernel.c
│ │ │ ├── umf_kernel.h
│ │ │ ├── umf_kernel_init.c
│ │ │ ├── umf_kernel_init.h
│ │ │ ├── umf_kernel_wrapup.c
│ │ │ ├── umf_kernel_wrapup.h
│ │ │ ├── umf_local_search.c
│ │ │ ├── umf_local_search.h
│ │ │ ├── umf_lsolve.c
│ │ │ ├── umf_lsolve.h
│ │ │ ├── umf_ltsolve.c
│ │ │ ├── umf_ltsolve.h
│ │ │ ├── umf_malloc.c
│ │ │ ├── umf_malloc.h
│ │ │ ├── umf_mem_alloc_element.c
│ │ │ ├── umf_mem_alloc_element.h
│ │ │ ├── umf_mem_alloc_head_block.c
│ │ │ ├── umf_mem_alloc_head_block.h
│ │ │ ├── umf_mem_alloc_tail_block.c
│ │ │ ├── umf_mem_alloc_tail_block.h
│ │ │ ├── umf_mem_free_tail_block.c
│ │ │ ├── umf_mem_free_tail_block.h
│ │ │ ├── umf_mem_init_memoryspace.c
│ │ │ ├── umf_mem_init_memoryspace.h
│ │ │ ├── umf_multicompile.c
│ │ │ ├── umfpack_col_to_triplet.c
│ │ │ ├── umfpack_defaults.c
│ │ │ ├── umfpack_free_numeric.c
│ │ │ ├── umfpack_free_symbolic.c
│ │ │ ├── umfpack_get_determinant.c
│ │ │ ├── umfpack_get_lunz.c
│ │ │ ├── umfpack_get_numeric.c
│ │ │ ├── umfpack_get_symbolic.c
│ │ │ ├── umfpack_global.c
│ │ │ ├── umfpack_load_numeric.c
│ │ │ ├── umfpack_load_symbolic.c
│ │ │ ├── umfpack_numeric.c
│ │ │ ├── umfpack_qsymbolic.c
│ │ │ ├── umfpack_report_control.c
│ │ │ ├── umfpack_report_info.c
│ │ │ ├── umfpack_report_matrix.c
│ │ │ ├── umfpack_report_numeric.c
│ │ │ ├── umfpack_report_perm.c
│ │ │ ├── umfpack_report_status.c
│ │ │ ├── umfpack_report_symbolic.c
│ │ │ ├── umfpack_report_triplet.c
│ │ │ ├── umfpack_report_vector.c
│ │ │ ├── umfpack_save_numeric.c
│ │ │ ├── umfpack_save_symbolic.c
│ │ │ ├── umfpack_scale.c
│ │ │ ├── umfpack_solve.c
│ │ │ ├── umfpack_symbolic.c
│ │ │ ├── umfpack_tictoc.c
│ │ │ ├── umfpack_timer.c
│ │ │ ├── umfpack_transpose.c
│ │ │ ├── umfpack_triplet_to_col.c
│ │ │ ├── umf_realloc.c
│ │ │ ├── umf_realloc.h
│ │ │ ├── umf_report_perm.c
│ │ │ ├── umf_report_perm.h
│ │ │ ├── umf_report_vector.c
│ │ │ ├── umf_report_vector.h
│ │ │ ├── umf_row_search.c
│ │ │ ├── umf_row_search.h
│ │ │ ├── umf_scale.c
│ │ │ ├── umf_scale_column.c
│ │ │ ├── umf_scale_column.h
│ │ │ ├── umf_scale.h
│ │ │ ├── umf_set_stats.c
│ │ │ ├── umf_set_stats.h
│ │ │ ├── umf_singletons.c
│ │ │ ├── umf_singletons.h
│ │ │ ├── umf_solve.c
│ │ │ ├── umf_solve.h
│ │ │ ├── umf_start_front.c
│ │ │ ├── umf_start_front.h
│ │ │ ├── umf_store_lu.c
│ │ │ ├── umf_store_lu.h
│ │ │ ├── umf_symbolic_usage.c
│ │ │ ├── umf_symbolic_usage.h
│ │ │ ├── umf_transpose.c
│ │ │ ├── umf_transpose.h
│ │ │ ├── umf_triplet.c
│ │ │ ├── umf_triplet.h
│ │ │ ├── umf_tuple_lengths.c
│ │ │ ├── umf_tuple_lengths.h
│ │ │ ├── umf_usolve.c
│ │ │ ├── umf_usolve.h
│ │ │ ├── umf_utsolve.c
│ │ │ ├── umf_utsolve.h
│ │ │ ├── umf_valid_numeric.c
│ │ │ ├── umf_valid_numeric.h
│ │ │ ├── umf_valid_symbolic.c
│ │ │ ├── umf_valid_symbolic.h
│ │ │ └── umf_version.h
│ │ ├── SourceWrappers
│ │ │ ├── umf_di_assemble_fixq.o.c
│ │ │ ├── umf_di_assemble.o.c
│ │ │ ├── umf_di_blas3_update.o.c
│ │ │ ├── umf_di_build_tuples.o.c
│ │ │ ├── umf_di_create_element.o.c
│ │ │ ├── umf_di_dump.o.c
│ │ │ ├── umf_di_extend_front.o.c
│ │ │ ├── umf_di_garbage_collection.o.c
│ │ │ ├── umf_di_get_memory.o.c
│ │ │ ├── umf_di_grow_front.o.c
│ │ │ ├── umf_di_init_front.o.c
│ │ │ ├── umf_di_kernel_init.o.c
│ │ │ ├── umf_di_kernel.o.c
│ │ │ ├── umf_di_kernel_wrapup.o.c
│ │ │ ├── umf_di_lhsolve.o.c
│ │ │ ├── umf_di_local_search.o.c
│ │ │ ├── umf_di_lsolve.o.c
│ │ │ ├── umf_di_ltsolve.o.c
│ │ │ ├── umf_di_mem_alloc_element.o.c
│ │ │ ├── umf_di_mem_alloc_head_block.o.c
│ │ │ ├── umf_di_mem_alloc_tail_block.o.c
│ │ │ ├── umf_di_mem_free_tail_block.o.c
│ │ │ ├── umf_di_mem_init_memoryspace.o.c
│ │ │ ├── umf_di_report_vector.o.c
│ │ │ ├── umf_di_row_search.o.c
│ │ │ ├── umf_di_scale_column.o.c
│ │ │ ├── umf_di_scale.o.c
│ │ │ ├── umf_di_set_stats.o.c
│ │ │ ├── umf_di_solve.o.c
│ │ │ ├── umf_di_start_front.o.c
│ │ │ ├── umf_di_store_lu_drop.o.c
│ │ │ ├── umf_di_store_lu.o.c
│ │ │ ├── umf_di_symbolic_usage.o.c
│ │ │ ├── umf_di_transpose.o.c
│ │ │ ├── umf_di_triplet_map_nox.o.c
│ │ │ ├── umf_di_triplet_map_x.o.c
│ │ │ ├── umf_di_triplet_nomap_nox.o.c
│ │ │ ├── umf_di_triplet_nomap_x.o.c
│ │ │ ├── umf_di_tuple_lengths.o.c
│ │ │ ├── umf_di_uhsolve.o.c
│ │ │ ├── umf_di_usolve.o.c
│ │ │ ├── umf_di_utsolve.o.c
│ │ │ ├── umf_di_valid_numeric.o.c
│ │ │ ├── umf_di_valid_symbolic.o.c
│ │ │ ├── umf_dl_assemble_fixq.o.c
│ │ │ ├── umf_dl_assemble.o.c
│ │ │ ├── umf_dl_blas3_update.o.c
│ │ │ ├── umf_dl_build_tuples.o.c
│ │ │ ├── umf_dl_create_element.o.c
│ │ │ ├── umf_dl_dump.o.c
│ │ │ ├── umf_dl_extend_front.o.c
│ │ │ ├── umf_dl_garbage_collection.o.c
│ │ │ ├── umf_dl_get_memory.o.c
│ │ │ ├── umf_dl_grow_front.o.c
│ │ │ ├── umf_dl_init_front.o.c
│ │ │ ├── umf_dl_kernel_init.o.c
│ │ │ ├── umf_dl_kernel.o.c
│ │ │ ├── umf_dl_kernel_wrapup.o.c
│ │ │ ├── umf_dl_lhsolve.o.c
│ │ │ ├── umf_dl_local_search.o.c
│ │ │ ├── umf_dl_lsolve.o.c
│ │ │ ├── umf_dl_ltsolve.o.c
│ │ │ ├── umf_dl_mem_alloc_element.o.c
│ │ │ ├── umf_dl_mem_alloc_head_block.o.c
│ │ │ ├── umf_dl_mem_alloc_tail_block.o.c
│ │ │ ├── umf_dl_mem_free_tail_block.o.c
│ │ │ ├── umf_dl_mem_init_memoryspace.o.c
│ │ │ ├── umf_dl_report_vector.o.c
│ │ │ ├── umf_dl_row_search.o.c
│ │ │ ├── umf_dl_scale_column.o.c
│ │ │ ├── umf_dl_scale.o.c
│ │ │ ├── umf_dl_set_stats.o.c
│ │ │ ├── umf_dl_solve.o.c
│ │ │ ├── umf_dl_start_front.o.c
│ │ │ ├── umf_dl_store_lu_drop.o.c
│ │ │ ├── umf_dl_store_lu.o.c
│ │ │ ├── umf_dl_symbolic_usage.o.c
│ │ │ ├── umf_dl_transpose.o.c
│ │ │ ├── umf_dl_triplet_map_nox.o.c
│ │ │ ├── umf_dl_triplet_map_x.o.c
│ │ │ ├── umf_dl_triplet_nomap_nox.o.c
│ │ │ ├── umf_dl_triplet_nomap_x.o.c
│ │ │ ├── umf_dl_tuple_lengths.o.c
│ │ │ ├── umf_dl_uhsolve.o.c
│ │ │ ├── umf_dl_usolve.o.c
│ │ │ ├── umf_dl_utsolve.o.c
│ │ │ ├── umf_dl_valid_numeric.o.c
│ │ │ ├── umf_dl_valid_symbolic.o.c
│ │ │ ├── umf_i_analyze.o.c
│ │ │ ├── umf_i_apply_order.o.c
│ │ │ ├── umf_i_cholmod.o.c
│ │ │ ├── umf_i_colamd.o.c
│ │ │ ├── umf_i_free.o.c
│ │ │ ├── umf_i_fsize.o.c
│ │ │ ├── umf_i_is_permutation.o.c
│ │ │ ├── umf_i_malloc.o.c
│ │ │ ├── umf_i_realloc.o.c
│ │ │ ├── umf_i_report_perm.o.c
│ │ │ ├── umf_i_singletons.o.c
│ │ │ ├── umf_l_analyze.o.c
│ │ │ ├── umf_l_apply_order.o.c
│ │ │ ├── umf_l_cholmod.o.c
│ │ │ ├── umf_l_colamd.o.c
│ │ │ ├── umf_l_free.o.c
│ │ │ ├── umf_l_fsize.o.c
│ │ │ ├── umf_l_is_permutation.o.c
│ │ │ ├── umf_l_malloc.o.c
│ │ │ ├── umf_l_realloc.o.c
│ │ │ ├── umf_l_report_perm.o.c
│ │ │ ├── umf_l_singletons.o.c
│ │ │ ├── umfpack_di_col_to_triplet.o.c
│ │ │ ├── umfpack_di_defaults.o.c
│ │ │ ├── umfpack_di_free_numeric.o.c
│ │ │ ├── umfpack_di_free_symbolic.o.c
│ │ │ ├── umfpack_di_get_determinant.o.c
│ │ │ ├── umfpack_di_get_lunz.o.c
│ │ │ ├── umfpack_di_get_numeric.o.c
│ │ │ ├── umfpack_di_get_symbolic.o.c
│ │ │ ├── umfpack_di_load_numeric.o.c
│ │ │ ├── umfpack_di_load_symbolic.o.c
│ │ │ ├── umfpack_di_numeric.o.c
│ │ │ ├── umfpack_di_qsymbolic.o.c
│ │ │ ├── umfpack_di_report_control.o.c
│ │ │ ├── umfpack_di_report_info.o.c
│ │ │ ├── umfpack_di_report_matrix.o.c
│ │ │ ├── umfpack_di_report_numeric.o.c
│ │ │ ├── umfpack_di_report_perm.o.c
│ │ │ ├── umfpack_di_report_status.o.c
│ │ │ ├── umfpack_di_report_symbolic.o.c
│ │ │ ├── umfpack_di_report_triplet.o.c
│ │ │ ├── umfpack_di_report_vector.o.c
│ │ │ ├── umfpack_di_save_numeric.o.c
│ │ │ ├── umfpack_di_save_symbolic.o.c
│ │ │ ├── umfpack_di_scale.o.c
│ │ │ ├── umfpack_di_solve.o.c
│ │ │ ├── umfpack_di_symbolic.o.c
│ │ │ ├── umfpack_di_transpose.o.c
│ │ │ ├── umfpack_di_triplet_to_col.o.c
│ │ │ ├── umfpack_di_wsolve.o.c
│ │ │ ├── umfpack_dl_col_to_triplet.o.c
│ │ │ ├── umfpack_dl_defaults.o.c
│ │ │ ├── umfpack_dl_free_numeric.o.c
│ │ │ ├── umfpack_dl_free_symbolic.o.c
│ │ │ ├── umfpack_dl_get_determinant.o.c
│ │ │ ├── umfpack_dl_get_lunz.o.c
│ │ │ ├── umfpack_dl_get_numeric.o.c
│ │ │ ├── umfpack_dl_get_symbolic.o.c
│ │ │ ├── umfpack_dl_load_numeric.o.c
│ │ │ ├── umfpack_dl_load_symbolic.o.c
│ │ │ ├── umfpack_dl_numeric.o.c
│ │ │ ├── umfpack_dl_qsymbolic.o.c
│ │ │ ├── umfpack_dl_report_control.o.c
│ │ │ ├── umfpack_dl_report_info.o.c
│ │ │ ├── umfpack_dl_report_matrix.o.c
│ │ │ ├── umfpack_dl_report_numeric.o.c
│ │ │ ├── umfpack_dl_report_perm.o.c
│ │ │ ├── umfpack_dl_report_status.o.c
│ │ │ ├── umfpack_dl_report_symbolic.o.c
│ │ │ ├── umfpack_dl_report_triplet.o.c
│ │ │ ├── umfpack_dl_report_vector.o.c
│ │ │ ├── umfpack_dl_save_numeric.o.c
│ │ │ ├── umfpack_dl_save_symbolic.o.c
│ │ │ ├── umfpack_dl_scale.o.c
│ │ │ ├── umfpack_dl_solve.o.c
│ │ │ ├── umfpack_dl_symbolic.o.c
│ │ │ ├── umfpack_dl_transpose.o.c
│ │ │ ├── umfpack_dl_triplet_to_col.o.c
│ │ │ ├── umfpack_dl_wsolve.o.c
│ │ │ ├── umfpack_gn_global.o.c
│ │ │ ├── umfpack_gn_tictoc.o.c
│ │ │ ├── umfpack_gn_timer.o.c
│ │ │ ├── umfpack_zi_col_to_triplet.o.c
│ │ │ ├── umfpack_zi_defaults.o.c
│ │ │ ├── umfpack_zi_free_numeric.o.c
│ │ │ ├── umfpack_zi_free_symbolic.o.c
│ │ │ ├── umfpack_zi_get_determinant.o.c
│ │ │ ├── umfpack_zi_get_lunz.o.c
│ │ │ ├── umfpack_zi_get_numeric.o.c
│ │ │ ├── umfpack_zi_get_symbolic.o.c
│ │ │ ├── umfpack_zi_load_numeric.o.c
│ │ │ ├── umfpack_zi_load_symbolic.o.c
│ │ │ ├── umfpack_zi_numeric.o.c
│ │ │ ├── umfpack_zi_qsymbolic.o.c
│ │ │ ├── umfpack_zi_report_control.o.c
│ │ │ ├── umfpack_zi_report_info.o.c
│ │ │ ├── umfpack_zi_report_matrix.o.c
│ │ │ ├── umfpack_zi_report_numeric.o.c
│ │ │ ├── umfpack_zi_report_perm.o.c
│ │ │ ├── umfpack_zi_report_status.o.c
│ │ │ ├── umfpack_zi_report_symbolic.o.c
│ │ │ ├── umfpack_zi_report_triplet.o.c
│ │ │ ├── umfpack_zi_report_vector.o.c
│ │ │ ├── umfpack_zi_save_numeric.o.c
│ │ │ ├── umfpack_zi_save_symbolic.o.c
│ │ │ ├── umfpack_zi_scale.o.c
│ │ │ ├── umfpack_zi_solve.o.c
│ │ │ ├── umfpack_zi_symbolic.o.c
│ │ │ ├── umfpack_zi_transpose.o.c
│ │ │ ├── umfpack_zi_triplet_to_col.o.c
│ │ │ ├── umfpack_zi_wsolve.o.c
│ │ │ ├── umfpack_zl_col_to_triplet.o.c
│ │ │ ├── umfpack_zl_defaults.o.c
│ │ │ ├── umfpack_zl_free_numeric.o.c
│ │ │ ├── umfpack_zl_free_symbolic.o.c
│ │ │ ├── umfpack_zl_get_determinant.o.c
│ │ │ ├── umfpack_zl_get_lunz.o.c
│ │ │ ├── umfpack_zl_get_numeric.o.c
│ │ │ ├── umfpack_zl_get_symbolic.o.c
│ │ │ ├── umfpack_zl_load_numeric.o.c
│ │ │ ├── umfpack_zl_load_symbolic.o.c
│ │ │ ├── umfpack_zl_numeric.o.c
│ │ │ ├── umfpack_zl_qsymbolic.o.c
│ │ │ ├── umfpack_zl_report_control.o.c
│ │ │ ├── umfpack_zl_report_info.o.c
│ │ │ ├── umfpack_zl_report_matrix.o.c
│ │ │ ├── umfpack_zl_report_numeric.o.c
│ │ │ ├── umfpack_zl_report_perm.o.c
│ │ │ ├── umfpack_zl_report_status.o.c
│ │ │ ├── umfpack_zl_report_symbolic.o.c
│ │ │ ├── umfpack_zl_report_triplet.o.c
│ │ │ ├── umfpack_zl_report_vector.o.c
│ │ │ ├── umfpack_zl_save_numeric.o.c
│ │ │ ├── umfpack_zl_save_symbolic.o.c
│ │ │ ├── umfpack_zl_scale.o.c
│ │ │ ├── umfpack_zl_solve.o.c
│ │ │ ├── umfpack_zl_symbolic.o.c
│ │ │ ├── umfpack_zl_transpose.o.c
│ │ │ ├── umfpack_zl_triplet_to_col.o.c
│ │ │ ├── umfpack_zl_wsolve.o.c
│ │ │ ├── umf_zi_assemble_fixq.o.c
│ │ │ ├── umf_zi_assemble.o.c
│ │ │ ├── umf_zi_blas3_update.o.c
│ │ │ ├── umf_zi_build_tuples.o.c
│ │ │ ├── umf_zi_create_element.o.c
│ │ │ ├── umf_zi_dump.o.c
│ │ │ ├── umf_zi_extend_front.o.c
│ │ │ ├── umf_zi_garbage_collection.o.c
│ │ │ ├── umf_zi_get_memory.o.c
│ │ │ ├── umf_zi_grow_front.o.c
│ │ │ ├── umf_zi_init_front.o.c
│ │ │ ├── umf_zi_kernel_init.o.c
│ │ │ ├── umf_zi_kernel.o.c
│ │ │ ├── umf_zi_kernel_wrapup.o.c
│ │ │ ├── umf_zi_lhsolve.o.c
│ │ │ ├── umf_zi_local_search.o.c
│ │ │ ├── umf_zi_lsolve.o.c
│ │ │ ├── umf_zi_ltsolve.o.c
│ │ │ ├── umf_zi_mem_alloc_element.o.c
│ │ │ ├── umf_zi_mem_alloc_head_block.o.c
│ │ │ ├── umf_zi_mem_alloc_tail_block.o.c
│ │ │ ├── umf_zi_mem_free_tail_block.o.c
│ │ │ ├── umf_zi_mem_init_memoryspace.o.c
│ │ │ ├── umf_zi_report_vector.o.c
│ │ │ ├── umf_zi_row_search.o.c
│ │ │ ├── umf_zi_scale_column.o.c
│ │ │ ├── umf_zi_scale.o.c
│ │ │ ├── umf_zi_set_stats.o.c
│ │ │ ├── umf_zi_solve.o.c
│ │ │ ├── umf_zi_start_front.o.c
│ │ │ ├── umf_zi_store_lu_drop.o.c
│ │ │ ├── umf_zi_store_lu.o.c
│ │ │ ├── umf_zi_symbolic_usage.o.c
│ │ │ ├── umf_zi_transpose.o.c
│ │ │ ├── umf_zi_triplet_map_nox.o.c
│ │ │ ├── umf_zi_triplet_map_x.o.c
│ │ │ ├── umf_zi_triplet_nomap_nox.o.c
│ │ │ ├── umf_zi_triplet_nomap_x.o.c
│ │ │ ├── umf_zi_tuple_lengths.o.c
│ │ │ ├── umf_zi_uhsolve.o.c
│ │ │ ├── umf_zi_usolve.o.c
│ │ │ ├── umf_zi_utsolve.o.c
│ │ │ ├── umf_zi_valid_numeric.o.c
│ │ │ ├── umf_zi_valid_symbolic.o.c
│ │ │ ├── umf_zl_assemble_fixq.o.c
│ │ │ ├── umf_zl_assemble.o.c
│ │ │ ├── umf_zl_blas3_update.o.c
│ │ │ ├── umf_zl_build_tuples.o.c
│ │ │ ├── umf_zl_create_element.o.c
│ │ │ ├── umf_zl_dump.o.c
│ │ │ ├── umf_zl_extend_front.o.c
│ │ │ ├── umf_zl_garbage_collection.o.c
│ │ │ ├── umf_zl_get_memory.o.c
│ │ │ ├── umf_zl_grow_front.o.c
│ │ │ ├── umf_zl_init_front.o.c
│ │ │ ├── umf_zl_kernel_init.o.c
│ │ │ ├── umf_zl_kernel.o.c
│ │ │ ├── umf_zl_kernel_wrapup.o.c
│ │ │ ├── umf_zl_lhsolve.o.c
│ │ │ ├── umf_zl_local_search.o.c
│ │ │ ├── umf_zl_lsolve.o.c
│ │ │ ├── umf_zl_ltsolve.o.c
│ │ │ ├── umf_zl_mem_alloc_element.o.c
│ │ │ ├── umf_zl_mem_alloc_head_block.o.c
│ │ │ ├── umf_zl_mem_alloc_tail_block.o.c
│ │ │ ├── umf_zl_mem_free_tail_block.o.c
│ │ │ ├── umf_zl_mem_init_memoryspace.o.c
│ │ │ ├── umf_zl_report_vector.o.c
│ │ │ ├── umf_zl_row_search.o.c
│ │ │ ├── umf_zl_scale_column.o.c
│ │ │ ├── umf_zl_scale.o.c
│ │ │ ├── umf_zl_set_stats.o.c
│ │ │ ├── umf_zl_solve.o.c
│ │ │ ├── umf_zl_start_front.o.c
│ │ │ ├── umf_zl_store_lu_drop.o.c
│ │ │ ├── umf_zl_store_lu.o.c
│ │ │ ├── umf_zl_symbolic_usage.o.c
│ │ │ ├── umf_zl_transpose.o.c
│ │ │ ├── umf_zl_triplet_map_nox.o.c
│ │ │ ├── umf_zl_triplet_map_x.o.c
│ │ │ ├── umf_zl_triplet_nomap_nox.o.c
│ │ │ ├── umf_zl_triplet_nomap_x.o.c
│ │ │ ├── umf_zl_tuple_lengths.o.c
│ │ │ ├── umf_zl_uhsolve.o.c
│ │ │ ├── umf_zl_usolve.o.c
│ │ │ ├── umf_zl_utsolve.o.c
│ │ │ ├── umf_zl_valid_numeric.o.c
│ │ │ └── umf_zl_valid_symbolic.o.c
│ │ └── Tcov
│ │ ├── acov.di
│ │ ├── acov.dl
│ │ ├── acov.zi
│ │ ├── acov.zl
│ │ ├── badnum2.umf
│ │ ├── badnum.umf
│ │ ├── badsym2.umf
│ │ ├── badsym.umf
│ │ ├── cov
│ │ ├── covall
│ │ ├── cover.awk
│ │ ├── debug.amd
│ │ ├── debug.umf
│ │ ├── DO
│ │ ├── DO.all
│ │ ├── Make.1
│ │ ├── Make.2
│ │ ├── Make.3
│ │ ├── Make.4
│ │ ├── Make.5
│ │ ├── Make.6
│ │ ├── Make.7
│ │ ├── Make.8
│ │ ├── Makefile
│ │ ├── Makefile.di
│ │ ├── Makefile.dl
│ │ ├── Makefile.zi
│ │ ├── Makefile.zl
│ │ ├── README.txt
│ │ ├── TestMat
│ │ │ ├── adlittle
│ │ │ ├── arc130
│ │ │ ├── cage3
│ │ │ ├── d_dyn
│ │ │ ├── galenet
│ │ │ ├── matrix1
│ │ │ ├── matrix10
│ │ │ ├── matrix11
│ │ │ ├── matrix12
│ │ │ ├── matrix13
│ │ │ ├── matrix14
│ │ │ ├── matrix15
│ │ │ ├── matrix16
│ │ │ ├── matrix17
│ │ │ ├── matrix18
│ │ │ ├── matrix19
│ │ │ ├── matrix2
│ │ │ ├── matrix20
│ │ │ ├── matrix21
│ │ │ ├── matrix22
│ │ │ ├── matrix23
│ │ │ ├── matrix24
│ │ │ ├── matrix25
│ │ │ ├── matrix26
│ │ │ ├── matrix27
│ │ │ ├── matrix28
│ │ │ ├── matrix29
│ │ │ ├── matrix3
│ │ │ ├── matrix30
│ │ │ ├── matrix4
│ │ │ ├── matrix5
│ │ │ ├── matrix6
│ │ │ ├── matrix7
│ │ │ ├── matrix8
│ │ │ ├── nug07
│ │ │ ├── S_d2q06c
│ │ │ └── shl0
│ │ ├── ucov.di
│ │ ├── ucov.dl
│ │ ├── ucov.zi
│ │ ├── ucov.zl
│ │ └── ut.c
│ ├── suitesparse-metis-for-windows-1.5.0.zip
│ └── suitesparse-metis-for-windows-master.zip
├── Eigen3
│ ├── include
│ │ └── eigen3
│ │ ├── Eigen
│ │ │ ├── Cholesky
│ │ │ ├── CholmodSupport
│ │ │ ├── Core
│ │ │ ├── Dense
│ │ │ ├── Eigen
│ │ │ ├── Eigenvalues
│ │ │ ├── Geometry
│ │ │ ├── Householder
│ │ │ ├── IterativeLinearSolvers
│ │ │ ├── Jacobi
│ │ │ ├── LU
│ │ │ ├── MetisSupport
│ │ │ ├── OrderingMethods
│ │ │ ├── PardisoSupport
│ │ │ ├── PaStiXSupport
│ │ │ ├── QR
│ │ │ ├── QtAlignedMalloc
│ │ │ ├── Sparse
│ │ │ ├── SparseCholesky
│ │ │ ├── SparseCore
│ │ │ ├── SparseLU
│ │ │ ├── SparseQR
│ │ │ ├── SPQRSupport
│ │ │ ├── src
│ │ │ │ ├── Cholesky
│ │ │ │ │ ├── LDLT.h
│ │ │ │ │ ├── LLT.h
│ │ │ │ │ └── LLT_LAPACKE.h
│ │ │ │ ├── CholmodSupport
│ │ │ │ │ └── CholmodSupport.h
│ │ │ │ ├── Core
│ │ │ │ │ ├── arch
│ │ │ │ │ │ ├── AltiVec
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── AVX
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ ├── AVX512
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── CUDA
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── Half.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ ├── PacketMathHalf.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ ├── Default
│ │ │ │ │ │ │ ├── ConjHelper.h
│ │ │ │ │ │ │ └── Settings.h
│ │ │ │ │ │ ├── NEON
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ │ ├── SSE
│ │ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ │ ├── PacketMath.h
│ │ │ │ │ │ │ └── TypeCasting.h
│ │ │ │ │ │ └── ZVector
│ │ │ │ │ │ ├── Complex.h
│ │ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ │ └── PacketMath.h
│ │ │ │ │ ├── ArrayBase.h
│ │ │ │ │ ├── Array.h
│ │ │ │ │ ├── ArrayWrapper.h
│ │ │ │ │ ├── AssignEvaluator.h
│ │ │ │ │ ├── Assign.h
│ │ │ │ │ ├── Assign_MKL.h
│ │ │ │ │ ├── BandMatrix.h
│ │ │ │ │ ├── Block.h
│ │ │ │ │ ├── BooleanRedux.h
│ │ │ │ │ ├── CommaInitializer.h
│ │ │ │ │ ├── ConditionEstimator.h
│ │ │ │ │ ├── CoreEvaluators.h
│ │ │ │ │ ├── CoreIterators.h
│ │ │ │ │ ├── CwiseBinaryOp.h
│ │ │ │ │ ├── CwiseNullaryOp.h
│ │ │ │ │ ├── CwiseTernaryOp.h
│ │ │ │ │ ├── CwiseUnaryOp.h
│ │ │ │ │ ├── CwiseUnaryView.h
│ │ │ │ │ ├── DenseBase.h
│ │ │ │ │ ├── DenseCoeffsBase.h
│ │ │ │ │ ├── DenseStorage.h
│ │ │ │ │ ├── Diagonal.h
│ │ │ │ │ ├── DiagonalMatrix.h
│ │ │ │ │ ├── DiagonalProduct.h
│ │ │ │ │ ├── Dot.h
│ │ │ │ │ ├── EigenBase.h
│ │ │ │ │ ├── ForceAlignedAccess.h
│ │ │ │ │ ├── functors
│ │ │ │ │ │ ├── AssignmentFunctors.h
│ │ │ │ │ │ ├── BinaryFunctors.h
│ │ │ │ │ │ ├── NullaryFunctors.h
│ │ │ │ │ │ ├── StlFunctors.h
│ │ │ │ │ │ ├── TernaryFunctors.h
│ │ │ │ │ │ └── UnaryFunctors.h
│ │ │ │ │ ├── Fuzzy.h
│ │ │ │ │ ├── GeneralProduct.h
│ │ │ │ │ ├── GenericPacketMath.h
│ │ │ │ │ ├── GlobalFunctions.h
│ │ │ │ │ ├── Inverse.h
│ │ │ │ │ ├── IO.h
│ │ │ │ │ ├── MapBase.h
│ │ │ │ │ ├── Map.h
│ │ │ │ │ ├── MathFunctions.h
│ │ │ │ │ ├── MathFunctionsImpl.h
│ │ │ │ │ ├── MatrixBase.h
│ │ │ │ │ ├── Matrix.h
│ │ │ │ │ ├── NestByValue.h
│ │ │ │ │ ├── NoAlias.h
│ │ │ │ │ ├── NumTraits.h
│ │ │ │ │ ├── PermutationMatrix.h
│ │ │ │ │ ├── PlainObjectBase.h
│ │ │ │ │ ├── ProductEvaluators.h
│ │ │ │ │ ├── Product.h
│ │ │ │ │ ├── products
│ │ │ │ │ │ ├── GeneralBlockPanelKernel.h
│ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixMatrix.h
│ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h
│ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h
│ │ │ │ │ │ ├── GeneralMatrixVector.h
│ │ │ │ │ │ ├── Parallelizer.h
│ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h
│ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h
│ │ │ │ │ │ ├── SelfadjointMatrixVector.h
│ │ │ │ │ │ ├── SelfadjointProduct.h
│ │ │ │ │ │ ├── SelfadjointRank2Update.h
│ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h
│ │ │ │ │ │ ├── TriangularMatrixMatrix.h
│ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h
│ │ │ │ │ │ ├── TriangularMatrixVector.h
│ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h
│ │ │ │ │ │ ├── TriangularSolverMatrix.h
│ │ │ │ │ │ └── TriangularSolverVector.h
│ │ │ │ │ ├── Random.h
│ │ │ │ │ ├── Redux.h
│ │ │ │ │ ├── Ref.h
│ │ │ │ │ ├── Replicate.h
│ │ │ │ │ ├── ReturnByValue.h
│ │ │ │ │ ├── Reverse.h
│ │ │ │ │ ├── Select.h
│ │ │ │ │ ├── SelfAdjointView.h
│ │ │ │ │ ├── SelfCwiseBinaryOp.h
│ │ │ │ │ ├── Solve.h
│ │ │ │ │ ├── SolverBase.h
│ │ │ │ │ ├── SolveTriangular.h
│ │ │ │ │ ├── StableNorm.h
│ │ │ │ │ ├── Stride.h
│ │ │ │ │ ├── Swap.h
│ │ │ │ │ ├── Transpose.h
│ │ │ │ │ ├── Transpositions.h
│ │ │ │ │ ├── TriangularMatrix.h
│ │ │ │ │ ├── util
│ │ │ │ │ │ ├── BlasUtil.h
│ │ │ │ │ │ ├── Constants.h
│ │ │ │ │ │ ├── DisableStupidWarnings.h
│ │ │ │ │ │ ├── ForwardDeclarations.h
│ │ │ │ │ │ ├── Macros.h
│ │ │ │ │ │ ├── Memory.h
│ │ │ │ │ │ ├── Meta.h
│ │ │ │ │ │ ├── MKL_support.h
│ │ │ │ │ │ ├── NonMPL2.h
│ │ │ │ │ │ ├── ReenableStupidWarnings.h
│ │ │ │ │ │ ├── StaticAssert.h
│ │ │ │ │ │ └── XprHelper.h
│ │ │ │ │ ├── VectorBlock.h
│ │ │ │ │ ├── VectorwiseOp.h
│ │ │ │ │ └── Visitor.h
│ │ │ │ ├── Eigenvalues
│ │ │ │ │ ├── ComplexEigenSolver.h
│ │ │ │ │ ├── ComplexSchur.h
│ │ │ │ │ ├── ComplexSchur_LAPACKE.h
│ │ │ │ │ ├── EigenSolver.h
│ │ │ │ │ ├── GeneralizedEigenSolver.h
│ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h
│ │ │ │ │ ├── HessenbergDecomposition.h
│ │ │ │ │ ├── MatrixBaseEigenvalues.h
│ │ │ │ │ ├── RealQZ.h
│ │ │ │ │ ├── RealSchur.h
│ │ │ │ │ ├── RealSchur_LAPACKE.h
│ │ │ │ │ ├── SelfAdjointEigenSolver.h
│ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h
│ │ │ │ │ └── Tridiagonalization.h
│ │ │ │ ├── Geometry
│ │ │ │ │ ├── AlignedBox.h
│ │ │ │ │ ├── AngleAxis.h
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── Geometry_SSE.h
│ │ │ │ │ ├── EulerAngles.h
│ │ │ │ │ ├── Homogeneous.h
│ │ │ │ │ ├── Hyperplane.h
│ │ │ │ │ ├── OrthoMethods.h
│ │ │ │ │ ├── ParametrizedLine.h
│ │ │ │ │ ├── Quaternion.h
│ │ │ │ │ ├── Rotation2D.h
│ │ │ │ │ ├── RotationBase.h
│ │ │ │ │ ├── Scaling.h
│ │ │ │ │ ├── Transform.h
│ │ │ │ │ ├── Translation.h
│ │ │ │ │ └── Umeyama.h
│ │ │ │ ├── Householder
│ │ │ │ │ ├── BlockHouseholder.h
│ │ │ │ │ ├── Householder.h
│ │ │ │ │ └── HouseholderSequence.h
│ │ │ │ ├── IterativeLinearSolvers
│ │ │ │ │ ├── BasicPreconditioners.h
│ │ │ │ │ ├── BiCGSTAB.h
│ │ │ │ │ ├── ConjugateGradient.h
│ │ │ │ │ ├── IncompleteCholesky.h
│ │ │ │ │ ├── IncompleteLUT.h
│ │ │ │ │ ├── IterativeSolverBase.h
│ │ │ │ │ ├── LeastSquareConjugateGradient.h
│ │ │ │ │ └── SolveWithGuess.h
│ │ │ │ ├── Jacobi
│ │ │ │ │ └── Jacobi.h
│ │ │ │ ├── LU
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── Inverse_SSE.h
│ │ │ │ │ ├── Determinant.h
│ │ │ │ │ ├── FullPivLU.h
│ │ │ │ │ ├── InverseImpl.h
│ │ │ │ │ ├── PartialPivLU.h
│ │ │ │ │ └── PartialPivLU_LAPACKE.h
│ │ │ │ ├── MetisSupport
│ │ │ │ │ └── MetisSupport.h
│ │ │ │ ├── misc
│ │ │ │ │ ├── blas.h
│ │ │ │ │ ├── Image.h
│ │ │ │ │ ├── Kernel.h
│ │ │ │ │ ├── lapacke.h
│ │ │ │ │ ├── lapacke_mangling.h
│ │ │ │ │ ├── lapack.h
│ │ │ │ │ └── RealSvd2x2.h
│ │ │ │ ├── OrderingMethods
│ │ │ │ │ ├── Amd.h
│ │ │ │ │ ├── Eigen_Colamd.h
│ │ │ │ │ └── Ordering.h
│ │ │ │ ├── PardisoSupport
│ │ │ │ │ └── PardisoSupport.h
│ │ │ │ ├── PaStiXSupport
│ │ │ │ │ └── PaStiXSupport.h
│ │ │ │ ├── plugins
│ │ │ │ │ ├── ArrayCwiseBinaryOps.h
│ │ │ │ │ ├── ArrayCwiseUnaryOps.h
│ │ │ │ │ ├── BlockMethods.h
│ │ │ │ │ ├── CommonCwiseBinaryOps.h
│ │ │ │ │ ├── CommonCwiseUnaryOps.h
│ │ │ │ │ ├── MatrixCwiseBinaryOps.h
│ │ │ │ │ └── MatrixCwiseUnaryOps.h
│ │ │ │ ├── QR
│ │ │ │ │ ├── ColPivHouseholderQR.h
│ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h
│ │ │ │ │ ├── CompleteOrthogonalDecomposition.h
│ │ │ │ │ ├── FullPivHouseholderQR.h
│ │ │ │ │ ├── HouseholderQR.h
│ │ │ │ │ └── HouseholderQR_LAPACKE.h
│ │ │ │ ├── SparseCholesky
│ │ │ │ │ ├── SimplicialCholesky.h
│ │ │ │ │ └── SimplicialCholesky_impl.h
│ │ │ │ ├── SparseCore
│ │ │ │ │ ├── AmbiVector.h
│ │ │ │ │ ├── CompressedStorage.h
│ │ │ │ │ ├── ConservativeSparseSparseProduct.h
│ │ │ │ │ ├── MappedSparseMatrix.h
│ │ │ │ │ ├── SparseAssign.h
│ │ │ │ │ ├── SparseBlock.h
│ │ │ │ │ ├── SparseColEtree.h
│ │ │ │ │ ├── SparseCompressedBase.h
│ │ │ │ │ ├── SparseCwiseBinaryOp.h
│ │ │ │ │ ├── SparseCwiseUnaryOp.h
│ │ │ │ │ ├── SparseDenseProduct.h
│ │ │ │ │ ├── SparseDiagonalProduct.h
│ │ │ │ │ ├── SparseDot.h
│ │ │ │ │ ├── SparseFuzzy.h
│ │ │ │ │ ├── SparseMap.h
│ │ │ │ │ ├── SparseMatrixBase.h
│ │ │ │ │ ├── SparseMatrix.h
│ │ │ │ │ ├── SparsePermutation.h
│ │ │ │ │ ├── SparseProduct.h
│ │ │ │ │ ├── SparseRedux.h
│ │ │ │ │ ├── SparseRef.h
│ │ │ │ │ ├── SparseSelfAdjointView.h
│ │ │ │ │ ├── SparseSolverBase.h
│ │ │ │ │ ├── SparseSparseProductWithPruning.h
│ │ │ │ │ ├── SparseTranspose.h
│ │ │ │ │ ├── SparseTriangularView.h
│ │ │ │ │ ├── SparseUtil.h
│ │ │ │ │ ├── SparseVector.h
│ │ │ │ │ ├── SparseView.h
│ │ │ │ │ └── TriangularSolver.h
│ │ │ │ ├── SparseLU
│ │ │ │ │ ├── SparseLU_column_bmod.h
│ │ │ │ │ ├── SparseLU_column_dfs.h
│ │ │ │ │ ├── SparseLU_copy_to_ucol.h
│ │ │ │ │ ├── SparseLU_gemm_kernel.h
│ │ │ │ │ ├── SparseLU.h
│ │ │ │ │ ├── SparseLU_heap_relax_snode.h
│ │ │ │ │ ├── SparseLUImpl.h
│ │ │ │ │ ├── SparseLU_kernel_bmod.h
│ │ │ │ │ ├── SparseLU_Memory.h
│ │ │ │ │ ├── SparseLU_panel_bmod.h
│ │ │ │ │ ├── SparseLU_panel_dfs.h
│ │ │ │ │ ├── SparseLU_pivotL.h
│ │ │ │ │ ├── SparseLU_pruneL.h
│ │ │ │ │ ├── SparseLU_relax_snode.h
│ │ │ │ │ ├── SparseLU_Structs.h
│ │ │ │ │ ├── SparseLU_SupernodalMatrix.h
│ │ │ │ │ └── SparseLU_Utils.h
│ │ │ │ ├── SparseQR
│ │ │ │ │ └── SparseQR.h
│ │ │ │ ├── SPQRSupport
│ │ │ │ │ └── SuiteSparseQRSupport.h
│ │ │ │ ├── StlSupport
│ │ │ │ │ ├── details.h
│ │ │ │ │ ├── StdDeque.h
│ │ │ │ │ ├── StdList.h
│ │ │ │ │ └── StdVector.h
│ │ │ │ ├── SuperLUSupport
│ │ │ │ │ └── SuperLUSupport.h
│ │ │ │ ├── SVD
│ │ │ │ │ ├── BDCSVD.h
│ │ │ │ │ ├── JacobiSVD.h
│ │ │ │ │ ├── JacobiSVD_LAPACKE.h
│ │ │ │ │ ├── SVDBase.h
│ │ │ │ │ └── UpperBidiagonalization.h
│ │ │ │ └── UmfPackSupport
│ │ │ │ └── UmfPackSupport.h
│ │ │ ├── StdDeque
│ │ │ ├── StdList
│ │ │ ├── StdVector
│ │ │ ├── SuperLUSupport
│ │ │ ├── SVD
│ │ │ └── UmfPackSupport
│ │ ├── signature_of_eigen3_matrix_library
│ │ └── unsupported
│ │ └── Eigen
│ │ ├── AdolcForward
│ │ ├── AlignedVector3
│ │ ├── ArpackSupport
│ │ ├── AutoDiff
│ │ ├── BVH
│ │ ├── CXX11
│ │ │ ├── src
│ │ │ │ ├── Tensor
│ │ │ │ │ ├── TensorArgMax.h
│ │ │ │ │ ├── TensorAssign.h
│ │ │ │ │ ├── TensorBase.h
│ │ │ │ │ ├── TensorBroadcasting.h
│ │ │ │ │ ├── TensorChipping.h
│ │ │ │ │ ├── TensorConcatenation.h
│ │ │ │ │ ├── TensorContractionBlocking.h
│ │ │ │ │ ├── TensorContractionCuda.h
│ │ │ │ │ ├── TensorContraction.h
│ │ │ │ │ ├── TensorContractionMapper.h
│ │ │ │ │ ├── TensorContractionThreadPool.h
│ │ │ │ │ ├── TensorConversion.h
│ │ │ │ │ ├── TensorConvolution.h
│ │ │ │ │ ├── TensorCostModel.h
│ │ │ │ │ ├── TensorCustomOp.h
│ │ │ │ │ ├── TensorDeviceCuda.h
│ │ │ │ │ ├── TensorDeviceDefault.h
│ │ │ │ │ ├── TensorDevice.h
│ │ │ │ │ ├── TensorDeviceSycl.h
│ │ │ │ │ ├── TensorDeviceThreadPool.h
│ │ │ │ │ ├── TensorDimensionList.h
│ │ │ │ │ ├── TensorDimensions.h
│ │ │ │ │ ├── TensorEvalTo.h
│ │ │ │ │ ├── TensorEvaluator.h
│ │ │ │ │ ├── TensorExecutor.h
│ │ │ │ │ ├── TensorExpr.h
│ │ │ │ │ ├── TensorFFT.h
│ │ │ │ │ ├── TensorFixedSize.h
│ │ │ │ │ ├── TensorForcedEval.h
│ │ │ │ │ ├── TensorForwardDeclarations.h
│ │ │ │ │ ├── TensorFunctors.h
│ │ │ │ │ ├── TensorGenerator.h
│ │ │ │ │ ├── TensorGlobalFunctions.h
│ │ │ │ │ ├── Tensor.h
│ │ │ │ │ ├── TensorImagePatch.h
│ │ │ │ │ ├── TensorIndexList.h
│ │ │ │ │ ├── TensorInflation.h
│ │ │ │ │ ├── TensorInitializer.h
│ │ │ │ │ ├── TensorIntDiv.h
│ │ │ │ │ ├── TensorIO.h
│ │ │ │ │ ├── TensorLayoutSwap.h
│ │ │ │ │ ├── TensorMacros.h
│ │ │ │ │ ├── TensorMap.h
│ │ │ │ │ ├── TensorMeta.h
│ │ │ │ │ ├── TensorMorphing.h
│ │ │ │ │ ├── TensorPadding.h
│ │ │ │ │ ├── TensorPatch.h
│ │ │ │ │ ├── TensorRandom.h
│ │ │ │ │ ├── TensorReductionCuda.h
│ │ │ │ │ ├── TensorReduction.h
│ │ │ │ │ ├── TensorReductionSycl.h
│ │ │ │ │ ├── TensorRef.h
│ │ │ │ │ ├── TensorReverse.h
│ │ │ │ │ ├── TensorScan.h
│ │ │ │ │ ├── TensorShuffling.h
│ │ │ │ │ ├── TensorStorage.h
│ │ │ │ │ ├── TensorStriding.h
│ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h
│ │ │ │ │ ├── TensorSyclExprConstructor.h
│ │ │ │ │ ├── TensorSyclExtractAccessor.h
│ │ │ │ │ ├── TensorSyclExtractFunctors.h
│ │ │ │ │ ├── TensorSycl.h
│ │ │ │ │ ├── TensorSyclLeafCount.h
│ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h
│ │ │ │ │ ├── TensorSyclRun.h
│ │ │ │ │ ├── TensorSyclTuple.h
│ │ │ │ │ ├── TensorTraits.h
│ │ │ │ │ ├── TensorUInt128.h
│ │ │ │ │ └── TensorVolumePatch.h
│ │ │ │ ├── TensorSymmetry
│ │ │ │ │ ├── DynamicSymmetry.h
│ │ │ │ │ ├── StaticSymmetry.h
│ │ │ │ │ ├── Symmetry.h
│ │ │ │ │ └── util
│ │ │ │ │ └── TemplateGroupTheory.h
│ │ │ │ ├── ThreadPool
│ │ │ │ │ ├── EventCount.h
│ │ │ │ │ ├── NonBlockingThreadPool.h
│ │ │ │ │ ├── RunQueue.h
│ │ │ │ │ ├── SimpleThreadPool.h
│ │ │ │ │ ├── ThreadEnvironment.h
│ │ │ │ │ ├── ThreadLocal.h
│ │ │ │ │ ├── ThreadPoolInterface.h
│ │ │ │ │ └── ThreadYield.h
│ │ │ │ └── util
│ │ │ │ ├── CXX11Meta.h
│ │ │ │ ├── CXX11Workarounds.h
│ │ │ │ ├── EmulateArray.h
│ │ │ │ ├── EmulateCXX11Meta.h
│ │ │ │ └── MaxSizeVector.h
│ │ │ ├── Tensor
│ │ │ ├── TensorSymmetry
│ │ │ └── ThreadPool
│ │ ├── EulerAngles
│ │ ├── FFT
│ │ ├── IterativeSolvers
│ │ ├── KroneckerProduct
│ │ ├── LevenbergMarquardt
│ │ ├── MatrixFunctions
│ │ ├── MoreVectorization
│ │ ├── MPRealSupport
│ │ ├── NonLinearOptimization
│ │ ├── NumericalDiff
│ │ ├── OpenGLSupport
│ │ ├── Polynomials
│ │ ├── Skyline
│ │ ├── SparseExtra
│ │ ├── SpecialFunctions
│ │ ├── Splines
│ │ └── src
│ │ ├── AutoDiff
│ │ │ ├── AutoDiffJacobian.h
│ │ │ ├── AutoDiffScalar.h
│ │ │ └── AutoDiffVector.h
│ │ ├── BVH
│ │ │ ├── BVAlgorithms.h
│ │ │ └── KdBVH.h
│ │ ├── Eigenvalues
│ │ │ └── ArpackSelfAdjointEigenSolver.h
│ │ ├── EulerAngles
│ │ │ ├── EulerAngles.h
│ │ │ └── EulerSystem.h
│ │ ├── FFT
│ │ │ ├── ei_fftw_impl.h
│ │ │ └── ei_kissfft_impl.h
│ │ ├── IterativeSolvers
│ │ │ ├── ConstrainedConjGrad.h
│ │ │ ├── DGMRES.h
│ │ │ ├── GMRES.h
│ │ │ ├── IncompleteLU.h
│ │ │ ├── IterationController.h
│ │ │ ├── MINRES.h
│ │ │ └── Scaling.h
│ │ ├── KroneckerProduct
│ │ │ └── KroneckerTensorProduct.h
│ │ ├── LevenbergMarquardt
│ │ │ ├── LevenbergMarquardt.h
│ │ │ ├── LMcovar.h
│ │ │ ├── LMonestep.h
│ │ │ ├── LMpar.h
│ │ │ └── LMqrsolv.h
│ │ ├── MatrixFunctions
│ │ │ ├── MatrixExponential.h
│ │ │ ├── MatrixFunction.h
│ │ │ ├── MatrixLogarithm.h
│ │ │ ├── MatrixPower.h
│ │ │ ├── MatrixSquareRoot.h
│ │ │ └── StemFunction.h
│ │ ├── MoreVectorization
│ │ │ └── MathFunctions.h
│ │ ├── NonLinearOptimization
│ │ │ ├── chkder.h
│ │ │ ├── covar.h
│ │ │ ├── dogleg.h
│ │ │ ├── fdjac1.h
│ │ │ ├── HybridNonLinearSolver.h
│ │ │ ├── LevenbergMarquardt.h
│ │ │ ├── lmpar.h
│ │ │ ├── qrsolv.h
│ │ │ ├── r1mpyq.h
│ │ │ ├── r1updt.h
│ │ │ └── rwupdt.h
│ │ ├── NumericalDiff
│ │ │ └── NumericalDiff.h
│ │ ├── Polynomials
│ │ │ ├── Companion.h
│ │ │ ├── PolynomialSolver.h
│ │ │ └── PolynomialUtils.h
│ │ ├── Skyline
│ │ │ ├── SkylineInplaceLU.h
│ │ │ ├── SkylineMatrixBase.h
│ │ │ ├── SkylineMatrix.h
│ │ │ ├── SkylineProduct.h
│ │ │ ├── SkylineStorage.h
│ │ │ └── SkylineUtil.h
│ │ ├── SparseExtra
│ │ │ ├── BlockOfDynamicSparseMatrix.h
│ │ │ ├── BlockSparseMatrix.h
│ │ │ ├── DynamicSparseMatrix.h
│ │ │ ├── MarketIO.h
│ │ │ ├── MatrixMarketIterator.h
│ │ │ └── RandomSetter.h
│ │ ├── SpecialFunctions
│ │ │ ├── arch
│ │ │ │ └── CUDA
│ │ │ │ └── CudaSpecialFunctions.h
│ │ │ ├── SpecialFunctionsArrayAPI.h
│ │ │ ├── SpecialFunctionsFunctors.h
│ │ │ ├── SpecialFunctionsHalf.h
│ │ │ ├── SpecialFunctionsImpl.h
│ │ │ └── SpecialFunctionsPacketMath.h
│ │ └── Splines
│ │ ├── SplineFitting.h
│ │ ├── SplineFwd.h
│ │ └── Spline.h
│ └── share
│ └── eigen3
│ └── cmake
│ ├── Eigen3Config.cmake
│ ├── Eigen3ConfigVersion.cmake
│ ├── Eigen3Targets.cmake
│ └── UseEigen3.cmake
├── gflags
│ ├── bin
│ │ ├── gflags_debug.dll
│ │ ├── gflags.dll
│ │ ├── gflags_nothreads_debug.dll
│ │ └── gflags_nothreads.dll
│ ├── include
│ │ └── gflags
│ │ ├── gflags_completions.h
│ │ ├── gflags_declare.h
│ │ ├── gflags_gflags.h
│ │ └── gflags.h
│ └── lib
│ ├── cmake
│ │ └── gflags
│ │ ├── gflags-config.cmake
│ │ ├── gflags-config-version.cmake
│ │ ├── gflags-nonamespace-targets.cmake
│ │ ├── gflags-nonamespace-targets-debug.cmake
│ │ ├── gflags-nonamespace-targets-release.cmake
│ │ ├── gflags-targets.cmake
│ │ ├── gflags-targets-debug.cmake
│ │ └── gflags-targets-release.cmake
│ ├── gflags_debug.lib
│ ├── gflags.lib
│ ├── gflags_nothreads_debug.lib
│ └── gflags_nothreads.lib
└── glog
├── bin
│ ├── glogd.dll
│ └── glog.dll
├── include
│ └── glog
│ ├── logging.h
│ ├── log_severity.h
│ ├── raw_logging.h
│ ├── stl_logging.h
│ └── vlog_is_on.h
└── lib
├── cmake
│ └── glog
│ ├── glog-config.cmake
│ ├── glog-config-version.cmake
│ ├── glog-modules.cmake
│ ├── glog-targets.cmake
│ ├── glog-targets-debug.cmake
│ └── glog-targets-release.cmake
├── glogd.lib
├── glog.lib
└── pkgconfig
└── libglog.pc
2158 directories, 20128 files
标签:
win10+vs2017环境下编译成功的Ceres库包含(Eigen,gflags,glog,suitesparse几个版本的库...
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论