Skip to content

Commit

Permalink
stat_dev: renamed stat to stats
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdp1 committed Jan 21, 2020
1 parent 8199b6d commit 7eec9ae
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 26 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set(SRC
stdlib_experimental_kinds.f90
stdlib_experimental_optval.f90
stdlib_experimental_system.F90
stdlib_experimental_stat_mean.f90
stdlib_experimental_stat.f90
stdlib_experimental_stats_mean.f90
stdlib_experimental_stats.f90
)

add_library(fortran_stdlib ${SRC})
Expand Down
8 changes: 4 additions & 4 deletions src/Makefile.manual
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ SRC = stdlib_experimental_ascii.f90 \
stdlib_experimental_optval.f90 \
stdlib_experimental_kinds.f90 \
f18estop.f90 \
stdlib_experimental_stat.f90 \
stdlib_experimental_stat_mean.f90
stdlib_experimental_stats.f90 \
stdlib_experimental_stats_mean.f90

LIB = libstdlib.a

Expand Down Expand Up @@ -36,7 +36,7 @@ stdlib_experimental_io.o: \
stdlib_experimental_optval.o \
stdlib_experimental_kinds.o
stdlib_experimental_optval.o: stdlib_experimental_kinds.o
stdlib_experimental_stat_mean.o: \
stdlib_experimental_stats_mean.o: \
stdlib_experimental_optval.o \
stdlib_experimental_kinds.o \
stdlib_experimental_stat.o
stdlib_experimental_stats.o
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module stdlib_experimental_stat
module stdlib_experimental_stats


use stdlib_experimental_kinds, only: sp, dp, qp, &
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module stdlib_experimental_stat
module stdlib_experimental_stats

#:set REALKINDS = ["sp", "dp", "qp"]
#:set INTKINDS = ["int8", "int16", "int32", "int64"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
submodule (stdlib_experimental_stat) stdlib_experimental_stat_mean
submodule (stdlib_experimental_stats) stdlib_experimental_stats_mean


use stdlib_experimental_error, only: error_stop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
submodule (stdlib_experimental_stat) stdlib_experimental_stat_mean
submodule (stdlib_experimental_stats) stdlib_experimental_stats_mean

#:set REALKINDS = ["sp", "dp", "qp"]
#:set INTKINDS = ["int8", "int16", "int32", "int64"]
Expand Down
2 changes: 1 addition & 1 deletion src/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endmacro(ADDTEST)
add_subdirectory(ascii)
add_subdirectory(io)
add_subdirectory(optval)
add_subdirectory(stat)
add_subdirectory(stats)
add_subdirectory(system)

ADDTEST(always_skip)
Expand Down
6 changes: 3 additions & 3 deletions src/tests/Makefile.manual
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ all:
$(MAKE) -f Makefile.manual --directory=ascii
$(MAKE) -f Makefile.manual --directory=io
$(MAKE) -f Makefile.manual --directory=optval
$(MAKE) -f Makefile.manual --directory=stat
$(MAKE) -f Makefile.manual --directory=stats

test:
$(MAKE) -f Makefile.manual --directory=ascii test
$(MAKE) -f Makefile.manual --directory=io test
$(MAKE) -f Makefile.manual --directory=optval test
$(MAKE) -f Makefile.manual --directory=stat test
$(MAKE) -f Makefile.manual --directory=stats test

clean:
$(MAKE) -f Makefile.manual --directory=ascii clean
$(MAKE) -f Makefile.manual --directory=io clean
$(MAKE) -f Makefile.manual --directory=optval clean
$(MAKE) -f Makefile.manual --directory=stat clean
$(MAKE) -f Makefile.manual --directory=stats clean
4 changes: 0 additions & 4 deletions src/tests/stat/array1.dat

This file was deleted.

4 changes: 0 additions & 4 deletions src/tests/stat/array2.dat

This file was deleted.

3 changes: 0 additions & 3 deletions src/tests/stat/array4.dat

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ program test_mean
use stdlib_experimental_error, only: assert
use stdlib_experimental_kinds, only: sp, dp, int32, int64
use stdlib_experimental_io, only: loadtxt
use stdlib_experimental_stat, only: mean
use stdlib_experimental_stats, only: mean
implicit none

real(sp), allocatable :: s(:, :)
Expand Down

0 comments on commit 7eec9ae

Please sign in to comment.