How To Install isl on Fedora 34
Introduction
In this tutorial we learn how to install isl
on Fedora 34.
What is isl
isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, computing the lexicographic minimum using parametric integer programming, coalescing and parametric vertex enumeration. It also includes an ILP solver based on generalized basis reduction, transitive closures on maps (which may encode infinite graphs), dependence analysis and bounds on piecewise step-polynomials. isl 0.16.1 13.fc34 x86_64 884 k isl-0.16.1-13.fc34.src.rpm fedora Integer point manipulation library http MIT isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, computing the lexicographic minimum using parametric integer programming, coalescing and parametric vertex enumeration. It also includes an ILP solver based on generalized basis reduction, transitive closures on maps (which may encode infinite graphs), dependence analysis and bounds on piecewise step-polynomials.
We can use yum
or dnf
to install isl
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install isl.
Install isl 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 isl
using dnf
by running the following command:
sudo dnf -y install isl
Install isl 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 isl
using yum
by running the following command:
sudo yum -y install isl
How To Uninstall isl on Fedora 34
To uninstall only the isl
package we can use the following command:
sudo dnf remove isl
isl Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/63
/usr/lib/.build-id/63/aa3f9323b45fe66bdc103f43b618b960d2cc53
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/27f063cf135109cc21d21a11bc8b39b267299f
/usr/lib64/libisl.so.13
/usr/lib64/libisl.so.13.1.0
/usr/lib64/libisl.so.15
/usr/lib64/libisl.so.15.1.1
/usr/share/doc/isl
/usr/share/doc/isl/AUTHORS
/usr/share/doc/isl/ChangeLog
/usr/share/doc/isl/README
/usr/share/gdb/auto-load/usr/lib64/libisl.so.13.1.0-gdb.py
/usr/share/gdb/auto-load/usr/lib64/libisl.so.15.1.1-gdb.py
/usr/share/licenses/isl
/usr/share/licenses/isl/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/9ba6b3a7ef766e9e005ec43bac7479af5536e6
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/1ec38afc049193adb02d81551c3ef07781eab6
/usr/lib/libisl.so.13
/usr/lib/libisl.so.13.1.0
/usr/lib/libisl.so.15
/usr/lib/libisl.so.15.1.1
/usr/share/doc/isl
/usr/share/doc/isl/AUTHORS
/usr/share/doc/isl/ChangeLog
/usr/share/doc/isl/README
/usr/share/gdb/auto-load/usr/lib/libisl.so.13.1.0-gdb.py
/usr/share/gdb/auto-load/usr/lib/libisl.so.15.1.1-gdb.py
/usr/share/licenses/isl
/usr/share/licenses/isl/LICENSE
References
- [isl website](http://isl.gforge.inria.fr/ http://isl.gforge.inria.fr/)
Summary
In this tutorial we learn how to install isl
on Fedora 34 using yum and dnf.