Skip to content

Commit

Permalink
Merge pull request #1 from smichr/auth
Browse files Browse the repository at this point in the history
Add carstimon to AUTHORS/aboutus. Welcome to SymPy!
  • Loading branch information
carstimon committed May 13, 2014
2 parents a0529eb + 9c6b690 commit 2d29e19
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -329,3 +329,4 @@ Sahil Shekhawat <sahilshekhawat01@gmail.com>
Kundan Kumar <kundankumar18581@gmail.com>
sevaader <sevaader@gmail.com>
Lennart Fricke <lennart@die-frickes.eu>
carstimon <carstimon@gmail.com>
1 change: 1 addition & 0 deletions doc/src/aboutus.rst
Expand Up @@ -334,6 +334,7 @@ want to be mentioned here, so see our repository history for a full list).
#. Kundan Kumar: fixes to ODE identification of separable_reduced
#. sevaader: fix to assumptions
#. Lennart Fricke: make sure that cse avoids symbol collision
#. carstimon: make Abs(polar_lift(arg)) -> abs(arg)

Up-to-date list in the order of the first contribution is given in the `AUTHORS
<https://github.com/sympy/sympy/blob/master/AUTHORS>`_ file.
Expand Down
3 changes: 2 additions & 1 deletion sympy/functions/elementary/tests/test_complexes.py
Expand Up @@ -560,7 +560,8 @@ def test_periodic_argument():
assert periodic_argument(2*p, p) == periodic_argument(p, p)
assert periodic_argument(pi*p, p) == periodic_argument(p, p)

assert Abs(polar_lift(1+I)) == Abs(1+I)
assert Abs(polar_lift(1 + I)) == Abs(1 + I)


@XFAIL
def test_principal_branch_fail():
Expand Down
8 changes: 5 additions & 3 deletions sympy/integrals/tests/test_integrals.py
Expand Up @@ -4,7 +4,7 @@
Heaviside, I, Integral, integrate, Interval, Lambda, LambertW, log,
Matrix, O, oo, pi, Piecewise, Poly, Rational, S, simplify, sin, tan, sqrt,
sstr, Sum, Symbol, symbols, sympify, terms_gcd, transpose, trigsimp,
Tuple, nan, And, Eq, Or
Tuple, nan, And, Eq, Or, re, im
)
from sympy.integrals.risch import NonElementaryIntegral
from sympy.utilities.pytest import XFAIL, raises, slow
Expand Down Expand Up @@ -283,9 +283,11 @@ def test_issue_3952():
def test_issue_4516():
assert integrate(2**x - 2*x, x) == 2**x/log(2) - x**2


def test_issue_7450():
ans = integrate(exp(-(1+I)*x), (x, 0, oo))
assert re(ans)==S.Half and im(ans) == -S.Half
ans = integrate(exp(-(1 + I)*x), (x, 0, oo))
assert re(ans) == S.Half and im(ans) == -S.Half


def test_matrices():
M = Matrix(2, 2, lambda i, j: (i + j + 1)*sin((i + j + 1)*x))
Expand Down

0 comments on commit 2d29e19

Please sign in to comment.