Changeset 3001


Ignore:
Timestamp:
2002-02-27T10:48:15+13:00 (22 years ago)
Author:
jrm21
Message:

replaced a comment with /* */, as most c compilers won't like it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/packages/mg/lib/bitio_gen.c

    r2741 r3001  
    2424/*
    2525   $Log$
     26   Revision 1.3  2002/02/26 21:48:15  jrm21
     27   replaced a // comment with /* */, as most c compilers won't like it.
     28
    2629   Revision 1.2  2001/09/21 12:45:03  kjm18
    2730   updated mg to be in line with version mg-1.3f. Now uses long long for
     
    142145BIO_Gamma_Bound (int N, int p)
    143146{
    144   //return ((int) (p * (2 * log2 ((double) N / p) + 1)));
     147  /* return ((int) (p * (2 * log2 ((double) N / p) + 1))); */
    145148  return ((int) (p * (2 * log2 (((double) N * 1.0001) / p) + 1)));
    146149}
Note: See TracChangeset for help on using the changeset viewer.