blitz
blitz copied to clipboard
Blitz++ Multi-Dimensional Array Library for C++
Migrated from: https://sourceforge.net/p/blitz/bugs/70/ As reported by @kmjohnson3: > Configure only checks for papi library but does not check headers which are required for compile with library. Fixed locally by checking...
Migrated from: https://sourceforge.net/p/blitz/bugs/60/ At the very beginning of the blitz/bzconfig.h the GNU compiler for Apple is detected with: ```c++ #if defined(__APPLE__) #if defined(__GNUC__) /* GNU gcc compiler for newer Mac...
Migrated from: https://sourceforge.net/p/blitz/bugs/58/ The manual includes the following code in section 6.1: ```c++ Array A(5), B(5); A = 0; B = 1, 2, 3, 4, 5; vector I; I.push_back(2); I.push_back(4);...
Migrated from: https://sourceforge.net/p/blitz/bugs/66/ As reported by @aherrmann (?) or @AndreasHerrmann (?): > I believe that I found a bug in the assignment of a TinyMatrix into a sub-array of non-standard...
Migrated from: https://sourceforge.net/p/blitz/bugs/21/ As reported by @tesch on 2010-01-15: > ordering(i) can be uninitialized when checked in the debug code... algorithm might still be ok, but the debug code is...
Migrated from: https://sourceforge.net/p/blitz/bugs/18/ As reported by @sergiopasra on 2008-11-13: > A multilib package can be installed simultaneously in 32 and 64 bits versions. In linux, multilib can be summarized as...
Migrated from: https://sourceforge.net/p/blitz/bugs/17/ As reported by @mgrabner on 2008-08-18: > As the attached example demonstrates, a chained reduction of an array expression can only be processed when the intermediate results...
Migrated from: https://sourceforge.net/p/blitz/bugs/37/ the RectDomain does not work with Range::all(): ``` # include using namespace blitz; int main() { Array arr(2,2); arr = 1,2,3,4; Range rng_x = Range::all(); Range rng_y...
Migrated from: https://sourceforge.net/p/blitz/bugs/64/ ``` e.g. in section 2.8.1 on the output mechanism, the old output method is apparent: 4 x 5 [ ... while the new one is: (1,4) x...
Migrated from: https://sourceforge.net/p/blitz/bugs/34/ As reported by @torquil on 2011-12-10: > It seems that the latest Mercurial source does no contain blitz/array-old.h. The example "cfd.cpp" depends on this file, so it...