FunctionalExpressionRing

open class FunctionalExpressionRing<T, A : Ring<T>>(algebra: A) : FunctionalExpressionGroup<T, A> , Ring<Expression<T>>

Functions

add
Link copied to clipboard
common
open override fun add(a: Expression<T>, b: Expression<T>): Expression<T>
Builds an Expression of addition of two another expressions.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Expression<T>, right: Expression<T>): Expression<T>
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Expression<T>, right: Expression<T>) -> Expression<T>
Builds an Expression of dynamic call of binary operation operation on left and right.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Expression<T>
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
common
open override fun bindSymbolOrNull(value: String): Expression<T>?
Builds an Expression to access a variable.
const
Link copied to clipboard
common
open override fun const(value: T): Expression<T>
Builds an Expression of constant expression which does not depend on arguments.
minus
Link copied to clipboard
common
operator fun T.minus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.minus(arg: T): Expression<T>
open operator fun Expression<T>.minus(b: Expression<T>): Expression<T>
Subtraction of two elements.
multiply
Link copied to clipboard
common
open override fun multiply(a: Expression<T>, b: Expression<T>): Expression<T>
Builds an Expression of multiplication of two expressions.
plus
Link copied to clipboard
common
operator fun T.plus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.plus(arg: T): Expression<T>
open operator fun Expression<T>.plus(b: Expression<T>): Expression<T>
Addition of two elements.
times
Link copied to clipboard
common
operator fun T.times(arg: Expression<T>): Expression<T>
operator fun Expression<T>.times(arg: T): Expression<T>
open operator fun Expression<T>.times(b: Expression<T>): Expression<T>
Multiplies this element by scalar.
unaryMinus
Link copied to clipboard
common
open operator override fun Expression<T>.unaryMinus(): Expression<T>
The negation of this element.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Expression<T>): Expression<T>
Dynamically invokes an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Expression<T>) -> Expression<T>
Builds an Expression of dynamic call of unary operation with name operation on arg.
unaryPlus
Link copied to clipboard
common
open operator fun Expression<T>.unaryPlus(): Expression<T>
Returns this value.

Properties

algebra
Link copied to clipboard
common
val algebra: A
The algebra to provide for Expressions built.
one
Link copied to clipboard
common
open override val one: Expression<T>
neutral operation for multiplication
zero
Link copied to clipboard
common
open override val zero: Expression<T>
The neutral element of addition.

Inheritors

FunctionalExpressionField
Link copied to clipboard