How To Install drat2er on Fedora 34
Introduction
In this tutorial we learn how to install drat2er
on Fedora 34.
What is drat2er
Drat2er is a tool for transforming proofs that are usually produced by SAT solvers. It takes as input a propositional formula (specified in the DIMACS format) together with a DRAT proof (DRAT is the current standard format for proofs in SAT solving), and outputs an extended-resolution proof of the formula in either the TRACECHECK or the DRAT format. The details of this proof transformation are described in the paper “Extended Resolution Simulates DRAT” (IJCAR 2018). Note that if drat2er is given as input a DRUP proof, then it transforms this DRUP proof into an ordinary resolution proof. drat2er 0 0.6.20190307.521caf1.fc34 x86_64 72 k drat2er-0-0.6.20190307.521caf1.fc34.src.rpm fedora Proof transformer for propositional logic https MIT Drat2er is a tool for transforming proofs that are usually produced by SAT solvers. It takes as input a propositional formula (specified in the DIMACS format) together with a DRAT proof (DRAT is the current standard format for proofs in SAT solving), and outputs an extended-resolution proof of the formula in either the TRACECHECK or the DRAT format. The details of this proof transformation are described in the paper “Extended Resolution Simulates DRAT” (IJCAR 2018). Note that if drat2er is given as input a DRUP proof, then it transforms this DRUP proof into an ordinary resolution proof.
We can use yum
or dnf
to install drat2er
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install drat2er.
Install drat2er on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install drat2er
using dnf
by running the following command:
sudo dnf -y install drat2er
Install drat2er on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install drat2er
using yum
by running the following command:
sudo yum -y install drat2er
How To Uninstall drat2er on Fedora 34
To uninstall only the drat2er
package we can use the following command:
sudo dnf remove drat2er
drat2er Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/43
/usr/lib/.build-id/43/5969d3b7ec0fd245c3df5929b95cffdd01fd33
/usr/lib64/libdrat2er.so.0
/usr/lib64/libdrat2er.so.0.0.0
/usr/share/licenses/drat2er
/usr/share/licenses/drat2er/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/81
/usr/lib/.build-id/81/a4f5aea4f4be6f8daf174b39f328b806f3d1f3
/usr/lib/libdrat2er.so.0
/usr/lib/libdrat2er.so.0.0.0
/usr/share/licenses/drat2er
/usr/share/licenses/drat2er/LICENSE
References
- [drat2er website](https://github.com/alex-ozdemir/drat2er/ https://github.com/alex-ozdemir/drat2er/)
Summary
In this tutorial we learn how to install drat2er
on Fedora 34 using yum and dnf.