Part of Context. Used to declare functions
Declare a new function
const f = ctx.Function.declare('f', ctx.Bool.sort(), ctx.Real.sort(), ctx.Int.sort())f.call(true, "1/3").eq(5)// f(true, 1/3) == 5 Copy
const f = ctx.Function.declare('f', ctx.Bool.sort(), ctx.Real.sort(), ctx.Int.sort())f.call(true, "1/3").eq(5)// f(true, 1/3) == 5
Name of the function
The domains, and last parameter - the range of the function
Part of Context. Used to declare functions