add factorial to toolbox -> combinatorics (#348)

* add factorial to toolbox -> combinatorics

* Update math_toolbox.cpp

removed newline for format purpose
This commit is contained in:
AngeDieu
2023-11-11 18:27:58 +01:00
committed by GitHub
parent 7f2ba08761
commit 9ac62c0496

View File

@@ -38,7 +38,8 @@ const ToolboxMessageTree complexChildren[] = {
const ToolboxMessageTree combinatoricsChildren[] = {
ToolboxMessageTree::Leaf(I18n::Message::BinomialCommandWithArg, I18n::Message::Combination),
ToolboxMessageTree::Leaf(I18n::Message::PermuteCommandWithArg, I18n::Message::Permutation)
ToolboxMessageTree::Leaf(I18n::Message::PermuteCommandWithArg, I18n::Message::Permutation),
ToolboxMessageTree::Leaf(I18n::Message::FactorialCommandWithArg, I18n::Message::Factorial)
};
const ToolboxMessageTree normalDistributionChildren[] = {