add read me
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
from sympy.core.numbers import oo
|
||||
from sympy.core.symbol import Symbol
|
||||
from sympy.series.limits import limit
|
||||
|
||||
x = Symbol('x')
|
||||
|
||||
|
||||
def timeit_limit_1x():
|
||||
limit(1/x, x, oo)
|
||||
@@ -0,0 +1,10 @@
|
||||
from sympy.core.add import Add
|
||||
from sympy.core.symbol import Symbol
|
||||
from sympy.series.order import O
|
||||
|
||||
x = Symbol('x')
|
||||
l = [x**i for i in range(1000)]
|
||||
l.append(O(x**1001))
|
||||
|
||||
def timeit_order_1x():
|
||||
Add(*l)
|
||||
Reference in New Issue
Block a user