o
    jg                     @   s\   d dl mZ d dlmZ d dlmZmZmZ ddlm	Z	 dddgiZ
ed	d
dddZdS )    )import_module)doctest_depends_on)LarkLaTeXParserTransformToSymPyExprparse_latex_lark   )LaTeXParsingError)parse_latexantlr4lark)r
   r   )modulesFantlrc                 C   sR   |dkrt dddgid}|dur|| |S dS |dkr!t| S td| d	)
a|  Converts the input LaTeX string ``s`` to a SymPy ``Expr``.

    Parameters
    ==========

    s : str
        The LaTeX string to parse. In Python source containing LaTeX,
        *raw strings* (denoted with ``r"``, like this one) are preferred,
        as LaTeX makes liberal use of the ``\`` character, which would
        trigger escaping in normal Python strings.
    backend : str, optional
        Currently, there are two backends supported: ANTLR, and Lark.
        The default setting is to use the ANTLR backend, which can be
        changed to Lark if preferred.

        Use ``backend="antlr"`` for the ANTLR-based parser, and
        ``backend="lark"`` for the Lark-based parser.

        The ``backend`` option is case-sensitive, and must be in
        all lowercase.
    strict : bool, optional
        This option is only available with the ANTLR backend.

        If True, raise an exception if the string cannot be parsed as
        valid LaTeX. If False, try to recover gracefully from common
        mistakes.

    Examples
    ========

    >>> from sympy.parsing.latex import parse_latex
    >>> expr = parse_latex(r"\frac {1 + \sqrt {\a}} {\b}")
    >>> expr
    (sqrt(a) + 1)/b
    >>> expr.evalf(4, subs=dict(a=5, b=2))
    1.618
    >>> func = parse_latex(r"\int_1^\alpha \dfrac{\mathrm{d}t}{t}", backend="lark")
    >>> func.evalf(subs={"alpha": 2})
    0.693147180559945
    r   z&sympy.parsing.latex._parse_latex_antlrfromlistX)import_kwargsNr   zUsing the 'z/' backend in the LaTeX parser is not supported.)r   r	   r   NotImplementedError)sstrictbackend_latex r   T/var/www/html/zoom/venv/lib/python3.10/site-packages/sympy/parsing/latex/__init__.pyr	      s   +r	   N)Fr   )sympy.externalr   sympy.utilities.decoratorr   sympy.parsing.latex.larkr   r   r   errorsr   __doctest_requires__r	   r   r   r   r   <module>   s    