How To Install lrslib on Fedora 34
Introduction
In this tutorial we learn how to install lrslib
on Fedora 34.
What is lrslib
lrslib is a self-contained ANSI C implementation as a callable library of the reverse search algorithm for vertex enumeration/convex hull problems and comes with a choice of three arithmetic packages. Input file formats are compatible with Komei Fukuda’s cdd package (cddlib). All computations are done exactly in either multiple precision or fixed integer arithmetic. Output is not stored in memory, so even problems with very large output sizes can sometimes be solved. lrslib 7.1b 1.fc34 x86_64 130 k lrslib-7.1b-1.fc34.src.rpm updates Reverse search for vertex enumeration/convex hull problems http GPLv2+ lrslib is a self-contained ANSI C implementation as a callable library of the reverse search algorithm for vertex enumeration/convex hull problems and comes with a choice of three arithmetic packages. Input file formats are compatible with Komei Fukuda’s cdd package (cddlib). All computations are done exactly in either multiple precision or fixed integer arithmetic. Output is not stored in memory, so even problems with very large output sizes can sometimes be solved.
We can use yum
or dnf
to install lrslib
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lrslib.
Install lrslib 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 lrslib
using dnf
by running the following command:
sudo dnf -y install lrslib
Install lrslib 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 lrslib
using yum
by running the following command:
sudo yum -y install lrslib
How To Uninstall lrslib on Fedora 34
To uninstall only the lrslib
package we can use the following command:
sudo dnf remove lrslib
lrslib Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/99df17a025fe50696d191ede8f9b476932aa68
/usr/lib64/liblrs.so.1
/usr/lib64/liblrs.so.1.0.0
/usr/share/doc/lrslib
/usr/share/doc/lrslib/README
/usr/share/licenses/lrslib
/usr/share/licenses/lrslib/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/a586957ba0fc555410bfd5faa9fe5abb0af915
/usr/lib64/liblrs.so.1
/usr/lib64/liblrs.so.1.0.0
/usr/share/doc/lrslib
/usr/share/doc/lrslib/README
/usr/share/licenses/lrslib
/usr/share/licenses/lrslib/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/22897f27b7134bb47175b3484e4a18c2fcf6d1
/usr/lib/liblrs.so.1
/usr/lib/liblrs.so.1.0.0
/usr/share/doc/lrslib
/usr/share/doc/lrslib/README
/usr/share/licenses/lrslib
/usr/share/licenses/lrslib/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/a09dc14708020b0e5b7cc5de255f59177614f3
/usr/lib/liblrs.so.1
/usr/lib/liblrs.so.1.0.0
/usr/share/doc/lrslib
/usr/share/doc/lrslib/README
/usr/share/licenses/lrslib
/usr/share/licenses/lrslib/COPYING
References
Summary
In this tutorial we learn how to install lrslib
on Fedora 34 using yum and dnf.