Gianluca Bianco

Results 16 issues of Gianluca Bianco

Remove the progress bar [`getTime()`](https://github.com/JustWhit3/osmanip/blob/main/include/osmanip/progressbar/progress_bar.hpp) method and replace it with an `elapsed_time()` method which counts the elapsed time of the progress bar.

update

On Reddit, a user asked for a better way to use manipulators and suggested wrapping them in order to use them in a more compact way: ```C++ std::cout

update

Add other cursor methods to the [proper header](https://github.com/JustWhit3/osmanip/blob/main/include/osmanip/manipulators/cursor.hpp). Example: ```C++ printf("\x1b%d", 7); // Save cursor printf("\x1b%d", 8); // Restore saved cursor printf("\x1b[6n"); // Print current cursor position ```

update

Add benchmarking studies with respect to the following repositories: [termcolor](https://github.com/ikalnytskyi/termcolor), [sgr](https://github.com/datafl4sh/sgr), [cpp_sgr](https://github.com/mrhatch97/cpp_sgr), [ncurses](https://github.com/mirror/ncurses) and [fmt::color](https://github.com/fmtlib/fmt). Add also the related documentation. See [this](https://github.com/JustWhit3/ptc-print) as an example about how to do benchmark...

study

The [progress bar header](https://github.com/JustWhit3/osmanip/blob/main/include/osmanip/progressbar/progress_bar.hpp) has been written some time ago and the code structure can be improved. For example, it can be separated in different classes, regarding the type of...

update

### Informations - **Qiskit Aer version**: master branch - **Python version**: 3.12.0 - **Operating system**: Ubuntu 22.04.3 ### What is the current behavior? I am just trying to install the...

bug

Add [comparison studies](https://github.com/JustWhit3/ptc-print#comparison-with-other-libraries) with `std::print`.

study

Enable the printing of [SFML](https://www.sfml-dev.org/) types. The idea is to create a new header which hosts overload of operator `

new feature

Values of multiple coefficients are slow to be computed. This is due to the [`parsed_f`](https://github.com/JustWhit3/SAFD-algorithm/blob/main/src/functions.cpp#:~:text=*/-,double%20parsed_f,-(%20const%20std)) function definition, which uses the `ExprTk` library to compute its return value. A possible solution...

For values of the quantum number m > 5, the value of the computed coefficients start to decrease consistently. This is due to the fact that to compute the Legendre...