MCPcopy
hub / github.com/microsoft/JARVIS / divide_

Function divide_

easytool/data_funcqa/funchub/math.py:92–97  ·  view source on GitHub ↗
(args)

Source from the content-addressed store, hash-verified

90
91# 4. divide
92def divide_(args):
93
94 res = args[0]
95 for arg in args[1:]:
96 res /= arg
97 return normalize(res)
98
99# 5. power
100def power_(args):

Callers

nothing calls this directly

Calls 1

normalizeFunction · 0.85

Tested by

no test coverage detected