Skip to content

Commit

Permalink
Fix imports (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach authored and John-Colvin committed Jan 22, 2018
1 parent 55c4a17 commit 1ce5900
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/dstats/cor.d
Original file line number Diff line number Diff line change
Expand Up @@ -1190,6 +1190,7 @@ private enum CorCovType {

private void pearsonSpearmanCov(bool makeNewMatrix, RoR, Matrix)
(RoR mat, TaskPool pool, CorCovType type, ref Matrix ret) {
import dstats.summary : mean;
if(pool is null) {
pool = emptyPool;
}
Expand Down
3 changes: 2 additions & 1 deletion source/dstats/random.d
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@

module dstats.random;

import std.math, std.algorithm, dstats.distrib, std.traits, std.typetuple,
import std.math, dstats.distrib, std.traits, std.typetuple,
std.exception, std.mathspecial, std.array;
import std.algorithm : min, max;
public import std.random; //For uniform distrib.

import dstats.alloc, dstats.base;
Expand Down

0 comments on commit 1ce5900

Please sign in to comment.