← Back to search

io.github.daedalus/mcp-parigp

daedalus Scanned 22d ago

MCP server exposing cypari2 (PARI/GP) number theory library

C
67.5 / 100

Versions

0.1.0latest
first seen May 19, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 143

pi
annotations: none low

Get the value of pi. Args: precision: Optional precision in bits. Returns: Value of pi. Example: >>> pi() 3.14159265358979

precision int
elleta
annotations: none low

Compute the eta-quotients for an elliptic curve. Args: E: Elliptic curve structure. Returns: [eta1, eta2, eta3]. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any
eval_expression
annotations: none low

Evaluate a PARI/GP expression string. Args: expr: A PARI/GP expression as a string (e.g., "x^2 + 1", "factor(100)", "prime(10)"). For multiple computations, ALWAYS use vector expressions like "vector(15, n, qfbclassno(-4*n))" instead of for-loops with print statements. For-loops may cause timeouts. timeout: Maximum execution time in seconds (default 60). Note: This is a best-effort timeout and may not work reliably for long-running PARI operations written in C. Returns: The result of the evaluation converted to Python types. Example: >>> eval_expression("factor(100)") [[2, 2], [5, 2]] >>> eval_expression("prime(10)") 29 >>> eval_expression("vector(15, n, qfbclassno(-4*n))") [1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 2, 2, 4, 1, 2]

expr str timeout int
get_pari_version
annotations: none low

Get the PARI/GP version string. Returns: String describing the PARI version. Example: >>> get_pari_version() 'GP/PARI CALCULATOR Version 2.15...'

set_real_precision
annotations: none low

Set the PARI default real precision in decimal digits. Args: n: Number of decimal digits for precision. Returns: The previous precision value. Example: >>> set_real_precision(50) 15

n int
get_real_precision
annotations: none low

Get the current PARI default real precision in decimal digits. Returns: Current precision in decimal digits. Example: >>> get_real_precision() 15

set_real_precision_bits
annotations: none low

Set the PARI default real precision in bits. Args: n: Number of bits of precision. Returns: The previous precision in bits. Example: >>> set_real_precision_bits(200) 53

n int
get_real_precision_bits
annotations: none low

Get the current PARI default real precision in bits. Returns: Current precision in bits. Example: >>> get_real_precision_bits() 53

allocatemem
annotations: none low

Change the PARI stack size. Args: size: New stack size in bytes. If 0, doubles current size. sizemax: Maximum stack size in bytes. If 0, uses current maximum. Returns: Status message from PARI. Example: >>> allocatemem(10**7) 'PARI stack size set to 10000000 bytes...'

size int sizemax int
stacksize
annotations: none low

Get the current PARI stack size in bytes. Returns: Current stack size. Example: >>> stacksize() 8000000

stacksizemax
annotations: none low

Get the maximum PARI stack size in bytes. Returns: Maximum stack size. Example: >>> stacksizemax() 536870912

setrand
annotations: none low

Set PARI's random number seed. Args: seed: A positive integer or a GEN of type t_VECSMALL. Example: >>> setrand(42)

seed int
getrand
annotations: none low

Get PARI's current random number seed. Returns: The current random seed. Example: >>> getrand() [1, 2, 3, ...]

ellj
annotations: none low

Compute the j-invariant of an elliptic curve. Args: E: Elliptic curve structure or polynomial. Returns: The j-invariant. Example: >>> ellj("x^3 - x") 1728

E Any
primes
annotations: none low

Return prime numbers. Args: n: Either an integer (first n primes), or a list [a,b] for range, or start of range. end: End of prime range if n is a start value. Returns: List of prime numbers. Example: >>> primes(10) [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] >>> primes(100, 200) [101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199]

n int end int
prime
annotations: none low

Return the nth prime (1-indexed). Args: n: Which prime to return (1-indexed). Returns: The nth prime. Example: >>> prime(10) 29

n int
factor
annotations: none low

Factor an integer. Args: n: Integer to factor. Returns: Factorization as list of [prime, exponent] pairs. Example: >>> factor(100) [[2, 2], [5, 2]]

n int
isprime
annotations: none low

Test if an integer is prime. Args: n: Integer to test. Returns: True if n is prime, False otherwise. Example: >>> isprime(29) True >>> isprime(28) False

n int
gcd
annotations: none low

Compute the greatest common divisor of two integers. Args: a: First integer. b: Second integer. Returns: The gcd of a and b. Example: >>> gcd(48, 18) 6

a int b int
lcm
annotations: none low

Compute the least common multiple of two integers. Args: a: First integer. b: Second integer. Returns: The lcm of a and b. Example: >>> lcm(4, 6) 12

a int b int
bezout
annotations: none low

Compute the Bezout identity: gcd(a,b) = a*u + b*v. Args: a: First integer. b: Second integer. Returns: Tuple (g, u, v) where g = gcd(a,b) and a*u + b*v = g. Example: >>> bezout(48, 18) (6, -1, 3)

a int b int
phi
annotations: none low

Compute Euler's totient function phi(n). Args: n: Positive integer. Returns: phi(n) - count of integers <= n that are coprime to n. Example: >>> phi(10) 4

n int
sigma
annotations: none low

Compute the sum of k-th powers of divisors of n. Args: n: Positive integer. k: Power exponent (default 1). Returns: Sum of k-th powers of divisors of n. Example: >>> sigma(10) 18 >>> sigma(10, 2) 130 >>> eval_expression("vector(10, n, sigma(n))") [1, 3, 4, 7, 6, 12, 8, 15, 13, 18]

k int n int
moebius
annotations: none low

Compute the Möbius function mu(n). Args: n: Positive integer. Returns: mu(n): 1 if n is square-free with even number of prime factors, -1 if square-free with odd number of factors, 0 if n has a squared prime factor. Example: >>> moebius(10) 1 >>> moebius(30) -1 >>> moebius(12) 0 >>> eval_expression("vector(15, n, moebius(n))") [0, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 0, -1, 1]

n int
jacobi
annotations: none low

Compute the Jacobi symbol (a/n). Args: a: Integer. n: Odd positive integer. Returns: The Jacobi symbol (a/n), which is -1, 0, or 1. Example: >>> jacobi(10, 21) -1

a int n int
legendre
annotations: none low

Compute the Legendre symbol (a/p). Args: a: Integer. p: Odd prime. Returns: The Legendre symbol (a/p): -1, 0, or 1. Example: >>> legendre(10, 13) -1

