{"id":28365549,"url":"https://github.com/osqp/qdldl-python","last_synced_at":"2025-12-11T22:47:45.611Z","repository":{"id":42086183,"uuid":"183139219","full_name":"osqp/qdldl-python","owner":"osqp","description":"Python interface to the QDLDL (https://github.com/osqp/qdldl) free LDL factorization routine for quasi-definite linear systems","archived":false,"fork":false,"pushed_at":"2025-11-24T15:00:39.000Z","size":335,"stargazers_count":15,"open_issues_count":16,"forks_count":22,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-07T11:29:17.630Z","etag":null,"topics":["linear-algebra","numerical-analysis","numerical-optimization"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/osqp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-04-24T03:18:42.000Z","updated_at":"2025-08-11T02:26:25.000Z","dependencies_parsed_at":"2025-01-02T16:33:51.516Z","dependency_job_id":"cb5210c2-33b3-491c-ac23-e8e2edadff43","html_url":"https://github.com/osqp/qdldl-python","commit_stats":{"total_commits":145,"total_committers":4,"mean_commits":36.25,"dds":0.08965517241379306,"last_synced_commit":"8211ee6f2338232b7763596659fd69f6a7d1dcc4"},"previous_names":["oxfordcontrol/qdldl-python"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/osqp/qdldl-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osqp%2Fqdldl-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osqp%2Fqdldl-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osqp%2Fqdldl-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osqp%2Fqdldl-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/osqp","download_url":"https://codeload.github.com/osqp/qdldl-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osqp%2Fqdldl-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27620954,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-09T02:00:09.185Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["linear-algebra","numerical-analysis","numerical-optimization"],"created_at":"2025-05-28T22:10:15.419Z","updated_at":"2025-12-11T22:47:45.605Z","avatar_url":"https://github.com/osqp.png","language":"C","readme":"# qdldl-python\n\n![github actions](https://github.com/oxfordcontrol/qdldl-python/workflows/Build/badge.svg?branch=master)\n\nPython interface to the [QDLDL](https://github.com/oxfordcontrol/qdldl/)\nfree LDL factorization routine for quasi-definite linear systems: `Ax =\nb`.\n\n## Installation\n\nThis package can be directly installed via pip,\n\n```\npip install qdldl\n```\n\n## Usage\n\nInitialize the factorization with\n\n```\nimport qdldl\nF = qdldl.Solver(A)\n```\n\nwhere `A` must be a square quasi-definite matrix in [scipy sparse CSC\nformat](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csc_matrix.html).\n\nThe algorithm internally converts the matrix into upper triangular format. If `A` is already upper-triangular, you can specify it with the argument `upper=True` to the `qdldl.Solver` constructor.\n\nTo solve the linear system for a right-hand side `b`, just write\n\n```\nx = F.solve(b)\n```\n\nTo update the factorization without changing the sparsity pattern of `A` you can run\n\n```\nF.update(A_new)\n```\n\nwhere `A_new` is a sparse matrix in CSR format with the same sparsity pattern as `A`.\n\nThe algorithm internally converts `A_new` into upper triangular format. If `A_new` is already upper-triangular, you can specify it with the argument `upper=True` to the `F.update` function.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosqp%2Fqdldl-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosqp%2Fqdldl-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosqp%2Fqdldl-python/lists"}