How to Install and Uninstall pcg-cpp-devel.x86_64 Package on CentOS Stream 9
Last updated: November 26,2024
1. Install "pcg-cpp-devel.x86_64" package
This tutorial shows how to install pcg-cpp-devel.x86_64 on CentOS Stream 9
$
sudo dnf update
Copied
$
sudo dnf install
pcg-cpp-devel.x86_64
Copied
2. Uninstall "pcg-cpp-devel.x86_64" package
In this section, we are going to explain the necessary steps to uninstall pcg-cpp-devel.x86_64 on CentOS Stream 9:
$
sudo dnf remove
pcg-cpp-devel.x86_64
Copied
$
sudo dnf autoremove
Copied
3. Information about the pcg-cpp-devel.x86_64 package on CentOS Stream 9
Last metadata expiration check: 0:51:45 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : pcg-cpp-devel
Version : 0.98.1^20220408git428802d
Release : 1.el9
Architecture : x86_64
Size : 34 k
Source : pcg-cpp-0.98.1^20220408git428802d-1.el9.src.rpm
Repository : epel
Summary : PCG Random Number Generation, C++ Edition
URL : https://github.com/imneme/pcg-cpp
License : MIT or ASL 2.0
Description : This code provides an implementation of the PCG family of random number
: generators, which are fast, statistically excellent, and offer a number of
: useful features.
:
: Full details can be found at the PCG-Random website
: (http://www.pcg-random.org/). This version of the code provides many family
: members – if you just want one simple generator, you may prefer the minimal C
: version of the library.
:
: There are two kinds of generator, normal generators and extended generators.
: Extended generators provide k dimensional equidistribution and can perform
: party tricks, but generally speaking most people only need the normal
: generators.
:
: There are two ways to access the generators, using a convenience typedef or by
: using the underlying templates directly (similar to C++11’s std::mt19937
: typedef vs its std::mersenne_twister_engine template). For most users, the
: convenience typedef is what you want, and probably you’re fine with pcg32 for
: 32-bit numbers. If you want 64-bit numbers, either use pcg64 (or, if you’re on
: a 32-bit system, making 64 bits from two calls to pcg32_k2 may be faster).
Available Packages
Name : pcg-cpp-devel
Version : 0.98.1^20220408git428802d
Release : 1.el9
Architecture : x86_64
Size : 34 k
Source : pcg-cpp-0.98.1^20220408git428802d-1.el9.src.rpm
Repository : epel
Summary : PCG Random Number Generation, C++ Edition
URL : https://github.com/imneme/pcg-cpp
License : MIT or ASL 2.0
Description : This code provides an implementation of the PCG family of random number
: generators, which are fast, statistically excellent, and offer a number of
: useful features.
:
: Full details can be found at the PCG-Random website
: (http://www.pcg-random.org/). This version of the code provides many family
: members – if you just want one simple generator, you may prefer the minimal C
: version of the library.
:
: There are two kinds of generator, normal generators and extended generators.
: Extended generators provide k dimensional equidistribution and can perform
: party tricks, but generally speaking most people only need the normal
: generators.
:
: There are two ways to access the generators, using a convenience typedef or by
: using the underlying templates directly (similar to C++11’s std::mt19937
: typedef vs its std::mersenne_twister_engine template). For most users, the
: convenience typedef is what you want, and probably you’re fine with pcg32 for
: 32-bit numbers. If you want 64-bit numbers, either use pcg64 (or, if you’re on
: a 32-bit system, making 64 bits from two calls to pcg32_k2 may be faster).