55 lines
6.0 KiB
XML
55 lines
6.0 KiB
XML
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>GPLv3 on Formal Methods Tools</title>
|
|
<link>http://localhost:1313/licenses/gplv3/</link>
|
|
<description>Recent content in GPLv3 on Formal Methods Tools</description>
|
|
<generator>Hugo</generator>
|
|
<language>en-us</language>
|
|
<lastBuildDate>Sat, 07 Jun 2025 00:00:00 +0000</lastBuildDate>
|
|
<atom:link href="http://localhost:1313/licenses/gplv3/index.xml" rel="self" type="application/rss+xml" />
|
|
<item>
|
|
<title>OpenSMT</title>
|
|
<link>http://localhost:1313/tools/sat-smt/opensmt/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/sat-smt/opensmt/</guid>
|
|
<description><p>OpenSMT is a compact and open-source SMT-solver written in C++, with the main goal of making SMT-Solvers easy to understand and use as a computational engine for formal verification. OpenSMT is built on top of <a href="http://localhost:1313/tools/minisat" >MiniSAT</a>.</p></description>
|
|
</item>
|
|
<item>
|
|
<title>ParaFROST</title>
|
|
<link>http://localhost:1313/tools/sat-smt/parafrost/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/sat-smt/parafrost/</guid>
|
|
<description><p>ParaFROST is a parallel SAT solver with GPU-accelerated inprocessing capable of harnessing NVIDIA CUDA-enabled GPUs in applying modern inprocessing tecnhiques in parallel.</p>
<h2 id="apis-and-bindings">APIs and Bindings</h2>
<p>This tool is available through the following interfaces:</p>
<ul>
<li><strong>C API:</strong> <a href="https://z3prover.github.io/api/html/group__capi.html" target="_blank" >Z3 C API Reference</a></li>
<li><strong>C++ API:</strong> <a href="https://z3prover.github.io/api/html/namespacez3.html" target="_blank" >Z3 C++ Namespace Reference</a></li>
<li><strong>.NET API:</strong> <a href="https://z3prover.github.io/api/html/namespace_microsoft_1_1_z3.html" target="_blank" >Z3 .NET Namespace Reference</a></li>
<li><strong>Java API:</strong> <a href="https://z3prover.github.io/api/html/namespacecom_1_1microsoft_1_1z3.html" target="_blank" >Z3 Java API Reference</a></li>
<li><strong>Python bindings:</strong> <a href="https://pypi.org/project/z3-solver/" target="_blank" >z3-solver PyPI package</a> (<a href="https://z3prover.github.io/api/html/z3.html" target="_blank" >Documentation</a>)</li>
<li><strong>Rust bindings:</strong> <a href="https://crates.io/crates/z3" target="_blank" >z3 crate on crates.io</a></li>
</ul></description>
|
|
</item>
|
|
<item>
|
|
<title>SMTInterpol</title>
|
|
<link>http://localhost:1313/tools/sat-smt/smtinterpol/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/sat-smt/smtinterpol/</guid>
|
|
<description><p>SMTInterpol is an SMT Solver that can compute Craig interpolants for various theories.</p>
<h2 id="apis-and-bindings">APIs and Bindings</h2>
<p>This tool is available through the following interfaces:</p>
<ul>
<li><strong>Java API:</strong> <a href="https://ultimate.informatik.uni-freiburg.de/smtinterpol/doc/index.html" target="_blank" >Java API Reference</a></li>
</ul></description>
|
|
</item>
|
|
<item>
|
|
<title>STAMINA</title>
|
|
<link>http://localhost:1313/tools/prob/stamina/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/prob/stamina/</guid>
|
|
<description><p>A state-space truncation tool for Markov-Chains that can analyze infinite-sized models. Intefaces with either <a href="../storm" >Storm</a> or <a href="../prism" >PRISM</a>.</p></description>
|
|
</item>
|
|
<item>
|
|
<title>Storm</title>
|
|
<link>http://localhost:1313/tools/prob/storm/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/prob/storm/</guid>
|
|
<description><p>Storm is a tool for the analysis of systems involving random or probabilistic phenomena.</p></description>
|
|
</item>
|
|
<item>
|
|
<title>Yices 2</title>
|
|
<link>http://localhost:1313/tools/sat-smt/yices/</link>
|
|
<pubDate>Sat, 07 Jun 2025 00:00:00 +0000</pubDate>
|
|
<guid>http://localhost:1313/tools/sat-smt/yices/</guid>
|
|
<description><p>Yices is an SMT solver developed by SRI International. It is widely used for checking the satisfiability of logical formulas over various theories. It supports the SMT-LIB standard and its own input language, and provides APIs for several programming languages, making it suitable for research and industrial applications in software and hardware verification.</p>
<h2 id="apis-and-bindings">APIs and Bindings</h2>
<p>This tool is available through the following interfaces:</p>
<ul>
<li><strong>General API:</strong> <a href="https://yices.csl.sri.com/doc/index.html" target="_blank" >Yices API Reference</a></li>
<li><strong>Python bindings:</strong> <a href="https://pypi.org/project/yices/" target="_blank" >yices2 PyPI package</a></li>
<li><strong>Rust bindings:</strong> <a href="https://crates.io/crates/yices2" target="_blank" >yices2 crate on crates.io</a></li>
</ul></description>
|
|
</item>
|
|
</channel>
|
|
</rss>
|