Skip to content

Commit

Permalink
add factorial to toolbox -> combinatorics
Browse files Browse the repository at this point in the history
commit 1e7192e
Author: AngeDieu <[email protected]>
Date:   Sat Nov 11 16:12:33 2023 +0100

    add factorial to toolbox -> combinatorics

from branch toolbox-adds
  • Loading branch information
AngeDieu committed Nov 11, 2023
1 parent a055c6a commit 7431f78
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/math_toolbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ 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 7431f78

Please sign in to comment.