From 7c792461c8e4e4f1f8734fed143630c74e76b27f Mon Sep 17 00:00:00 2001 From: zitian-gao Date: Tue, 27 May 2025 16:45:31 +0800 Subject: init eval --- .../evaluation/latex2sympy/tests/binomial_test.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 Qwen2.5-Eval/evaluation/latex2sympy/tests/binomial_test.py (limited to 'Qwen2.5-Eval/evaluation/latex2sympy/tests/binomial_test.py') diff --git a/Qwen2.5-Eval/evaluation/latex2sympy/tests/binomial_test.py b/Qwen2.5-Eval/evaluation/latex2sympy/tests/binomial_test.py new file mode 100755 index 0000000..2fec010 --- /dev/null +++ b/Qwen2.5-Eval/evaluation/latex2sympy/tests/binomial_test.py @@ -0,0 +1,36 @@ +from .context import assert_equal, _Add, _Mul, _Pow +import pytest +from sympy import binomial, Symbol + +x = Symbol('x', real=True) +y = Symbol('y', real=True) +theta = Symbol('theta', real=True) +gamma = Symbol('gamma', real=True) + + +def test_binomial_numeric(): + assert_equal("\\binom{16}{2}", binomial(16, 2)) + + +def test_binomial_symbols(): + assert_equal("\\binom{x}{y}", binomial(x, y)) + + +def test_binomial_greek_symbols(): + assert_equal("\\binom{\\theta}{\\gamma}", binomial(theta, gamma)) + + +def test_binomial_expr(): + assert_equal("\\binom{16+2}{\\frac{4}{2}}", binomial(_Add(16, 2), _Mul(4, _Pow(2, -1)), evaluate=False)) + + +def test_choose_numeric(): + assert_equal("\\choose{16}{2}", binomial(16, 2)) + + +def test_choose_symbols(): + assert_equal("\\choose{x}{y}", binomial(x, y)) + + +def test_choose_greek_symbols(): + assert_equal("\\choose{\\theta}{\\gamma}", binomial(theta, gamma)) -- cgit v1.2.3