Blitz logo

Blitz Bugs :

From: Andreas Reifschneider (AndreasReifschneider_at_[hidden])
Date: 2004-05-08 07:36:24


And the rest of the typos and errors I found in documentation:

4.2: Declaring stencil objects

BZ_DECLARE_STENCIL4(acoustic2D,P1,P2,P3,c)
  A = 2 * P2 + c * (-4 * P2(0,0) + P2(0,1) + P2(0,-1) + P2(1,0) + P2(-1,0))
      - P1;
BZ_END_STENCIL

=> Above A should be replaced by P3.

7.1: Template parameters and types

T
    is the numeric type of the vector (float, double, int, complex<float>,
etc.;

=> Closing parethesis after "etc." is missing.

iterator
    is an STL-style iterator.

=> Probably T_iterator should be mentioned, too.

constIterator
    is an STL-style const iterator.

=> There is only T_constIterator and const_iterator in tinyvec.h.

9.2: Note: Parallel random number generators

=> SPRNG link is dead.

Regards, Andreas.