2021-03-22 14:32:08 +03:00
# Module kmath-ast
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
Extensions to MST API: transformations, dynamic compilation and visualization.
2020-12-22 14:02:02 +03:00
${features}
${artifact}
2022-02-05 00:27:10 +03:00
## Parsing expressions
In this module there is a parser from human-readable strings like `"x^3-x+3"` (in the more specific [grammar ](reference/ArithmeticsEvaluator.g4 )) to MST instances.
Supported literals:
1. Constants and variables (consist of latin letters, digits and underscores, can't start with digit): `x` , `_Abc2` .
2. Numbers: `123` , `1.02` , `1e10` , `1e-10` , `1.0e+3` — all parsed either as `kotlin.Long` or `kotlin.Double` .
Supported binary operators (from the highest precedence to the lowest one):
1. `^`
2. `*` , `/`
3. `+` , `-`
Supported unary operator:
1. `-` , e. g. `-x`
Arbitrary unary and binary functions are also supported: names consist of latin letters, digits and underscores, can't start with digit. Examples:
1. `sin(x)`
2. `add(x, y)`
2020-12-22 14:02:02 +03:00
## Dynamic expression code generation
### On JVM
2021-05-03 00:14:19 +03:00
`kmath-ast` JVM module supports runtime code generation to eliminate overhead of tree traversal. Code generator builds a
special implementation of `Expression<T>` with implemented `invoke` function.
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
For example, the following code:
2020-12-22 14:02:02 +03:00
```kotlin
2022-02-05 00:27:10 +03:00
import space.kscience.kmath.asm.compileToExpression
import space.kscience.kmath.operations.DoubleField
2021-05-03 00:14:19 +03:00
2022-02-05 00:27:10 +03:00
"x^3-x+3".parseMath().compileToExpression(DoubleField)
```
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
… leads to generation of bytecode, which can be decompiled to the following Java class:
2020-12-22 14:02:02 +03:00
```java
2022-02-05 00:27:10 +03:00
import java.util.*;
import kotlin.jvm.functions.*;
import space.kscience.kmath.asm.internal.*;
import space.kscience.kmath.complex.*;
import space.kscience.kmath.expressions.*;
public final class CompiledExpression_45045_0 implements Expression< Complex > {
private final Object[] constants;
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
public Complex invoke(Map< Symbol , ? extends Complex > arguments) {
Complex var2 = (Complex)MapIntrinsics.getOrFail(arguments, "x");
return (Complex)((Function2)this.constants[0]).invoke(var2, (Complex)this.constants[1]);
}
}
```
2021-05-03 00:14:19 +03:00
2022-02-05 00:27:10 +03:00
For `LongRing` , `IntRing` , and `DoubleField` specialization is supported for better performance:
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
```java
import java.util.*;
import space.kscience.kmath.asm.internal.*;
import space.kscience.kmath.expressions.*;
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
public final class CompiledExpression_-386104628_0 implements DoubleExpression {
private final SymbolIndexer indexer;
public SymbolIndexer getIndexer() {
return this.indexer;
2020-12-22 14:02:02 +03:00
}
2022-02-05 00:27:10 +03:00
public double invoke(double[] arguments) {
double var2 = arguments[0];
return Math.pow(var2, 3.0D) - var2 + 3.0D;
2020-12-22 14:02:02 +03:00
}
2022-02-05 00:27:10 +03:00
public final Double invoke(Map< Symbol , ? extends Double > arguments) {
double var2 = ((Double)MapIntrinsics.getOrFail(arguments, "x")).doubleValue();
return Math.pow(var2, 3.0D) - var2 + 3.0D;
}
}
2020-12-22 14:02:02 +03:00
```
2022-02-05 00:27:10 +03:00
Setting JVM system property `space.kscience.kmath.ast.dump.generated.classes` to `1` makes the translator dump class files to program's working directory, so they can be reviewed manually.
#### Limitations
2020-12-22 14:02:02 +03:00
2022-02-05 00:27:10 +03:00
- The same classes may be generated and loaded twice, so it is recommended to cache compiled expressions to avoid class loading overhead.
- This API is not supported by non-dynamic JVM implementations like TeaVM or GraalVM Native Image because they may not support class loaders.
2020-12-22 14:02:02 +03:00
### On JS
A similar feature is also available on JS.
```kotlin
2021-05-26 16:24:29 +03:00
import space.kscience.kmath.expressions.Symbol.Companion.x
2021-05-03 00:14:19 +03:00
import space.kscience.kmath.expressions.*
import space.kscience.kmath.operations.*
import space.kscience.kmath.estree.*
2021-05-26 16:24:29 +03:00
MstField { x + 2 }.compileToExpression(DoubleField)
2020-12-22 14:02:02 +03:00
```
The code above returns expression implemented with such a JS function:
```js
var executable = function (constants, arguments) {
2021-05-03 00:14:19 +03:00
return constants[1](constants[0](arguments, "x"), 2);
2020-12-22 14:02:02 +03:00
};
```
2021-05-07 15:59:21 +03:00
JS also supports experimental expression optimization with [WebAssembly ](https://webassembly.org/ ) IR generation.
2021-05-03 00:14:19 +03:00
Currently, only expressions inside `DoubleField` and `IntRing` are supported.
2021-04-20 17:39:45 +03:00
```kotlin
2021-05-26 16:24:29 +03:00
import space.kscience.kmath.expressions.Symbol.Companion.x
2021-05-03 00:14:19 +03:00
import space.kscience.kmath.expressions.*
import space.kscience.kmath.operations.*
2021-04-20 17:39:45 +03:00
import space.kscience.kmath.wasm.*
2021-05-26 16:24:29 +03:00
MstField { x + 2 }.compileToExpression(DoubleField)
2021-04-20 17:39:45 +03:00
```
2021-04-23 04:49:01 +03:00
An example of emitted Wasm IR in the form of WAT:
2021-04-20 17:39:45 +03:00
```lisp
(func \$executable (param \$0 f64) (result f64)
(f64.add
(local.get \$0)
(f64.const 2)
)
)
```
2022-02-05 00:27:10 +03:00
#### Limitations
2020-12-22 14:02:02 +03:00
2021-04-20 17:39:45 +03:00
- ESTree expression compilation uses `eval` which can be unavailable in several environments.
- WebAssembly isn't supported by old versions of browsers (see https://webassembly.org/roadmap/).
2021-03-25 19:57:47 +03:00
## Rendering expressions
2021-04-20 17:39:45 +03:00
kmath-ast also includes an extensible engine to display expressions in LaTeX or MathML syntax.
2021-03-25 19:57:47 +03:00
Example usage:
```kotlin
import space.kscience.kmath.ast.*
import space.kscience.kmath.ast.rendering.*
2021-05-03 00:14:19 +03:00
import space.kscience.kmath.misc.*
2021-03-25 19:57:47 +03:00
2021-05-03 00:14:19 +03:00
@OptIn (UnstableKMathAPI::class)
2021-03-25 19:57:47 +03:00
public fun main() {
2021-05-03 00:14:19 +03:00
val mst = "exp(sqrt(x))-asin(2*x)/(2e10+x^3)/(12)+x^(2/3)".parseMath()
2021-03-25 19:57:47 +03:00
val syntax = FeaturedMathRendererWithPostProcess.Default.render(mst)
val latex = LatexSyntaxRenderer.renderWithStringBuilder(syntax)
println("LaTeX:")
println(latex)
println()
val mathML = MathMLSyntaxRenderer.renderWithStringBuilder(syntax)
println("MathML:")
println(mathML)
}
```
2021-04-20 17:39:45 +03:00
Result LaTeX:
2021-03-25 19:57:47 +03:00
2022-06-11 00:06:45 +03:00
$$\operatorname{exp}\\,\left(\sqrt{x}\right)-\frac{\frac{\operatorname{arcsin}\\,\left(2\\,x\right)}{2\times10^{10}+x^{3}}}{12}+x^{2/3}$$
2021-03-25 19:57:47 +03:00
2021-05-03 00:14:19 +03:00
Result MathML (can be used with MathJax or other renderers):
< details >
2021-03-25 19:57:47 +03:00
```html
2021-05-03 00:14:19 +03:00
< math xmlns = "https://www.w3.org/1998/Math/MathML" >
< mrow >
< mo > exp< / mo >
< mspace width = "0.167em" > < / mspace >
< mfenced open = "(" close = ")" separators = "" >
< msqrt >
< mi > x< / mi >
< / msqrt >
< / mfenced >
< mo > -< / mo >
< mfrac >
< mrow >
< mfrac >
< mrow >
< mo > arcsin< / mo >
< mspace width = "0.167em" > < / mspace >
< mfenced open = "(" close = ")" separators = "" >
< mn > 2< / mn >
< mspace width = "0.167em" > < / mspace >
< mi > x< / mi >
< / mfenced >
< / mrow >
< mrow >
< mn > 2< / mn >
< mo > × < / mo >
< msup >
< mrow >
< mn > 10< / mn >
< / mrow >
< mrow >
< mn > 10< / mn >
< / mrow >
< / msup >
< mo > +< / mo >
< msup >
< mrow >
< mi > x< / mi >
< / mrow >
< mrow >
< mn > 3< / mn >
< / mrow >
< / msup >
< / mrow >
< / mfrac >
< / mrow >
< mrow >
< mn > 12< / mn >
< / mrow >
< / mfrac >
< mo > +< / mo >
< msup >
< mrow >
< mi > x< / mi >
< / mrow >
< mrow >
< mn > 2< / mn >
< mo > /< / mo >
< mn > 3< / mn >
< / mrow >
< / msup >
< / mrow >
< / math >
2021-03-25 19:57:47 +03:00
```
2021-05-03 00:14:19 +03:00
< / details >
2021-04-20 17:39:45 +03:00
It is also possible to create custom algorithms of render, and even add support of other markup languages
2021-03-25 19:57:47 +03:00
(see API reference).