{"id":13470707,"url":"https://github.com/tlaplus/tlaplus","last_synced_at":"2026-04-01T17:51:43.248Z","repository":{"id":37790453,"uuid":"50906927","full_name":"tlaplus/tlaplus","owner":"tlaplus","description":"TLC is a model checker for specifications written in TLA+. The TLA+Toolbox is an IDE for TLA+.   ","archived":false,"fork":false,"pushed_at":"2025-05-06T19:01:16.000Z","size":145295,"stargazers_count":2422,"open_issues_count":290,"forks_count":209,"subscribers_count":49,"default_branch":"master","last_synced_at":"2025-05-06T19:47:46.347Z","etag":null,"topics":["algorithms","high-performance","java","mit-license","model-checking","specifications","tla","verification"],"latest_commit_sha":null,"homepage":"https://www.tlapl.us","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tlaplus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"custom":["https://www.microsoft.com/en-us/research/"]}},"created_at":"2016-02-02T08:48:27.000Z","updated_at":"2025-05-06T18:43:43.000Z","dependencies_parsed_at":"2023-02-18T12:46:15.679Z","dependency_job_id":"90eef922-63c6-412e-ab3c-6a6a7720cd38","html_url":"https://github.com/tlaplus/tlaplus","commit_stats":{"total_commits":7957,"total_committers":63,"mean_commits":126.3015873015873,"dds":0.5578735704411211,"last_synced_commit":"ccacbf5ad2f1a898a746632c15ae61d59a0d4df1"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlaplus%2Ftlaplus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlaplus%2Ftlaplus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlaplus%2Ftlaplus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tlaplus%2Ftlaplus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tlaplus","download_url":"https://codeload.github.com/tlaplus/tlaplus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254052668,"owners_count":22006716,"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","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":["algorithms","high-performance","java","mit-license","model-checking","specifications","tla","verification"],"created_at":"2024-07-31T16:00:34.728Z","updated_at":"2026-04-01T17:51:43.240Z","avatar_url":"https://github.com/tlaplus.png","language":"Java","readme":"Overview\n--------\n[![](https://github.com/tlaplus/tlaplus/workflows/CI/badge.svg)](https://github.com/tlaplus/tlaplus/actions?query=workflow%3ACI)\n[![Maven Snapshot](https://img.shields.io/badge/maven-1.8.0--SNAPSHOT-blue)](https://central.sonatype.com/repository/maven-snapshots/org/lamport/tla2tools/)\n\nThis repository hosts the core TLA⁺ command line interface (CLI) Tools and the Toolbox integrated development environment (IDE).\nIts development is managed by the [TLA⁺ Foundation](https://foundation.tlapl.us/).\nSee http://tlapl.us for more information about TLA⁺ itself.\nFor the TLA⁺ proof manager, see http://proofs.tlapl.us.\n\nVersioned releases can be found on the [Releases](https://github.com/tlaplus/tlaplus/releases) page.\nCurrently, every commit to the master branch is built \u0026 uploaded to the [1.8.0 Clarke pre-release](https://github.com/tlaplus/tlaplus/releases/tag/v1.8.0).\nIf you want the latest fixes \u0026 features you can use that pre-release.\nIf you want to consume the TLA⁺ tools as a Java dependency in your software project, Maven packages are periodically published to [central.sonatype.org](https://central.sonatype.com/repository/maven-snapshots/org/lamport/tla2tools/1.8.0-SNAPSHOT/).\n\nUse\n---\nThe TLA⁺ tools require Java 11+ to run.\n\nTo use TLA⁺ from a graphical interface, see [the TLA⁺ VS Code extension](https://github.com/tlaplus/vscode-tlaplus/).\nThe Eclipse-based TLA⁺ Toolbox GUI is also available from this repository, but it is currently unmaintained.\n\nGet `tla2tools.jar` from the [releases](https://github.com/tlaplus/tlaplus/releases) to use the tools from the command line.\nThe `tla2tools.jar` file contains multiple TLA⁺ tools; after adding `tla2tools.jar` to your [`CLASSPATH`](https://docs.oracle.com/javase/tutorial/essential/environment/paths.html), the tools can be used as follows:\n```bash\nEXPORT CLASSPATH=tla2tools.jar\njava tla2sany.SANY -help  # The TLA⁺ parser\njava tlc2.TLC -help       # The TLA⁺ model checker\njava tlc2.REPL            # Enter the TLA⁺ REPL\njava pcal.trans -help     # The PlusCal-to-TLA⁺ translator\njava tla2tex.TLA -help    # The TLA⁺-to-LaTeX translator\njava tla2sany.xml.XMLExporter -help # Export TLA⁺ parse tree as XML\n```\nRunning `java -jar tla2tools.jar` is aliased to run `tlc2.TLC`.\n\nFor more information on using \u0026 consuming the TLA⁺ tools, see [`USE.md`](./USE.md).\n\nDeveloping \u0026 Contributing\n-------------------------\nThe TLA⁺ Tools and Toolbox IDE are both written in Java.\nThe TLA⁺ Tools source code is in [tlatools/org.lamport.tlatools](./tlatools/org.lamport.tlatools).\nThe Toolbox IDE is based on [Eclipse Platform](https://github.com/eclipse-platform) and is in the [toolbox](./toolbox) directory.\nFor instructions on building \u0026 testing these as well as setting up a development environment, see [DEVELOPING.md](DEVELOPING.md).\n\nWe welcome your contributions to this open source project!\nTLA⁺ is used in safety-critical systems, so we have a contribution process in place to ensure quality is maintained; read [CONTRIBUTING.md](CONTRIBUTING.md) before beginning work.\n\nLicense \u0026 Copyright\n-----------------\nCopyright © 199? HP Corporation\nCopyright © 2003 Microsoft Corporation\nCopyright © 2023 Linux Foundation\n\nLicensed under the [MIT License](LICENSE).\n\n","funding_links":["https://www.microsoft.com/en-us/research/"],"categories":["Java","静态分析"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftlaplus%2Ftlaplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftlaplus%2Ftlaplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftlaplus%2Ftlaplus/lists"}