Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristopherson committed Mar 26, 2024
1 parent 8709ca9 commit 2abdd0b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/fstats_bootstrap.f90
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ function bootstrap(stat, x, method, nsamples, alpha) result(rst)
rst%population(1) = rst%statistic_value

! Resampling Process
call random_init(.false., .true.)
#ifdef USEOPENMP
! Use OpenMP to run operations in parallel
!$OMP PARALLEL DO PRIVATE(xn) SHARED(rst)
Expand Down Expand Up @@ -370,7 +369,6 @@ subroutine bootstrap_linear_least_squares(order, intercept, x, y, &
allcoeffs(:,1) = coeffs

! Cycle over each data set and perform the fit
call random_init(.false., .true.)
#ifdef USEOPENMP
!$OMP PARALLEL DO PRIVATE(fLocal, yLocal, rLocal) SHARED(allcoeffs)
do i = 2, ns
Expand Down Expand Up @@ -583,7 +581,6 @@ subroutine bootstrap_nonlinear_least_squares(fun, x, y, params, ymod, resid, &
end do

! Cycle over each data set and perform the fit
call random_init(.false., .true.)
#ifdef USEOPENMP
!$OMP PARALLEL DO
do i = 2, ns
Expand Down

0 comments on commit 2abdd0b

Please sign in to comment.