Skip to content

Commit 7c5233f

Browse files
committed
moment_dev: addtition of test
1 parent 5ff0968 commit 7c5233f

File tree

4 files changed

+531
-2
lines changed

4 files changed

+531
-2
lines changed

src/stdlib_experimental_stats.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module stdlib_experimental_stats
77
implicit none
88
private
99
! Public API
10-
public :: mean, var
10+
public :: mean, moment, var
1111

1212
interface mean
1313
#:for k1, t1 in RC_KINDS_TYPES

src/tests/stats/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ADDTEST(mean)
22
ADDTEST(var)
3+
ADDTEST(moment)
34

45
if(DEFINED CMAKE_MAXIMUM_RANK)
56
if(${CMAKE_MAXIMUM_RANK} GREATER 7)

src/tests/stats/Makefile.manual

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
PROGS_SRC = test_mean.f90 test_var.f90
1+
PROGS_SRC = test_mean.f90 test_moment.f90 test_var.f90
22

33
include ../Makefile.manual.test.mk

0 commit comments

Comments
 (0)