coretran icon indicating copy to clipboard operation
coretran copied to clipboard

An easy to follow library to make Fortran easier in general with wrapped interfaces, sorting routines, kD-Trees, and other algorithms to handle scientific data and concepts. The library contains core...

Results 11 coretran issues
Sort by recently updated
recently updated
newest added

Modified fastTwoDiff and fastTwoSum in order to compile with OneAPI ifort (2021.5.0 20211109). Added an interface to m_geometry for fastTwoDiff and fastTwoSum. Prior to modification got the following error ```...

I've tried compiling with all the versions of intels ifortran compiler which I have available on my system: ifortran 16.0 sm_maths_d1D.f90 error 6834: Array speicifications must be given for result...

With gfortran 9.3, building coretran fails on Linux and macOS. Here's a sample traceback on macOS: ``` [ 50%] Building Fortran object CMakeFiles/coretran.dir/sorting/m_select.f90.o [ 51%] Building Fortran object CMakeFiles/coretran.dir/maths/m_maths.f90.o [...

Hi, @leonfoks I'm testing the functionalities of ```idDynamicArray_Class```. And I know that I can remove one element of an array by using ```idDynamicArray%remove(index)```, where ```index``` is an integer. What I...

Building cortran with shared libs off fails with coretranTest. Build succeds with coretran but fails with the test as below. Build with sharedlibs on succeeds. Not sure if this is...

Hello, @leonfoks Following your instructions, I typed ```cmake ../src``` in the command line, and everything is OK. Then I typed ```make``` to compile the library. However, it failed and returned...

Hi, I found three possible issues when I tested "coretran" with some simple programs. 1. Outputs of ```rngInteger``` are constants For testing the functionalities of ```rngInteger```, I write the code...

c:\fortran\public_domain\coretran>gfortran -c --verbose sm_rngChiSq.f90 Built by Equation Solution . Using built-in specs. COLLECT_GCC=gfortran Target: x86_64-w64-mingw32 Configured with: ../gcc-8-20180408-mingw/configure --host=x86_64-w64-mingw32 --build=x86_64-unknown-linux-gnu --target=x86_64-w64-mingw32 --prefix=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/gcc/8-20180408 --with-sysroot=/home/gfortran/gcc-home/binary/mingw32/cross/x86_64/gcc/8-20171217 --with-gcc --with-gnu-ld --with-gnu-as --with-ld64=no --with-gmp=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/gmp --with-mpfr=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/mpfr --with-mpc=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/mpc...

kNearest may miss points that lie "exactly" at a distance equal to the query radius due to round off errors. Consider changing the distance comparison to a close(a,b) function.

I understand the advantage of demonstrating the power of coretran on a very simple example, however the native Fortran code for the mean example is unnecessarily verbose and misrepresents the...