UNPKG

scalar-autograd

Version:

Scalar-based reverse-mode automatic differentiation in TypeScript.

11 lines (10 loc) 404 B
import { Value } from './Value'; export declare class ValueComparison { static eq(a: Value, b: Value): Value; static ifThenElse(cond: Value, thenVal: Value, elseVal: Value): Value; static neq(a: Value, b: Value): Value; static gt(a: Value, b: Value): Value; static lt(a: Value, b: Value): Value; static gte(a: Value, b: Value): Value; static lte(a: Value, b: Value): Value; }