How To Install azove on Fedora 34
Introduction
In this tutorial we learn how to install azove
on Fedora 34.
What is azove
Azove is a tool designed for counting (without explicit enumeration) and enumeration of 0/1 vertices. Given a polytope by a linear relaxation or facet description P = {x | Ax <= b}, all 0/1 points lying in P can be counted or enumerated. This is done by intersecting the polytope P with the unit-hypercube [0,1] d. The integral vertices (no fractional ones) of this intersection will be enumerated. If P is a 0/1 polytope, azove solves the vertex enumeration problem. In fact it can also solve the 0/1 knapsack problem and the 0/1 subset sum problem.
We can use yum
or dnf
to install azove
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install azove.
Install azove 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 azove
using dnf
by running the following command:
sudo dnf -y install azove
Install azove 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 azove
using yum
by running the following command:
sudo yum -y install azove
How To Uninstall azove on Fedora 34
To uninstall only the azove
package we can use the following command:
sudo dnf remove azove
azove Package Contents on Fedora 34
/usr/bin/azove2
/usr/lib/.build-id
/usr/lib/.build-id/93
/usr/lib/.build-id/93/a25992eb545c7e344bb0a80ecb7457d5b79530
/usr/share/doc/azove
/usr/share/doc/azove/INSTALL
/usr/share/doc/azove/README
/usr/share/licenses/azove
/usr/share/licenses/azove/COPYING
/usr/share/man/man1/azove2.1.gz
References
Summary
In this tutorial we learn how to install azove
on Fedora 34 using yum and dnf.