Skip to content

Commit

Permalink
better intro
Browse files Browse the repository at this point in the history
  • Loading branch information
laynep committed Oct 5, 2012
1 parent 0e766a7 commit ba9eb40
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
23 changes: 10 additions & 13 deletions boxcount.f90
@@ -1,8 +1,3 @@
module box_count
use types, only : dp
use sorters, only : heapsort, equalcond
implicit none

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!Written by Layne Price, University of Auckland, May 2012 !Written by Layne Price, University of Auckland, May 2012
!This is adapted from a number of articles written online about box-counting, as well as !This is adapted from a number of articles written online about box-counting, as well as
Expand All @@ -24,16 +19,18 @@ module box_count


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


module box_count
use types, only : dp
use sorters, only : heapsort, equalcond
implicit none


!Private variable. !Private variable.
logical, private, parameter :: bxprinting=.true. logical, private, parameter :: bxprinting=.true.




interface boxcount interface boxcount
module procedure boxcount_dp module procedure boxcount_dp
module procedure bound_boxcount module procedure bound_boxcount
end interface end interface




contains contains
Expand Down
4 changes: 4 additions & 0 deletions boxcountdriver.f90
@@ -1,3 +1,7 @@
!*******************************************************************************
!Layne Price, University of Auckland, May 2012.
!*******************************************************************************

!A program that loads a success file named totalsucc.bin and a fail file named !A program that loads a success file named totalsucc.bin and a fail file named
!totalfail.bin and performs a boxcounting procedure on a) the success set b) the !totalfail.bin and performs a boxcounting procedure on a) the success set b) the
!failure set c) the boundary between the two and d) the two combined together. !failure set c) the boundary between the two and d) the two combined together.
Expand Down

0 comments on commit ba9eb40

Please sign in to comment.