joeydumont / wignerSymbols

A C++ library to compute the Wigner 3j- and 6j- symbols (with FORTRAN backend).
GNU Lesser General Public License v3.0
30 stars 15 forks source link

Fix bug in computation #5

Closed seweber closed 8 years ago

seweber commented 8 years ago

The code has a lines akin to

int index = (int)l1-l1min;

This is obviously supposed to be

int index = (int)(l1-l1min);
joeydumont commented 8 years ago

Thank you for noticing and for the fix!