This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-278
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-278 by this push:
new 10bae01 WIP.
10bae01 is described below
commit 10bae011ec0b1ce6e44913b1842c3bdfe8959e68
Author: Sergey Kamov <[email protected]>
AuthorDate: Wed Mar 24 15:15:49 2021 +0300
WIP.
---
.../model/intent/idl/compiler/functions/NCIdlFunctionsStat.scala | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStat.scala
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStat.scala
index b9dabb2..9513dc3 100644
---
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStat.scala
+++
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStat.scala
@@ -45,6 +45,8 @@ class NCIdlFunctionsStat extends NCIdlFunctions {
"avg(list(1.2, 2.2, 3.2)) == 2.2",
"avg(list(1, 2.2, 3.1)) == 2.1",
"stdev(list(1, 2.2, 3.1)) > 0",
+ "stdev(list(1, 2, 3)) > 0",
"stdev(list(0.0, 0.0, 0.0)) == 0.0",
+ "stdev(list(0, 0, 0)) == 0.0",
)
}