From b11a7f1426a707168d8174be4be43fd1d352fed3 Mon Sep 17 00:00:00 2001 From: Iaroslav Date: Thu, 25 Jun 2020 19:29:31 +0700 Subject: [PATCH] Update README.md --- kmath-ast/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kmath-ast/README.md b/kmath-ast/README.md index 4563e17cf..0e375f14d 100644 --- a/kmath-ast/README.md +++ b/kmath-ast/README.md @@ -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.