UNPKG

dina-agi

Version:

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

8 lines 378 B
export var xgcdDocs = { name: 'xgcd', category: 'Arithmetic', syntax: ['xgcd(a, b)'], description: 'Calculate the extended greatest common divisor for two values. The result is an array [d, x, y] with 3 entries, where d is the greatest common divisor, and d = x * a + y * b.', examples: ['xgcd(8, 12)', 'gcd(8, 12)', 'xgcd(36163, 21199)'], seealso: ['gcd', 'lcm'] };