Skip to content

Commit

Permalink
add minimal set of arguments for embedded FunctionDefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Metelkin committed Jan 23, 2024
1 parent 3958eb8 commit e4eedde
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/container/core-items.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@
"id": "log", "action": "defineFunction",
"arguments": ["x"]
},
{
"id": "log", "action": "defineFunction"
},
{
"id": "log10", "action": "defineFunction",
"arguments": ["x"]
Expand All @@ -211,7 +208,8 @@
"arguments": ["x"]
},
{
"id": "nthRoot", "action": "defineFunction"
"id": "nthRoot", "action": "defineFunction",
"arguments": ["x"]
},
{
"id": "square", "action": "defineFunction",
Expand All @@ -222,10 +220,12 @@
"arguments": ["x", "y"]
},
{
"id": "max", "action": "defineFunction"
"id": "max", "action": "defineFunction",
"arguments": ["x"]
},
{
"id": "min", "action": "defineFunction"
"id": "min", "action": "defineFunction",
"arguments": ["x"]
},
{
"id": "factorial", "action": "defineFunction",
Expand Down Expand Up @@ -351,6 +351,7 @@
"arguments": ["x"]
},
{
"id": "piecewise", "action": "defineFunction"
"id": "piecewise", "action": "defineFunction",
"arguments": ["x"]
}
]

0 comments on commit e4eedde

Please sign in to comment.