Skip to content

Commit

Permalink
Fortran pull requests body text
Browse files Browse the repository at this point in the history
  • Loading branch information
hkershaw-brown committed Dec 15, 2023
1 parent d28de64 commit e2d922c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pull_requests/Fortran-ex1-pullbody.md
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

15 changes: 15 additions & 0 deletions pull_requests/Fortran-ex2-pullbody.md
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

0 comments on commit e2d922c

Please sign in to comment.