Add more fine-grained converters from MST to SVar and SConst

This commit is contained in:
Iaroslav Postovalov 2020-10-12 21:06:15 +07:00
parent 84f7535fdd
commit 5de9d69237
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -8,8 +8,8 @@ import kscience.kmath.operations.*
/**
* Maps [SFun] objects to [MST]. Some unsupported operations like [Derivative] are bound and converted then.
*
* @receiver a scalar function.
* @return the [MST].
* @receiver the scalar function.
* @return a node.
*/
public fun <X : SFun<X>> SFun<X>.mst(): MST = MstExtendedField {
when (this@mst) {
@ -30,16 +30,33 @@ public fun <X : SFun<X>> SFun<X>.mst(): MST = MstExtendedField {
}
}
/**
* Maps [MST.Numeric] to [SConst] directly.
*
* @receiver the node.
* @return a new constant.
*/
public fun <X : SFun<X>> MST.Numeric.sconst(): SConst<X> = SConst(value)
/**
* Maps [MST.Symbolic] to [SVar] directly.
*
* @receiver the node.
* @param proto the prototype instance.
* @return a new variable.
*/
public fun <X : SFun<X>> MST.Symbolic.svar(proto: X): SVar<X> = SVar(proto, value)
/**
* Maps [MST] objects to [SFun]. Unsupported operations throw [IllegalStateException].
*
* @receiver an [MST].
* @return the scalar function.
* @receiver the node.
* @param proto the prototype instance.
* @return a scalar function.
*/
public fun <X : SFun<X>> MST.sfun(proto: X): SFun<X> {
return when (this) {
is MST.Numeric -> SConst(value)
is MST.Symbolic -> SVar(proto, value)
public fun <X : SFun<X>> MST.sfun(proto: X): SFun<X> = when (this) {
is MST.Numeric -> sconst()
is MST.Symbolic -> svar(proto)
is MST.Unary -> when (operation) {
SpaceOperations.PLUS_OPERATION -> value.sfun(proto)
@ -62,4 +79,3 @@ public fun <X : SFun<X>> MST.sfun(proto: X): SFun<X> {
else -> error("Binary operation $operation not defined in $this")
}
}
}