Skip to content

Commit

Permalink
add factorial to toolbox -> combinatorics (UpsilonNumworks#348)
Browse files Browse the repository at this point in the history
* add factorial to toolbox -> combinatorics

* Update math_toolbox.cpp

removed newline for format purpose
  • Loading branch information
AngeDieu authored Nov 11, 2023
1 parent 7f2ba08 commit 9ac62c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/math_toolbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = {
Expand Down

0 comments on commit 9ac62c0

Please sign in to comment.