-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d28de64
commit e2d922c
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Description | ||
|
||
There is a bug in the calc_pi.f90. | ||
The calculation on line 17 should be | ||
|
||
(x**2 + y**2 <= 1.0) | ||
|
||
instead of | ||
|
||
(x**2 + x**2 <= 1.0) | ||
|
||
## Fixes issue | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Description | ||
|
||
First attempt at modularizing my league simulation code. | ||
The goal is to have a module with the league simulation | ||
routines that I can use with several programs. | ||
|
||
Looking for advice on anything I've missed! | ||
|
||
I've updated the Makefile so you should be able to | ||
compile my new code. | ||
|
||
I've added some comments to help explain the code. | ||
|
||
## Fixes issue | ||
|