stdlib
stdlib copied to clipboard
Fortran Standard Library
## Description I noticed inconsistent documentation for the I/O interface descriptions in `stdlib_string_type.fypp`. Both `read(formatted)` and `read(unformatted)` have the same comment: > read a character sequence from a connected *unformatted*...
I ran across [this](https://community.intel.com/t5/Intel-Fortran-Compiler/unlimited-polymorphic-parameter-and-transfer-intrinsic/td-p/1062112) thread on Intel Fortran forums, which based on their interpretation of the standard, the transfer intrinsic should accept an unlimited polymorphic argument. Was excited to see...
### Motivation The current testing for the intrinsics `sum` and `dot_product` are overly loose. It would be better to have a more stringent testing approach. A reference work that can...
### Motivation It would be a very useful feature to add Nearest Neighbors search such as KDtree, BallTree and/or Octree ### Prior Art Some Fortran references: * https://github.com/ivan-pi/kdtree2 * https://www.sciencedirect.com/science/article/pii/S0309170824002057...