Semen Yesylevskyy

Results 9 issues of Semen Yesylevskyy

I'm trying to install shenfun using pip on Ubuntu 18.04. I've installed openmpi and fftw3 from repositories and then getting the following: ``` $ pip3 install --no-cache-dir shenfun Collecting shenfun...

This is a question of documentation rather than an issue. I can't find any example of the following very common scenario: ``` std::vector some_func(); ... // We want to expose...

enhancement
help wanted

It seems that `nalgebra::SymmetricEigen` doesn't sort eigenvectors properly in the ascending order of eigenvalues, while `nalgebra_lapack::SymmetricEigen` does this correctly. This [example code](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=2ed753eb7f74c683df6bf89d5f415e69) produces different order of eigenvalues in `nalgebra` and...

### Crate name molar_powersasa, molar_gromacs ### Build failure link https://docs.rs/crate/molar_powersasa/0.1.2/builds/1156669 ### Additional details These crates are wrappers over C/C++ code that is built with CMake. CMake fetches C++ libraries (such...

This change adds an optional arguments TARGETS_TO_INSTALL that allows to add several targets, not just a single target PROJECT_NAME. When this option is not set the previous behavior is preserved...

The doctests annotated with 'should_panic' are handled incorrectly: ``` //! ```should_panic ... //! ``` ``` Is transformed to ``` ```should_panic ... ```rust ``` While the correct would be ``` ```rust...

The code attributes are handled incorrectly the line `//! #[derive(Error,Debug)]` is incorrectly transformed to `##[derive(Error,Debug)]` (extra # symbol).

### Bug Description When building a package `pymolar` from source distribution (downloaded from pypi) maturing fails with error "Failed to normalize python source path `python`". If the same package is...

bug
sdist

In C++ clone pattern is used in many APIs: ``` class A { public: A(); A(const A& other) virtual void func()=0; virtual A* clone() const { return new A(*this); }...

docs