a int p int
znorder
annotations: none low

Compute the multiplicative order of x modulo n. Args: x: Integer coprime to n. n: Positive integer. Returns: The smallest k > 0 such that x^k ≡ 1 (mod n). Example: >>> znorder(2, 5) 4

n int x int
znstar
annotations: none low

Compute the structure of (Z/nZ)*. Args: n: Positive integer. Returns: [N, cyc, gen] where N = phi(n), cyc gives the cyclic decomposition, and gen gives generators. Example: >>> znstar(12) [2, [2, 2], [...]]

n int
factorial
annotations: none low

Compute the factorial n!. Args: n: Non-negative integer. Returns: n! as an integer. Example: >>> factorial(5) 120

n int
binomial
annotations: none low

Compute the binomial coefficient C(n,k). Args: n: Non-negative integer. k: Non-negative integer. Returns: The binomial coefficient C(n,k). Example: >>> binomial(10, 3) 120

k int n int
fibonacci
annotations: none low

Compute the nth Fibonacci number. Args: n: Non-negative integer. Returns: The nth Fibonacci number. Example: >>> fibonacci(10) 55 >>> eval_expression("vector(10, n, fibonacci(n))") [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]

n int
lucas
annotations: none low

Compute the nth Lucas number. Args: n: Non-negative integer. Returns: The nth Lucas number. Example: >>> lucas(10) 123 >>> eval_expression("vector(10, n, lucas(n))") [2, 1, 3, 4, 7, 11, 18, 29, 47, 76]

n int
polcyclo
annotations: none low

Compute the nth cyclotomic polynomial. Args: n: Positive integer. v: Variable name (default 'x'). Returns: The nth cyclotomic polynomial. Example: >>> polcyclo(5) x^4 + x^3 + x^2 + x + 1

n int v str
polchebyshev
annotations: none low

Compute the nth Chebyshev polynomial of the first kind. Args: n: Non-negative integer. v: Variable name (default 'x'). Returns: The nth Chebyshev polynomial T_n(x). Example: >>> polchebyshev(3) 4*x^3 - 3*x

n int v str
pollegendre
annotations: none low

Compute the nth Legendre polynomial. Args: n: Non-negative integer. v: Variable name (default 'x'). Returns: The nth Legendre polynomial P_n(x). Example: >>> pollegendre(3) 5/2*x^3 - 3/2*x

n int v str
polhermite
annotations: none low

