Update README.md

This commit is contained in:
Iaroslav 2020-06-25 19:29:31 +07:00
parent 002de8d23a
commit b11a7f1426
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -48,12 +48,11 @@ This API is an extension to MST and MSTExpression APIs. You may optimize both MS
```kotlin
RealField.mstInField { symbol("x") + 2 }.compile()
RealField.expression("2+2".parseMath())
RealField.expression("x+2".parseMath())
```
### Known issues
- Using numeric algebras causes boxing and calling bridge methods.
- 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 and GraalVM) because of using class loaders.