Skip to content

Commit 77ba43e

Browse files
committed
Update FSharp.Stats.GenericMath to FsMath.GenericMath
1 parent 8080cea commit 77ba43e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/FSharp.Stats/SpecialFunctions/Beta.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
open System
44
open FSharp.Stats
5-
open FSharp.Stats.GenericMath
5+
open FsMath
6+
open FsMath.GenericMath
67

78
// TODO: Generalize lowerIncompleteRegularized, lowerIncomplete, and powerSeries to support generic type 'T instead of using float
89

src/FSharp.Stats/SpecialFunctions/Gamma.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
namespace FSharp.Stats.SpecialFunctions
22

33
open System
4-
open FSharp.Stats.GenericMath
4+
open FsMath
5+
open FsMath.GenericMath
56

67
/// Approximations for the gamma function and related functions.
78
///

src/FSharp.Stats/Testing/TestStatistics.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
namespace FSharp.Stats.Testing
22
open System
3-
open FSharp.Stats.GenericMath
3+
open FsMath
4+
open FsMath.GenericMath
45

56
// TODO: Update specific distributions to support generic type 'T to avoid explicit float casting
67

0 commit comments

Comments
 (0)