Compute the nth Hermite polynomial (probabilists' version). Args: n: Non-negative integer. v: Variable name (default 'x'). Returns: The nth Hermite polynomial He_n(x). Example: >>> polhermite(3) x^3 - 3*x

n int v str
polroots
annotations: none low

Compute the complex roots of a polynomial. Args: pol: Polynomial as a string (e.g., "x^3 - 1"). Returns: List of roots with multiplicities. Example: >>> polroots("x^2 + 1") [-I, I]

pol str
polrootsmod
annotations: none low

Compute the roots of a polynomial modulo p. Args: pol: Polynomial as a string. p: Prime modulus. Returns: List of roots modulo p. Example: >>> polrootsmod("x^2 + 1", 5) [2, 3]

p int pol str
polrootspadic
annotations: none low

Compute the p-adic roots of a polynomial. Args: pol: Polynomial as a string. p: Prime p. n: p-adic precision. Returns: List of p-adic roots. Example: >>> polrootspadic("x^2 - 2", 2, 5) [1 + 2 + 2^2 + 2^3 + 2^4 + O(2^5)]

n int p int pol str
factorpadic
annotations: none low

Factor a polynomial over the p-adic numbers. Args: pol: Polynomial as a string. p: Prime p. n: p-adic precision. Returns: Factorization as list of [factor, exponent] pairs. Example: >>> factorpadic("x^2 - 2", 2, 5)

n int p int pol str
deriv
annotations: none low

Compute the derivative of a polynomial. Args: pol: Polynomial as a string. v: Variable name. Returns: The derivative polynomial. Example: >>> deriv("x^3 + 2*x") 3*x^2 + 2

v str pol str
integ
annotations: none low

Compute the integral of a polynomial. Args: pol: Polynomial as a string. v: Variable name. Returns: The integral polynomial (constant term is 0). Example: >>> integ("x^2") 1/3*x^3

v str pol str
resultant
annotations: none low

Compute the resultant of two polynomials. Args: pol1: First polynomial. pol2: Second polynomial. v: Variable name. Returns: The resultant as an integer. Example: >>> resultant("x^2 - 1", "x^3 - 1") 0

v str pol1 str pol2 str
disc
annotations: none low

Compute the discriminant of a polynomial. Args: pol: Polynomial. v: Variable name. Returns: The discriminant. Example: >>> disc("x^3 - 3*x + 1") 81

v str pol str
norm
annotations: none low

Compute the norm of a polynomial/algebraic number. Args: pol: Polynomial or algebraic number. v: Variable name. Returns: The norm. Example: >>> norm("Mod(x, x^2 + 1)")

v str pol Any
trace
annotations: none low

Compute the trace of a polynomial/algebraic number. Args: pol: Polynomial or algebraic number. v: Variable name. Returns: The trace. Example: >>> trace("Mod(x, x^2 + 1)")

v str pol Any
subst
annotations: none low

Substitute a variable in a polynomial. Args: pol: Polynomial. v: Variable to replace. expr: Expression to substitute. Returns: The substituted polynomial. Example: >>> subst("x^2 + 1", "x", "y + 1") (y + 1)^2 + 1

v str pol str expr Any
Mod
annotations: none low

Create a modular number or polynomial. Args: a: Value. b: Modulus (integer or polynomial). Returns: The modular object. Example: >>> Mod(2, 17) Mod(2, 17)

a Any b Any
lift
annotations: none low

Lift a modular object (remove Mod wrapper). Args: mod: A modular object. Returns: The lifted value. Example: >>> lift(Mod(2, 17)) 2

mod Any
centerlift
annotations: none low

Lift a modular object with centered representatives. Args: mod: A modular object. Returns: The centered lift. Example: >>> centerlift(Mod(10, 17)) -7

mod Any
nfinit
annotations: none low

Initialize a number field defined by a polynomial. Args: pol: Defining polynomial as a string. Returns: The number field structure. Example: >>> nf = nfinit("x^2 + 1") >>> nf [y^2 + 1, [...], ...]

pol str
bnfinit
annotations: none low

Initialize a number field with Buchmann's algorithm. Args: pol: Defining polynomial. do_buchall: Compute full Buchmann's algorithm (default 0). Returns: The BNF structure. Example: >>> bnf = bnfinit("x^2 + 1")

pol str do_buchall int
bnrinit
annotations: none low

Initialize a ray number field (class field). Args: nf: Number field from nfinit. modulus: Modulus for ray class group. sign: 1 for full, -1 for real. Returns: The BNR structure. Example: >>> bnrinit(nfinit("x^2 + 1"), 1)

nf Any sign int modulus Any
idealadd
annotations: none low

Add two ideals in a number field. Args: nf: Number field structure. ideal1: First ideal. ideal2: Second ideal. Returns: The sum ideal. Example: >>> nf = nfinit("x^2 + 1") >>> idealadd(nf, 2, 3)

nf Any ideal1 Any ideal2 Any
idealmul
annotations: none low

Multiply two ideals in a number field. Args: nf: Number field structure. ideal1: First ideal. ideal2: Second ideal. Returns: The product ideal. Example: >>> nf = nfinit("x^2 + 1")

nf Any ideal1 Any ideal2 Any
idealpow
annotations: none low

Compute a power of an ideal. Args: nf: Number field structure. ideal: Ideal to power. n: Exponent. Returns: The ideal^n. Example: >>> nf = nfinit("x^2 + 1")

n int nf Any ideal Any
idealfactor
annotations: none low

Factor an ideal in a number field. Args: nf: Number field structure. ideal: Ideal to factor. Returns: Factorization as [prime_ideals, exponents]. Example: >>> nf = nfinit("x^2 + 1")

nf Any ideal Any
ellinit
annotations: none low

Initialize an elliptic curve. Args: pol: Short Weierstrass equation (e.g., "y^2 = x^3 - x"). sign: 1 for minimal model. Returns: The elliptic curve structure. Example: >>> E = ellinit("y^2 = x^3 - x")

pol str sign int
elladd
annotations: none low

Add two points on an elliptic curve. Args: E1: Elliptic curve (or point). E2: Elliptic curve (or point). Returns: The sum point. Example: >>> E = ellinit("y^2 = x^3 - x")

E1 Any E2 Any
ellmul
annotations: none low

Multiply a point on an elliptic curve by an integer. Args: E: Elliptic curve structure. n: Integer multiplier. P: Point (optional, if E is a point). Returns: The point [n]P. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any P Any n int
ellorder
annotations: none low

Compute the order of a point on an elliptic curve. Args: E: Elliptic curve structure. P: Point on the curve. Returns: The order of P. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any P Any
elllog
annotations: none low

Compute the discrete logarithm of a point on an elliptic curve. Args: E: Elliptic curve structure. P: Point. G: Base point. Returns: The integer n such that n*G = P. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any G Any P Any
ellap
annotations: none low

Compute the trace of Frobenius for an elliptic curve at prime p. Args: E: Elliptic curve structure. p: Prime. Returns: The trace of Frobenius a_p. Example: >>> E = ellinit("y^2 = x^3 - x") >>> ellap(E, 5) -2

E Any p int
elltors
annotations: none low

Compute the torsion subgroup of an elliptic curve. Args: E: Elliptic curve structure. Returns: [order, structure, generators]. Example: >>> E = ellinit("y^2 = x^3 - x") >>> elltors(E)

E Any
ellglobalred
annotations: none low

Compute the global reduction type of an elliptic curve. Args: E: Elliptic curve structure. Returns: [conductor, Kodaira type, global Tamagawa number]. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any
elllocalred
annotations: none low

Compute the local reduction type at prime p. Args: E: Elliptic curve structure. p: Prime. Returns: [Kodaira type, exponent, Tamagawa number, conductor exponent]. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any p int
ellheight
annotations: none low

Compute the canonical height of a point on an elliptic curve. Args: E: Elliptic curve structure. P: Point on the curve. flags: Computation flags. Returns: The canonical height. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any P Any flags int
ellwp
annotations: none low

Compute the Weierstrass p-function. Args: E: Elliptic curve structure. n: Number of terms (default 6). flags: Computation flags. Returns: The Weierstrass p-function. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any n int flags int
ellzeta
annotations: none low

Compute the Weierstrass zeta function. Args: E: Elliptic curve structure. z: Point. Returns: The zeta value. Example: >>> E = ellinit("y^2 = x^3 - x")

E Any z Any
matid
annotations: none low

Create an n x n identity matrix. Args: n: Size of the matrix. Returns: The n x n identity matrix. Example: >>> matid(3) [1, 0, 0; 0, 1, 0; 0, 0, 1]

n int
matzero
annotations: none low

Create a zero matrix. Args: m: Number of rows (or size if n=0). n: Number of columns (default 0). Returns: The zero matrix. Example: >>> matzero(3) [0, 0, 0; 0, 0, 0; 0, 0, 0]

m int n int
matdet
annotations: none low

Compute the determinant of a matrix. Args: m: Square matrix. Returns: The determinant. Example: >>> matdet("[1, 2; 3, 4]") -2

m Any
matinv
annotations: none low

Compute the inverse of a matrix. Args: m: Invertible square matrix. Returns: The inverse matrix. Example: >>> matinv("[1, 2; 3, 4]")

m Any
matrank
annotations: none low

Compute the rank of a matrix. Args: m: Matrix. Returns: The rank. Example: >>> matrank("[1, 2; 2, 4]") 1

m Any
matker
annotations: none low

Compute the kernel of a matrix. Args: m: Matrix. Returns: Basis of the kernel. Example: >>> matker("[1, 2; 2, 4]")

m Any
matimage
annotations: none low

Compute the image of a matrix. Args: m: Matrix. Returns: Basis of the image. Example: >>> matimage("[1, 2; 2, 4]")

m Any
mateigen
annotations: none low

Compute the eigenvalues of a matrix. Args: m: Square matrix. Returns: List of eigenvalues. Example: >>> mateigen("[1, 2; 2, 1]") [3, -1]

m Any
matcharpoly
annotations: none low

Compute the characteristic polynomial of a matrix. Args: m: Square matrix. v: Variable name. Returns: The characteristic polynomial. Example: >>> matcharpoly("[1, 2; 3, 4]") x^2 - 5*x - 2

m Any v str
hess
annotations: none low

Compute the Hessenberg form of a matrix. Args: m: Square matrix. Returns: The Hessenberg matrix. Example: >>> hess("[1, 2, 3; 4, 5, 6; 7, 8, 9]")

m Any
List
annotations: none low

Create an empty list or convert to a list. Args: x: Optional object to convert. Returns: A PARI list. Example: >>> L = List() >>> L.listput(42, 1)

x Any
Vec
annotations: none low

Convert to a row vector. Args: x: Object to convert. n: Optional length specification. Returns: Row vector. Example: >>> Vec("[1, 2, 3]") [1, 2, 3]

n int x Any
Col
annotations: none low

Convert to a column vector. Args: x: Object to convert. n: Optional length specification. Returns: Column vector. Example: >>> Col("[1, 2, 3]")

n int x Any
Mat
annotations: none low

Convert to a matrix. Args: x: Object to convert. Returns: Matrix. Example: >>> Mat("[1, 2, 3]") [1, 2, 3]

x Any
Set
annotations: none low

Convert to a set. Args: x: Object to convert. Returns: Sorted list of unique elements. Example: >>> Set("[1, 2, 1, 3]") [1, 2, 3]

x Any
Pol
annotations: none low

Convert to a polynomial. Args: x: Vector of coefficients or scalar. v: Variable name. Returns: Polynomial. Example: >>> Pol("[1, 2, 3]") x^2 + 2*x + 3

v str x Any
Polrev
annotations: none low

Convert to a polynomial (reverse order). Args: x: Vector of coefficients (constant term first). v: Variable name. Returns: Polynomial. Example: >>> Polrev("[1, 2, 3]") 3*x^2 + 2*x + 1

v str x Any
Ser
annotations: none low

Convert to a power series. Args: x: Polynomial or vector. v: Variable name. d: Precision (number of terms). Returns: Power series. Example: >>> Ser("x + 1", "x", 5) 1 + x + O(x^5)

d int v str x Any
euler
annotations: none low

Get Euler's constant. Args: precision: Optional precision in bits. Returns: Euler's constant gamma. Example: >>> euler() 0.5772156649015329

precision int
Catalan
annotations: none low

Get Catalan's constant. Args: precision: Optional precision in bits. Returns: Catalan's constant G. Example: >>> Catalan() 0.915965594177219

precision int
complex
annotations: none low

Create a complex number. Args: real: Real part. imag: Imaginary part. Returns: Complex number. Example: >>> complex(1, 2) 1 + 2*I

imag float real float
I
annotations: none low

Get the imaginary unit. Returns: The imaginary unit I = sqrt(-1). Example: >>> I() I

one
annotations: none low

Get the integer 1. Returns: Integer 1. Example: >>> one() 1

zero
annotations: none low

Get the integer 0. Returns: Integer 0. Example: >>> zero() 0

abs
annotations: none low

Compute absolute value. Args: x: Number or object. precision: Optional precision. Returns: Absolute value. Example: >>> abs(-5) 5

x Any precision int
sqrt
annotations: none low

Compute square root. Args: x: Number. precision: Optional precision. Returns: Square root. Example: >>> sqrt(2) 1.414213562373095

x Any precision int
exp
annotations: none low

Compute exponential. Args: x: Number. precision: Optional precision. Returns: e^x. Example: >>> exp(1) 2.71828182845905

x Any precision int
log
annotations: none low

Compute natural logarithm. Args: x: Positive number. precision: Optional precision. Returns: log(x). Example: >>> log(2) 0.693147180559945

x Any precision int
sin
annotations: none low

Compute sine. Args: x: Number (in radians). precision: Optional precision. Returns: sin(x). Example: >>> sin(0) 0

x Any precision int
cos
annotations: none low

Compute cosine. Args: x: Number (in radians). precision: Optional precision. Returns: cos(x). Example: >>> cos(0) 1

x Any precision int
tan
annotations: none low

Compute tangent. Args: x: Number (in radians). precision: Optional precision. Returns: tan(x). Example: >>> tan(0) 0

x Any precision int
asin
annotations: none low

Compute arcsine. Args: x: Number in [-1, 1]. precision: Optional precision. Returns: arcsin(x). Example: >>> asin(0) 0

x Any precision int
acos
annotations: none low

Compute arccosine. Args: x: Number in [-1, 1]. precision: Optional precision. Returns: arccos(x). Example: >>> acos(1) 0

x Any precision int
atan
annotations: none low

Compute arctangent. Args: x: Number. precision: Optional precision. Returns: arctan(x). Example: >>> atan(0) 0

x Any precision int
sinh
annotations: none low

Compute hyperbolic sine. Args: x: Number. precision: Optional precision. Returns: sinh(x). Example: >>> sinh(0) 0

x Any precision int
cosh
annotations: none low

Compute hyperbolic cosine. Args: x: Number. precision: Optional precision. Returns: cosh(x). Example: >>> cosh(0) 1

x Any precision int
tanh
annotations: none low

Compute hyperbolic tangent. Args: x: Number. precision: Optional precision. Returns: tanh(x). Example: >>> tanh(0) 0

x Any precision int
asinh
annotations: none low

Compute inverse hyperbolic sine. Args: x: Number. precision: Optional precision. Returns: asinh(x). Example: >>> asinh(0) 0

x Any precision int
acosh
annotations: none low

Compute inverse hyperbolic cosine. Args: x: Number >= 1. precision: Optional precision. Returns: acosh(x). Example: >>> acosh(1) 0

x Any precision int
atanh
annotations: none low

Compute inverse hyperbolic tangent. Args: x: Number in (-1, 1). precision: Optional precision. Returns: atanh(x). Example: >>> atanh(0) 0

x Any precision int
agm
annotations: none low

Compute the arithmetic-geometric mean. Args: x: First number. y: Second number (if None, uses x and 1). precision: Optional precision. Returns: AGM(x, y). Example: >>> agm(1, 2) 1.456791031...

x Any y Any precision int
airy
annotations: none low

Compute Airy functions Ai(z) and Bi(z). Args: z: Complex argument. Returns: [Ai, Bi]. Example: >>> airy(0) [0.3550280539..., 0.259285...]

z Any
genus2red
annotations: none low

Reduce a genus 2 curve. Args: P: Hyperelliptic polynomial y^2 = P. p: Optional prime for local reduction. Returns: Reduction data. Example: >>> genus2red("x^5 - 1")

P Any p int
algdep
annotations: none low

Find polynomial of degree k with integer coefficients approximating x. Args: x: Real/complex/p-adic number. k: Degree of polynomial. flag: Optional accuracy flag. Returns: Polynomial. Example: >>> algdep(sqrt(2), 2) x^2 - 2

k int x Any flag int
vector
annotations: none low

Create a vector of length n. Args: n: Length. entries: List of entries (optional). Returns: Vector. Example: >>> vector(3, [1, 2, 3]) [1, 2, 3]

n int entries list
matrix
annotations: none low

Create an m x n matrix. Args: m: Number of rows (or size if n=0). n: Number of columns (default 0). entries: List of entries (optional). Returns: Matrix. Example: >>> matrix(2, 3, [1, 2, 3, 4, 5, 6]) [1, 2, 3; 4, 5, 6]

m int n int entries list
polsubcyclo
annotations: none low

Compute sub-cyclotomic polynomials. Args: n: Cyclotomic field order. d: Degree of subfield. v: Variable name. Returns: List of polynomials. Example: >>> polsubcyclo(8, 4) [x^4 + 1]

d int n int v str
init_primes
annotations: none low

Initialize the primes table up to M. Args: M: Upper bound for primes. Example: >>> init_primes(1000)

M int
addprimes
annotations: none low

Add primes to the factorisation table. Args: primes: List of primes to add (or None to get current list). Returns: Current list of extra primes. Example: >>> addprimes([10007])

primes list
removeprimes
annotations: none low

Remove primes from the factorisation table. Args: primes: List of primes to remove (or None to clear). Returns: Updated list of extra primes. Example: >>> removeprimes([10007])

primes list
ispower
annotations: none low

Test if n is a perfect k-th power. Args: n: Integer. k: Exponent (0 or omitted means test any power). Returns: k (exponent) if n is a perfect k-th power, else 0. Example: >>> ispower(64) 6

k int n int
is_square
annotations: none low

Test if n is a perfect square. Args: n: Integer. Returns: True if n is a perfect square. Example: >>> is_square(25) True

n int
nextprime
annotations: none low

Find the next prime after n. Args: n: Integer. Returns: The smallest prime > n. Example: >>> nextprime(10) 11

n int
prevprime
annotations: none low

Find the previous prime before n. Args: n: Integer > 2. Returns: The largest prime < n. Example: >>> prevprime(10) 7

n int
Qfb
annotations: none low

Create a binary quadratic form. Args: a, b, c: Coefficients (ax^2 + bxy + cy^2). D: Optional Shanks' distance. precision: Optional precision. Returns: Binary quadratic form. Example: >>> Qfb(1, 0, 1) Qfb(1, 0, 1)

D int a int b int c int precision int
qfbsolve
annotations: none low

Solve Q(x) = n for binary quadratic form Q. Args: Q: Binary quadratic form. n: Integer to represent. Returns: Solution vector or 0. Example: >>> qfbsolve(Qfb(1, 0, 1), 5)

Q Any n int
qfbclassno
annotations: none low

Compute the class number of binary quadratic form discriminant D. Args: D: Discriminant (D ≡ 0, 1 mod 4, D > 0). flags: Computation flags. Returns: Class number. Example: >>> qfbclassno(5) 1 >>> eval_expression("vector(15, n, qfbclassno(-4*n))") [1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 2, 2, 4, 1, 2]

D int flags int
quadregulator
annotations: none low

Compute the regulator of real quadratic field. Args: D: Discriminant of real quadratic field. precision: Optional precision. Returns: Regulator. Example: >>> quadregulator(5)

D int precision int
quadratic_forms
annotations: none low

Compute reduced binary quadratic forms of discriminant D. Args: D: Discriminant (D ≡ 0, 1 mod 4, D ≠ 0). Returns: List of reduced forms. Example: >>> quadratic_forms(-3)

D int
hilbert
annotations: none low

Compute the Hilbert symbol (n, m) or (n, m)_p. Args: n: Integer. m: Integer. p: Prime (0 for infinite place). Returns: Hilbert symbol (1 or -1). Example: >>> hilbert(-1, 5) 1

m int n int p int
bessel
annotations: none low

Compute the Bessel function J_nu(x). Args: nu: Order. x: Argument. precision: Optional precision. Returns: Bessel J value. Example: >>> bessel(0, 1)

x Any nu Any precision int
besselh
annotations: none low

Compute the Bessel function H_nu(x). Args: nu: Order. x: Argument. precision: Optional precision. Returns: Bessel H value. Example: >>> besselh(0, 1)

x Any nu Any precision int
theta
annotations: none low

Compute the theta function theta(z, tau). Args: z: Complex parameter. tau: Lattice parameter. precision: Optional precision. Returns: Theta value. Example: >>> theta(0, I)

z Any tau Any precision int
weber
annotations: none low

Compute the Weber function. Args: z: Complex parameter. flag: Which variant (0, 1, or 2). precision: Optional precision. Returns: Weber function value. Example: >>> weber(1)

z Any flag int precision int
eta
annotations: none low

Compute the Dedekind eta function. Args: z: Complex parameter with positive imaginary part. flag: Optional flag. precision: Optional precision. Returns: Eta value. Example: >>> eta(I)

z Any flag int precision int
modular_lambda
annotations: none low

Compute the modular lambda function. Args: tau: Lattice parameter (Im(tau) > 0). precision: Optional precision. Returns: Lambda value. Example: >>> modular_lambda(I)

tau Any precision int
modulr_sym
annotations: none low

Compute the modular symbol. Args: s: Complex number. g: Weight. precision: Optional precision. Returns: Modular symbol. Example: >>> modulr_sym(1 + I)

g int s Any precision int
cusp_form
annotations: none low

Create a cusp form from its q-expansion. Args: q: q-expansion. weight: Weight. v: Variable number. Returns: Cusp form. Example: >>> cusp_form("q - q^5")

q Any v int weight int
eisenstein
annotations: none low

Compute the Eisenstein series E_k(q). Args: k: Weight (even >= 2). n: Harmonic rank (default 1). precision: Optional precision. Returns: q-expansion of E_k. Example: >>> eisenstein(4)

k int n int precision int
bnrL1
annotations: none low

Compute the first derivative of Artin L-function. Args: bnr: BNR structure from bnrinit. s: Complex parameter (optional). flag: Computation flag. Returns: L'-value. Example: >>> bnr = bnrinit(nfinit("x^2 + 1"), 1)

s Any bnr Any flag int
bnrrootnumber
annotations: none low

Compute the root number of Artin L-function. Args: bnr: BNR structure. character: Dirichlet character (optional). flag: Computation flag. Returns: Root number (±1). Example: >>> bnr = bnrinit(nfinit("x^2 + 1"), 1)

bnr Any flag int character Any
dirichlet
annotations: none low

Compute Dirichlet L-function. Args: s: Complex parameter. chi: Dirichlet character. precision: Optional precision. Returns: L(s, chi). Example: >>> dirichlet(2, 1)

s Any chi Any precision int
lfun
annotations: none low

Compute general L-function. Args: s: Complex parameter. F: L-function data (optional). r: Derivative order. Returns: L(s) or its r-th derivative. Example: >>> lfun(2, 1)

F Any r int s Any
lfuntheta
annotations: none low

Compute theta function of L-function. Args: t: Real parameter. F: L-function data. precision: Optional precision. Returns: Theta value. Example:

F Any t Any precision int

Permissions 0

No permissions indexed yet.

Scan Findings 306

low
Tool 'Set' has no annotations annotation_checker · 100%
low
Tool 'Pol' has no annotations annotation_checker · 100%
low
Tool 'Polrev' has no annotations annotation_checker · 100%
low
Tool 'Ser' has no annotations annotation_checker · 100%
low
Tool 'pi' has no annotations annotation_checker · 100%
low
Tool 'agm' has no annotations annotation_checker · 100%
low
Tool 'lcm' has no annotations annotation_checker · 100%
low
Tool 'eval_expression' has no annotations annotation_checker · 100%
low
Tool 'get_pari_version' has no annotations annotation_checker · 100%
low
Tool 'set_real_precision' has no annotations annotation_checker · 100%
low
Tool 'get_real_precision' has no annotations annotation_checker · 100%
low
Tool 'set_real_precision_bits' has no annotations annotation_checker · 100%
low
Tool 'get_real_precision_bits' has no annotations annotation_checker · 100%
low
Tool 'allocatemem' has no annotations annotation_checker · 100%
low
Tool 'stacksize' has no annotations annotation_checker · 100%
low
Tool 'stacksizemax' has no annotations annotation_checker · 100%
low
Tool 'setrand' has no annotations annotation_checker · 100%
low
Tool 'getrand' has no annotations annotation_checker · 100%
low
Tool 'primes' has no annotations annotation_checker · 100%
low
Tool 'prime' has no annotations annotation_checker · 100%
low
Tool 'factor' has no annotations annotation_checker · 100%
low
Tool 'isprime' has no annotations annotation_checker · 100%
low
Tool 'gcd' has no annotations annotation_checker · 100%
low
Tool 'bezout' has no annotations annotation_checker · 100%
low
Tool 'phi' has no annotations annotation_checker · 100%
low
Tool 'sigma' has no annotations annotation_checker · 100%
low
Tool 'moebius' has no annotations annotation_checker · 100%
low
Tool 'jacobi' has no annotations annotation_checker · 100%
low
Tool 'legendre' has no annotations annotation_checker · 100%
low
Tool 'znorder' has no annotations annotation_checker · 100%
low
Tool 'znstar' has no annotations annotation_checker · 100%
low
Tool 'factorial' has no annotations annotation_checker · 100%
low
Tool 'binomial' has no annotations annotation_checker · 100%
low
Tool 'fibonacci' has no annotations annotation_checker · 100%
low
Tool 'lucas' has no annotations annotation_checker · 100%
low
Tool 'polcyclo' has no annotations annotation_checker · 100%
low
Tool 'polchebyshev' has no annotations annotation_checker · 100%
low
Tool 'pollegendre' has no annotations annotation_checker · 100%
low
Tool 'polhermite' has no annotations annotation_checker · 100%
low
Tool 'polroots' has no annotations annotation_checker · 100%
low
Tool 'polrootsmod' has no annotations annotation_checker · 100%
low
Tool 'polrootspadic' has no annotations annotation_checker · 100%
low
Tool 'factorpadic' has no annotations annotation_checker · 100%
low
Tool 'deriv' has no annotations annotation_checker · 100%
low
Tool 'integ' has no annotations annotation_checker · 100%
low
Tool 'resultant' has no annotations annotation_checker · 100%
low
Tool 'disc' has no annotations annotation_checker · 100%
low
Tool 'norm' has no annotations annotation_checker · 100%
low
Tool 'trace' has no annotations annotation_checker · 100%
low
Tool 'subst' has no annotations annotation_checker · 100%
low
Tool 'Mod' has no annotations annotation_checker · 100%
low
Tool 'lift' has no annotations annotation_checker · 100%
low
Tool 'centerlift' has no annotations annotation_checker · 100%
low
Tool 'nfinit' has no annotations annotation_checker · 100%
low
Tool 'bnfinit' has no annotations annotation_checker · 100%
low
Tool 'bnrinit' has no annotations annotation_checker · 100%
low
Tool 'idealadd' has no annotations annotation_checker · 100%
low
Tool 'idealmul' has no annotations annotation_checker · 100%
low
Tool 'idealpow' has no annotations annotation_checker · 100%
low
Tool 'idealfactor' has no annotations annotation_checker · 100%
low
Tool 'ellinit' has no annotations annotation_checker · 100%
low
Tool 'elladd' has no annotations annotation_checker · 100%
low
Tool 'ellmul' has no annotations annotation_checker · 100%
low
Tool 'ellorder' has no annotations annotation_checker · 100%
low
Tool 'elllog' has no annotations annotation_checker · 100%
low
Tool 'ellap' has no annotations annotation_checker · 100%
low
Tool 'elltors' has no annotations annotation_checker · 100%
low
Tool 'ellglobalred' has no annotations annotation_checker · 100%
low
Tool 'elllocalred' has no annotations annotation_checker · 100%
low
Tool 'ellheight' has no annotations annotation_checker · 100%
low
Tool 'ellj' has no annotations annotation_checker · 100%
low
Tool 'elleta' has no annotations annotation_checker · 100%
low
Tool 'ellwp' has no annotations annotation_checker · 100%
low
Tool 'ellzeta' has no annotations annotation_checker · 100%
low
Tool 'matid' has no annotations annotation_checker · 100%
low
Tool 'matzero' has no annotations annotation_checker · 100%
low
Tool 'matdet' has no annotations annotation_checker · 100%
low
Tool 'matinv' has no annotations annotation_checker · 100%
low
Tool 'matrank' has no annotations annotation_checker · 100%
low
Tool 'matker' has no annotations annotation_checker · 100%
low
Tool 'matimage' has no annotations annotation_checker · 100%
low
Tool 'mateigen' has no annotations annotation_checker · 100%
low
Tool 'matcharpoly' has no annotations annotation_checker · 100%
low
Tool 'hess' has no annotations annotation_checker · 100%
low
Tool 'List' has no annotations annotation_checker · 100%
low
Tool 'Vec' has no annotations annotation_checker · 100%
low
Tool 'Col' has no annotations annotation_checker · 100%
low
Tool 'Mat' has no annotations annotation_checker · 100%
low
Tool 'euler' has no annotations annotation_checker · 100%
low
Tool 'Catalan' has no annotations annotation_checker · 100%
low
Tool 'complex' has no annotations annotation_checker · 100%
low
Tool 'I' has no annotations annotation_checker · 100%
low
Tool 'one' has no annotations annotation_checker · 100%
low
Tool 'zero' has no annotations annotation_checker · 100%
low
Tool 'abs' has no annotations annotation_checker · 100%
low
Tool 'sqrt' has no annotations annotation_checker · 100%
low
Tool 'exp' has no annotations annotation_checker · 100%
low
Tool 'log' has no annotations annotation_checker · 100%
low
Tool 'sin' has no annotations annotation_checker · 100%
low
Tool 'cos' has no annotations annotation_checker · 100%
low
Tool 'tan' has no annotations annotation_checker · 100%
low
Tool 'asin' has no annotations annotation_checker · 100%
low
Tool 'acos' has no annotations annotation_checker · 100%
low
Tool 'atan' has no annotations annotation_checker · 100%
low
Tool 'sinh' has no annotations annotation_checker · 100%
low
Tool 'cosh' has no annotations annotation_checker · 100%
low
Tool 'tanh' has no annotations annotation_checker · 100%
low
Tool 'asinh' has no annotations annotation_checker · 100%
low
Tool 'acosh' has no annotations annotation_checker · 100%
low
Tool 'atanh' has no annotations annotation_checker · 100%
low
Tool 'airy' has no annotations annotation_checker · 100%
low
Tool 'genus2red' has no annotations annotation_checker · 100%
low
Tool 'algdep' has no annotations annotation_checker · 100%
low
Tool 'vector' has no annotations annotation_checker · 100%
low
Tool 'matrix' has no annotations annotation_checker · 100%
low
Tool 'polsubcyclo' has no annotations annotation_checker · 100%
low
Tool 'init_primes' has no annotations annotation_checker · 100%
low
Tool 'addprimes' has no annotations annotation_checker · 100%
low
Tool 'removeprimes' has no annotations annotation_checker · 100%
low
Tool 'ispower' has no annotations annotation_checker · 100%
low
Tool 'is_square' has no annotations annotation_checker · 100%
low
Tool 'nextprime' has no annotations annotation_checker · 100%
low
Tool 'prevprime' has no annotations annotation_checker · 100%
low
Tool 'Qfb' has no annotations annotation_checker · 100%
low
Tool 'qfbsolve' has no annotations annotation_checker · 100%
low
Tool 'qfbclassno' has no annotations annotation_checker · 100%
low
Tool 'quadregulator' has no annotations annotation_checker · 100%
low
Tool 'quadratic_forms' has no annotations annotation_checker · 100%
low
Tool 'hilbert' has no annotations annotation_checker · 100%
low
Tool 'bessel' has no annotations annotation_checker · 100%
low
Tool 'besselh' has no annotations annotation_checker · 100%
low
Tool 'theta' has no annotations annotation_checker · 100%
low
Tool 'weber' has no annotations annotation_checker · 100%
low
Tool 'eta' has no annotations annotation_checker · 100%
low
Tool 'modular_lambda' has no annotations annotation_checker · 100%
low
Tool 'modulr_sym' has no annotations annotation_checker · 100%
low
Tool 'cusp_form' has no annotations annotation_checker · 100%
low
Tool 'eisenstein' has no annotations annotation_checker · 100%
low
Tool 'bnrL1' has no annotations annotation_checker · 100%
low
Tool 'bnrrootnumber' has no annotations annotation_checker · 100%
low
Tool 'dirichlet' has no annotations annotation_checker · 100%
low
Tool 'lfun' has no annotations annotation_checker · 100%
low
Tool 'lfuntheta' has no annotations annotation_checker · 100%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-5h2m-4q8j-pqpj) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-c2jp-c369-7pvx) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-m8x7-r2rg-vh5g) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-mxxr-jv3v-6pgc) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-rcfx-77hg-w2wv) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-rj5c-58rq-j5g5) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-rww4-4w9c-7733) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (GHSA-vv7q-7jx5-f767) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-1364) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-1365) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-2474) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-2475) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-2476) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0.0 (PYSEC-2026-338) dependency_analyzer · 95%
info
pyproject.toml metadata manifest_parser · 100%
info
Tool: eval_expression manifest_parser · 90%
info
Tool: get_pari_version manifest_parser · 90%
info
Tool: set_real_precision manifest_parser · 90%
info
Tool: get_real_precision manifest_parser · 90%
info
Tool: set_real_precision_bits manifest_parser · 90%
info
Tool: get_real_precision_bits manifest_parser · 90%
info
Tool: allocatemem manifest_parser · 90%
info
Tool: stacksize manifest_parser · 90%
info
Tool: stacksizemax manifest_parser · 90%
info
Tool: setrand manifest_parser · 90%
info
Tool: getrand manifest_parser · 90%
info
Tool: primes manifest_parser · 90%
info
Tool: prime manifest_parser · 90%
info
Tool: factor manifest_parser · 90%
info
Tool: isprime manifest_parser · 90%
info
Tool: gcd manifest_parser · 90%
info
Tool: lcm manifest_parser · 90%
info
Tool: bezout manifest_parser · 90%
info
Tool: phi manifest_parser · 90%
info
Tool: sigma manifest_parser · 90%
info
Tool: moebius manifest_parser · 90%
info
Tool: lift manifest_parser · 90%
info
Tool: jacobi manifest_parser · 90%
info
Tool: legendre manifest_parser · 90%
info
Tool: znorder manifest_parser · 90%
info
Tool: znstar manifest_parser · 90%
info
Tool: factorial manifest_parser · 90%
info
Tool: binomial manifest_parser · 90%
info
Tool: fibonacci manifest_parser · 90%
info
Tool: lucas manifest_parser · 90%
info
Tool: polcyclo manifest_parser · 90%
info
Tool: polchebyshev manifest_parser · 90%
info
Tool: pollegendre manifest_parser · 90%
info
Tool: polhermite manifest_parser · 90%
info
Tool: centerlift manifest_parser · 90%
info
Tool: polroots manifest_parser · 90%
info
Tool: polrootsmod manifest_parser · 90%
info
Tool: polrootspadic manifest_parser · 90%
info
Tool: factorpadic manifest_parser · 90%
info
Tool: deriv manifest_parser · 90%
info
Tool: integ manifest_parser · 90%
info
Tool: resultant manifest_parser · 90%
info
Tool: disc manifest_parser · 90%
info
Tool: norm manifest_parser · 90%
info
Tool: trace manifest_parser · 90%
info
Tool: subst manifest_parser · 90%
info
Tool: Mod manifest_parser · 90%
info
Tool: nfinit manifest_parser · 90%
info
Tool: bnfinit manifest_parser · 90%
info
Tool: bnrinit manifest_parser · 90%
info
Tool: idealadd manifest_parser · 90%
info
Tool: idealmul manifest_parser · 90%
info
Tool: idealpow manifest_parser · 90%
info
Tool: idealfactor manifest_parser · 90%
info
Tool: ellinit manifest_parser · 90%
info
Tool: elladd manifest_parser · 90%
info
Tool: ellmul manifest_parser · 90%
info
Tool: ellorder manifest_parser · 90%
info
Tool: elllog manifest_parser · 90%
info
Tool: ellap manifest_parser · 90%
info
Tool: elltors manifest_parser · 90%
info
Tool: ellglobalred manifest_parser · 90%
info
Tool: elllocalred manifest_parser · 90%
info
Tool: ellheight manifest_parser · 90%
info
Tool: ellj manifest_parser · 90%
info
Tool: elleta manifest_parser · 90%
info
Tool: ellwp manifest_parser · 90%
info
Tool: ellzeta manifest_parser · 90%
info
Tool: matid manifest_parser · 90%
info
Tool: matzero manifest_parser · 90%
info
Tool: matdet manifest_parser · 90%
info
Tool: matinv manifest_parser · 90%
info
Tool: matrank manifest_parser · 90%
info
Tool: matker manifest_parser · 90%
info
Tool: matimage manifest_parser · 90%
info
Tool: mateigen manifest_parser · 90%
info
Tool: matcharpoly manifest_parser · 90%
info
Tool: hess manifest_parser · 90%
info
Tool: List manifest_parser · 90%
info
Tool: Vec manifest_parser · 90%
info
Tool: Col manifest_parser · 90%
info
Tool: Mat manifest_parser · 90%
info
Tool: Set manifest_parser · 90%
info
Tool: Pol manifest_parser · 90%
info
Tool: Polrev manifest_parser · 90%
info
Tool: Ser manifest_parser · 90%
info
Tool: pi manifest_parser · 90%
info
Tool: euler manifest_parser · 90%
info
Tool: Catalan manifest_parser · 90%
info
Tool: complex manifest_parser · 90%
info
Tool: I manifest_parser · 90%
info
Tool: one manifest_parser · 90%
info
Tool: zero manifest_parser · 90%
info
Tool: abs manifest_parser · 90%
info
Tool: sqrt manifest_parser · 90%
info
Tool: exp manifest_parser · 90%
info
Tool: log manifest_parser · 90%
info
Tool: sin manifest_parser · 90%
info
Tool: cos manifest_parser · 90%
info
Tool: tan manifest_parser · 90%
info
Tool: asin manifest_parser · 90%
info
Tool: acos manifest_parser · 90%
info
Tool: atan manifest_parser · 90%
info
Tool: sinh manifest_parser · 90%
info
Tool: cosh manifest_parser · 90%
info
Tool: tanh manifest_parser · 90%
info
Tool: asinh manifest_parser · 90%
info
Tool: acosh manifest_parser · 90%
info
Tool: atanh manifest_parser · 90%
info
Tool: agm manifest_parser · 90%
info
Tool: airy manifest_parser · 90%
info
Tool: genus2red manifest_parser · 90%
info
Tool: algdep manifest_parser · 90%
info
Tool: vector manifest_parser · 90%
info
Tool: matrix manifest_parser · 90%
info
Tool: polsubcyclo manifest_parser · 90%
info
Tool: init_primes manifest_parser · 90%
info
Tool: addprimes manifest_parser · 90%
info
Tool: removeprimes manifest_parser · 90%
info
Tool: ispower manifest_parser · 90%
info
Tool: is_square manifest_parser · 90%
info
Tool: nextprime manifest_parser · 90%
info
Tool: prevprime manifest_parser · 90%
info
Tool: Qfb manifest_parser · 90%
info
Tool: qfbsolve manifest_parser · 90%
info
Tool: qfbclassno manifest_parser · 90%
info
Tool: quadregulator manifest_parser · 90%
info
Tool: quadratic_forms manifest_parser · 90%
info
Tool: hilbert manifest_parser · 90%
info
Tool: bessel manifest_parser · 90%
info
Tool: besselh manifest_parser · 90%
info
Tool: theta manifest_parser · 90%
info
Tool: weber manifest_parser · 90%
info
Tool: eta manifest_parser · 90%
info
Tool: modular_lambda manifest_parser · 90%
info
Tool: modulr_sym manifest_parser · 90%
info
Tool: cusp_form manifest_parser · 90%
info
Tool: eisenstein manifest_parser · 90%
info
Tool: bnrL1 manifest_parser · 90%
info
Tool: bnrrootnumber manifest_parser · 90%
info
Tool: dirichlet manifest_parser · 90%
info
Tool: lfun manifest_parser · 90%
info
Tool: lfuntheta manifest_parser · 90%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
critical
Tool poisoning in 'eval_expression': Directive language: 'always' poisoning · 85%
info
No dependency files found for SBOM generation sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%