Skip to content

Commit c912d89

Browse files
author
linzhijun
committed
fix
1 parent c4da055 commit c912d89

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

csharp/ToolGood.Algorithm.Test/AlgorithmEngine/AlgorithmEngineTest_math.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,9 @@ public void MULTINOMIAL_test()
443443
t = engine.TryEvaluate("MULTINOMIAL(1,2,3,4)", 0.0);
444444
t = Math.Round(t, 6);
445445
Assert.AreEqual(Math.Round(12600.0, 6), t);
446+
t = engine.TryEvaluate("MULTINOMIAL(1,2,3,4.1)", 0.0);
447+
t = Math.Round(t, 6);
448+
Assert.AreEqual(Math.Round(12600.0, 6), t);
446449
}
447450

448451
[Test]

0 commit comments

Comments
 (0)