├── .clang-format ├── .editorconfig ├── .github ├── dependabot.yaml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── configure ├── cmake │ └── cmake_uninstall.cmake.in ├── qdldl_types.h.in └── qdldl_version.h.in ├── examples └── example.c ├── include ├── .gitignore └── qdldl.h ├── src └── qdldl.c └── tests ├── CMakeLists.txt ├── minunit.h ├── qdldl_tester.c ├── test_basic.h ├── test_identity.h ├── test_osqp_kkt.h ├── test_rank_deficient.h ├── test_singleton.h ├── test_sym_structure.h ├── test_tril_structure.h ├── test_two_by_two.h └── test_zero_on_diag.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/README.md -------------------------------------------------------------------------------- /configure/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/configure/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /configure/qdldl_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/configure/qdldl_types.h.in -------------------------------------------------------------------------------- /configure/qdldl_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/configure/qdldl_version.h.in -------------------------------------------------------------------------------- /examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/examples/example.c -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/qdldl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/include/qdldl.h -------------------------------------------------------------------------------- /src/qdldl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/src/qdldl.c -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/minunit.h -------------------------------------------------------------------------------- /tests/qdldl_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/qdldl_tester.c -------------------------------------------------------------------------------- /tests/test_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_basic.h -------------------------------------------------------------------------------- /tests/test_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_identity.h -------------------------------------------------------------------------------- /tests/test_osqp_kkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_osqp_kkt.h -------------------------------------------------------------------------------- /tests/test_rank_deficient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_rank_deficient.h -------------------------------------------------------------------------------- /tests/test_singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_singleton.h -------------------------------------------------------------------------------- /tests/test_sym_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_sym_structure.h -------------------------------------------------------------------------------- /tests/test_tril_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_tril_structure.h -------------------------------------------------------------------------------- /tests/test_two_by_two.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_two_by_two.h -------------------------------------------------------------------------------- /tests/test_zero_on_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/qdldl/HEAD/tests/test_zero_on_diag.h --------------------------------------------------------------------------------