Skip to content

Commit 9bbcb74

Browse files
committed
median: reorder fypp variable
1 parent de2c419 commit 9bbcb74

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/stdlib_stats.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#:set RANKS = range(1, MAXRANK + 1)
33
#:set REDRANKS = range(2, MAXRANK + 1)
44
#:set RC_KINDS_TYPES = REAL_KINDS_TYPES + CMPLX_KINDS_TYPES
5-
#:set IR_KINDS_TYPES_OUTPUT = list(zip(REAL_KINDS, REAL_TYPES, REAL_KINDS)) + list(zip(INT_KINDS,INT_TYPES, ['dp']*len(INT_KINDS)))
5+
#:set IR_KINDS_TYPES_OUTPUT = list(zip(INT_KINDS,INT_TYPES, ['dp']*len(INT_KINDS))) + list(zip(REAL_KINDS, REAL_TYPES, REAL_KINDS))
66
module stdlib_stats
77
!! Provides support for various statistical methods. This includes currently
88
!! descriptive statistics

src/stdlib_stats_median.fypp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#:include "common.fypp"
22
#:set RANKS = range(1, MAXRANK + 1)
3-
#:set IR_KINDS_TYPES_OUTPUT = list(zip(REAL_KINDS, REAL_TYPES, REAL_KINDS)) + list(zip(INT_KINDS,INT_TYPES, ['dp']*len(INT_KINDS)))
4-
3+
#:set IR_KINDS_TYPES_OUTPUT = list(zip(INT_KINDS,INT_TYPES, ['dp']*len(INT_KINDS))) + list(zip(REAL_KINDS, REAL_TYPES, REAL_KINDS))
54

65
submodule (stdlib_stats) stdlib_stats_median
76

0 commit comments

Comments
 (0)