Remove explicity qualification

This commit is contained in:
Iaroslav Postovalov 2021-02-11 14:52:26 +07:00
parent e6876c3f97
commit b02091402f
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -30,7 +30,7 @@ internal class ExpressionsInterpretersBenchmark {
@Benchmark
fun mstExpression() {
val expr = algebra.mstInField {
MstField.symbol("x") * 2.0 + 2.0 / MstField.symbol("x") - 16.0
symbol("x") * 2.0 + 2.0 / symbol("x") - 16.0
}
invokeAndSum(expr)