Skip to content

Commit

Permalink
more cleaning of comments/README
Browse files Browse the repository at this point in the history
  • Loading branch information
mazubieta committed Feb 22, 2011
1 parent cb406b9 commit 9ac1a5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
The problem statement can be found here:
http://mazdev.com/uno/hpc/leonard.jones.pdf

Greetings Folks,

So before things get really crazy with there being a half-dozen different versions of the code floating around, I set up a git repository for our Leonard Jones problem.
Expand Down
2 changes: 1 addition & 1 deletion pib.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ int main(int argc, char** argv){
//generate n particles
for(i=0;i<NUMBER_OF_PARTICLES;i++){
random_num = rand();
x = SIZE*LENGTH_OF_CUBE*((random_num)/(RAND_MAX+1.0));//FUCKING MAGIC NUMBERS
x = SIZE*LENGTH_OF_CUBE*((random_num)/(RAND_MAX+1.0));
temp_particle.x = x;

random_num = rand();
Expand Down

0 comments on commit 9ac1a5c

Please sign in to comment.