UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

14 lines (13 loc) 557 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.solveODEDocs = void 0; const solveODEDocs = exports.solveODEDocs = { name: 'solveODE', category: 'Numeric', syntax: ['solveODE(func, tspan, y0)', 'solveODE(func, tspan, y0, options)'], description: 'Numerical Integration of Ordinary Differential Equations.', examples: ['f(t,y) = y', 'tspan = [0, 4]', 'solveODE(f, tspan, 1)', 'solveODE(f, tspan, [1, 2])', 'solveODE(f, tspan, 1, { method:"RK23", maxStep:0.1 })'], seealso: ['derivative', 'simplifyCore'] };