How To Install isl on CentOS 8
Introduction
In this tutorial we learn how to install isl
on CentOS 8.
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 6.el8 x86_64 841 k isl-0.16.1-6.el8.src.rpm appstream 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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install isl.
Install isl on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 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 CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 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 CentOS 8
To uninstall only the isl
package we can use the following command:
sudo dnf remove isl
isl Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/62c9b16f531bb6504a92cc98af0c58f47a0a01
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/dc452fac732f7ad4424dcc13ffc7c572bbc8f6
/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
/usr/lib/.build-id
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/03310350f6cc05e5717d0dbfc544b7620af777
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/b5f2fdbfddfa0468b82d5bc85bec22666d52be
/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
References
- [isl website](http://isl.gforge.inria.fr/ http://isl.gforge.inria.fr/)
Summary
In this tutorial we learn how to install isl
on CentOS 8 using yum and dnf.