/*************************************************************************** nuk.h - description ------------------- begin : Die Feb 19 12:20:21 CET 2002 copyright : (C) 2002 by Sven Klauke email : sklauke@wiwi.uni-bielefeld.de Institute of Mathematical Economics (IMW) University of Bielefeld, Germany http://www.wiwi.uni-bielefeld.de/~imw/ I ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ // Modified by Alex Kontorovich & John F. Nash Jr. 6/11/2002 //#include //using namespace std; //extern int n; void calc_nuc(double *, double, double **); //inline int j_in_i(int j, int i) {return (i>>j)%2;} int j_in_i(int j, int i) { return (i >> (n-j-1)) % 2; }