How To Install vinci on Fedora 34

vinci is Algorithms for volume computation

Introduction

In this tutorial we learn how to install vinci on Fedora 34.

What is vinci

The volume is one of the central properties of a convex body, and volume computation is involved in many hard problems. Applications range from rather classical ones as in convex optimization to problems in remote fields like algebraic geometry where the number of common roots of polynomials can be related to a special polytope volume. Part of the fascination of the subject stems from the discrepancy between the intuitive notion of “volume” and the actual hardness of computing it. Despite this discouraging complexity - algorithms in general need exponential time in the input dimension - steadily growing computer power enables us to attack problems of practical interest. Vinci is an easy to install C package that implements the state of the art algorithms for volume computation. It is the fruit of a research project carried out at the IFOR (Institute for Operations Research) at ETH Zürich, in collaboration with Benno Büeler and Komei Fukuda.

We can use yum or dnf to install vinci on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install vinci.

Install vinci 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 vinci using dnf by running the following command:

sudo dnf -y install vinci

Install vinci 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 vinci using yum by running the following command:

sudo yum -y install vinci

How To Uninstall vinci on Fedora 34

To uninstall only the vinci package we can use the following command:

sudo dnf remove vinci

vinci Package Contents on Fedora 34

/usr/bin/vinci
/usr/lib/.build-id
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/c54e9b6669d4d18f2a03fb5a88fafbd1df644d
/usr/share/doc/vinci
/usr/share/doc/vinci/ChangeLog
/usr/share/doc/vinci/manual.pdf
/usr/share/licenses/vinci
/usr/share/licenses/vinci/COPYING
/usr/share/man/man1/vinci.1.gz

References

Summary

In this tutorial we learn how to install vinci on Fedora 34 using yum and dnf.