Viewing File: /home/ubuntu/combine_ai/combine/lib/python3.10/site-packages/sympy/core/benchmarks/bench_basic.py

from sympy.core import symbols, S

x, y = symbols('x,y')


def timeit_Symbol_meth_lookup():
    x.diff  # no call, just method lookup


def timeit_S_lookup():
    S.Exp1


def timeit_Symbol_eq_xy():
    x == y
Back to Directory File Manager