Skip to content

Commit

Permalink
Next step
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristopherson committed Apr 23, 2024
1 parent 9b4b020 commit 776071b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/fstats_tests.f90
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ program tests
overall = .true.

! Distribution Tests
! local = t_distribution_test_1()
! if (.not.local) overall = .false.
local = t_distribution_test_1()
if (.not.local) overall = .false.

! local = normal_distribution_test_1()
! if (.not.local) overall = .false.
local = normal_distribution_test_1()
if (.not.local) overall = .false.

! local = f_distribution_test_1()
! if (.not.local) overall = .false.
local = f_distribution_test_1()
if (.not.local) overall = .false.

! local = chi_squared_distribution_test_1()
! if (.not.local) overall = .false.
local = chi_squared_distribution_test_1()
if (.not.local) overall = .false.

! local = binomial_distribution_test_1()
! if (.not.local) overall = .false.
local = binomial_distribution_test_1()
if (.not.local) overall = .false.

! ! Statistics Tests
! local = mean_test_1()
Expand Down

0 comments on commit 776071b

Please sign in to comment.