o
    jgB                     @   s  d dl mZ d dlmZmZmZmZmZmZ d dl	m
Z
 d dlmZ d dlmZ d dlmZ d dlmZmZ d dlmZmZmZmZmZmZmZmZmZmZmZ d d	l m!Z! d d
l"m#Z# dddZ$dd Z%dd Z&dd Z'dd Z(dd Z)dd Z*dd Z+dd Z,dd  Z-d!d" Z.d#d$ Z/d%d& Z0d'd( Z1d)d* Z2d+d, Z3d-d. Z4d/d0 Z5d1d2 Z6d3d4 Z7d5d6 Z8d7d8 Z9d9d: Z:d;d< Z;d=d> Z<d?d@ Z=dAdB Z>dCdD Z?dEdF Z@dGdH ZAdIdJ ZBdKdL ZCdMdN ZDdOdP ZEdQdR ZFdSdT ZGdUdV ZHdWdX ZIdYdZ ZJd[d\ ZKd]d^ ZLd_d` ZMdadb ZNdcdd ZOdedf ZPdgdh ZQdidj ZRdkdl ZSdmdn ZTdodp ZUdqdr ZVdsdt ZWdudv ZXdwdx ZYdydz ZZd{d| Z[d}d~ Z\dd Z]dd Z^dS )    )StringIO)symbolsEqpiCatalanLambdaDummyEquality)Symbol)erf)Integral)MatrixMatrixSymbol)codegenmake_routineCCodeGen
C89CodeGen
C99CodeGenInputArgumentCodeGenErrorFCodeGenCodeGenArgumentListErrorOutputArgumentInOutArgument)raises)implemented_functionfileFc                 C   s*   t  }| ||||| | }|  |S )a5  Wrapper for dump_fn. dump_fn writes its results to a stream object and
       this wrapper returns the contents of that stream as a string. This
       auxiliary function is used by many tests below.

       The header and the empty lines are not generated to facilitate the
       testing of the output.
    )r   getvalueclose)dump_fnroutinesprefixheaderemptyoutputsource r'   Z/var/www/html/zoom/venv/lib/python3.10/site-packages/sympy/utilities/tests/test_codegen.py
get_string   s
   r)   c                     s  t d\   ttfdd tt fdd tdt  gd} dd | jD  gksDJ d	d | jD ttttgksTJ tdtgd} d
d | jD tttgkspJ ddl	m
}m} t|ddg\}}t ddd}|d|}tdt|| || |||gd} dd | jD |j|j|gksJ t  ddfddftdt  gd} dd | jD  gksJ d S )Nza x y zc                      s   t d gdS Ntestargument_sequencer   r'   )exprxzr'   r(   <lambda>&   s    z-test_Routine_argument_order.<locals>.<lambda>c                      s   t dt gdS r*   )r   r   r'   ar/   r0   yr1   r'   r(   r2   (   s
    r+   r,   c                 S      g | ]}|j qS r'   name.0argr'   r'   r(   
<listcomp>+       z/test_Routine_argument_order.<locals>.<listcomp>c                 S      g | ]}t |qS r'   typer9   r'   r'   r(   r<   ,       c                 S   r>   r'   r?   r9   r'   r'   r(   r<   /   rA   r   IndexedBaseIdxABmTintegeric                 S   r6   r'   r7   r9   r'   r'   r(   r<   7   r=            c                 S   r6   r'   r7   r9   r'   r'   r(   r<   ;   r=   )r   r   r   r   r   	argumentsr   r   r   sympy.tensorrC   rD   maplabelr   )rrC   rD   rE   rF   rG   rJ   r'   r3   r(   test_Routine_argument_order#   s,    


"" $rS   c                  C   "   t  } t| jg }|dksJ d S )Nz$#include "file.h"
#include <math.h>
r   r)   dump_ccode_genr&   r'   r'   r(   test_empty_c_code>      rY   c                  C   B   t  } t| jg dd}|d d dksJ |dd  dksJ d S )NTr#   R   zR/******************************************************************************
 *   a  *
 *                                                                            *
 *              See http://www.sympy.org/ for more information.               *
 *                                                                            *
 *                       This file is part of 'project'                       *
 ******************************************************************************/
#include "file.h"
#include <math.h>
rU   rW   r'   r'   r(   test_empty_c_code_with_commentD      
r_   c                  C   rT   )Nz9#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
#endif
)r   r)   dump_hrW   r'   r'   r(   test_empty_c_headerV   rZ   rb   c                  C   L   t d\} }}| | | }td|}t }t|j|g}d}||ks$J d S )Nx,y,zr+   #include "file.h"
#include <math.h>
double test(double x, double y, double z) {
   double test_result;
   test_result = z*(x + y);
   return test_result;
}
r   r   r   r)   rV   r0   r5   r1   r/   routinerX   r&   expectedr'   r'   r(   test_simple_c_code\      
	rj   c                  C   rc   )Nzif, typedef, whiler+   z#include "file.h"
#include <math.h>
double test(double if_, double typedef_, double while_) {
   double test_result;
   test_result = while_*(if_ + typedef_);
   return test_result;
}
)r   r   r   r)   rV   rg   r'   r'   r(   test_c_code_reserved_wordsn   rk   rl   c                  C   s@   t dtt } t }t|j| g}dtd }||ksJ d S )Nr+   z#include "file.h"
#include <math.h>
double test() {
   double test_result;
   double const Catalan = %s;
   test_result = pow(M_PI, Catalan);
   return test_result;
}
   )r   r   r   r   r)   rV   evalfrh   rX   r&   ri   r'   r'   r(   test_numbersymbol_c_code   s   
rp   c                  C   R   t d\} }}| | }td||| |gd}t }t|j|g}d}||ks'J d S )Nrd   r+   r,   z#include "file.h"
#include <math.h>
double test(double z, double x, double y) {
   double test_result;
   test_result = x + y;
   return test_result;
}
rf   rg   r'   r'   r(   test_c_code_argument_order      	rr   c                  C   rc   )Nrd   r+   d#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
double test(double x, double y, double z);
#endif
)r   r   r   r)   ra   rg   r'   r'   r(   test_simple_c_header   s   
ru   c                  C   sH   t d\} }}| | | }ddg}td|fddddd}||ks"J d S )	Nrd   )file.cre   )file.hrt   r+   Cr   Fr#   r$   r   r   )r0   r5   r1   r/   ri   resultr'   r'   r(   test_simple_c_codegen   s   r|   c                     R   t d\} }}| | | }| | | }td||gt  tt fdd d S )Nrd   r+   c                         t  jgS Nr)   ra   r'   rX   rh   r'   r(   r2          z)test_multiple_results_c.<locals>.<lambda>)r   r   r   r   r   r0   r5   r1   expr1expr2r'   r   r(   test_multiple_results_c      r   c                   C      t tdd  d S )Nc                   S   
   t dg S Nr+   r.   r'   r'   r'   r(   r2         
 z#test_no_results_c.<locals>.<lambda>r   
ValueErrorr'   r'   r'   r(   test_no_results_c      r   c                  C   sp  ddl m}  ddlm} ddlm}m}m} ddlm	}m
} ddlm} ddlm}m}	m}
m}m}m} td}d	| |fd
||fd|	|fd|
|fd||fd||fd||fd||fd||fd||fd||fd||fd||fd||fd||fg}t|ddddd}|d d dksJ |d d dksJ |d d dksJ |d d d ksJ d S )!Nr   Abslogcoshsinhtanh)ceilingfloorsqrtacosasinatancossintanr0   	test_fabs	test_acos	test_asin	test_atan	test_ceiltest_cos	test_cosh
test_floortest_logtest_lntest_sin	test_sinh	test_sqrttest_tan	test_tanhC89r   Fry   rv   rK   a  #include "file.h"
#include <math.h>
double test_fabs(double x) {
   double test_fabs_result;
   test_fabs_result = fabs(x);
   return test_fabs_result;
}
double test_acos(double x) {
   double test_acos_result;
   test_acos_result = acos(x);
   return test_acos_result;
}
double test_asin(double x) {
   double test_asin_result;
   test_asin_result = asin(x);
   return test_asin_result;
}
double test_atan(double x) {
   double test_atan_result;
   test_atan_result = atan(x);
   return test_atan_result;
}
double test_ceil(double x) {
   double test_ceil_result;
   test_ceil_result = ceil(x);
   return test_ceil_result;
}
double test_cos(double x) {
   double test_cos_result;
   test_cos_result = cos(x);
   return test_cos_result;
}
double test_cosh(double x) {
   double test_cosh_result;
   test_cosh_result = cosh(x);
   return test_cosh_result;
}
double test_floor(double x) {
   double test_floor_result;
   test_floor_result = floor(x);
   return test_floor_result;
}
double test_log(double x) {
   double test_log_result;
   test_log_result = log(x);
   return test_log_result;
}
double test_ln(double x) {
   double test_ln_result;
   test_ln_result = log(x);
   return test_ln_result;
}
double test_sin(double x) {
   double test_sin_result;
   test_sin_result = sin(x);
   return test_sin_result;
}
double test_sinh(double x) {
   double test_sinh_result;
   test_sinh_result = sinh(x);
   return test_sinh_result;
}
double test_sqrt(double x) {
   double test_sqrt_result;
   test_sqrt_result = sqrt(x);
   return test_sqrt_result;
}
double test_tan(double x) {
   double test_tan_result;
   test_tan_result = tan(x);
   return test_tan_result;
}
double test_tanh(double x) {
   double test_tanh_result;
   test_tanh_result = tanh(x);
   return test_tanh_result;
}
rw   a  #ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
double test_fabs(double x);
double test_acos(double x);
double test_asin(double x);
double test_atan(double x);
double test_ceil(double x);
double test_cos(double x);
double test_cosh(double x);
double test_floor(double x);
double test_log(double x);
double test_ln(double x);
double test_sin(double x);
double test_sinh(double x);
double test_sqrt(double x);
double test_tan(double x);
double test_tanh(double x);
#endif
)$sympy.functions.elementary.complexesr   &sympy.functions.elementary.exponentialr   %sympy.functions.elementary.hyperbolicr   r   r   #sympy.functions.elementary.integersr   r   (sympy.functions.elementary.miscellaneousr   (sympy.functions.elementary.trigonometricr   r   r   r   r   r   r   r   )r   r   r   r   r   r   r   r   r   r   r   r   r   r   r0   	name_exprr{   r'   r'   r(   test_ansi_math1_codegen   s@    
















r   c                  C   s   ddl m}  td\}}d| ||fd|| fg}t|ddddd	}|d d d
ks,J |d d dks6J |d d dks@J |d d dksJJ d S )Nr   atan2x,y
test_atan2test_powr   r   Fry   rv   rK   a*  #include "file.h"
#include <math.h>
double test_atan2(double x, double y) {
   double test_atan2_result;
   test_atan2_result = atan2(x, y);
   return test_atan2_result;
}
double test_pow(double x, double y) {
   double test_pow_result;
   test_pow_result = pow(x, y);
   return test_pow_result;
}
rw   z#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
double test_atan2(double x, double y);
double test_pow(double x, double y);
#endif
r   r   r   r   )r   r0   r5   r   r{   r'   r'   r(   test_ansi_math2_codegen  s   


r   c                  C   s   ddl m} m}m} td\}}}d||| | || d  fd| | | | | | | | || | fg}t|ddd	d	d
}|d d dksNJ |d d dksXJ |d d dksbJ |d d dkslJ d S )Nr   r   r   r   rd   test1   test2r   r   Fry   rv   rK   a-  #include "file.h"
#include <math.h>
double test1(double x, double y, double z) {
   double test1_result;
   test1_result = pow(sin(x), 7) + 7*pow(sin(x), 6)*cos(y) + 7*pow(sin(x), 6)*tan(z) + 21*pow(sin(x), 5)*pow(cos(y), 2) + 42*pow(sin(x), 5)*cos(y)*tan(z) + 21*pow(sin(x), 5)*pow(tan(z), 2) + 35*pow(sin(x), 4)*pow(cos(y), 3) + 105*pow(sin(x), 4)*pow(cos(y), 2)*tan(z) + 105*pow(sin(x), 4)*cos(y)*pow(tan(z), 2) + 35*pow(sin(x), 4)*pow(tan(z), 3) + 35*pow(sin(x), 3)*pow(cos(y), 4) + 140*pow(sin(x), 3)*pow(cos(y), 3)*tan(z) + 210*pow(sin(x), 3)*pow(cos(y), 2)*pow(tan(z), 2) + 140*pow(sin(x), 3)*cos(y)*pow(tan(z), 3) + 35*pow(sin(x), 3)*pow(tan(z), 4) + 21*pow(sin(x), 2)*pow(cos(y), 5) + 105*pow(sin(x), 2)*pow(cos(y), 4)*tan(z) + 210*pow(sin(x), 2)*pow(cos(y), 3)*pow(tan(z), 2) + 210*pow(sin(x), 2)*pow(cos(y), 2)*pow(tan(z), 3) + 105*pow(sin(x), 2)*cos(y)*pow(tan(z), 4) + 21*pow(sin(x), 2)*pow(tan(z), 5) + 7*sin(x)*pow(cos(y), 6) + 42*sin(x)*pow(cos(y), 5)*tan(z) + 105*sin(x)*pow(cos(y), 4)*pow(tan(z), 2) + 140*sin(x)*pow(cos(y), 3)*pow(tan(z), 3) + 105*sin(x)*pow(cos(y), 2)*pow(tan(z), 4) + 42*sin(x)*cos(y)*pow(tan(z), 5) + 7*sin(x)*pow(tan(z), 6) + pow(cos(y), 7) + 7*pow(cos(y), 6)*tan(z) + 21*pow(cos(y), 5)*pow(tan(z), 2) + 35*pow(cos(y), 4)*pow(tan(z), 3) + 35*pow(cos(y), 3)*pow(tan(z), 4) + 21*pow(cos(y), 2)*pow(tan(z), 5) + 7*cos(y)*pow(tan(z), 6) + pow(tan(z), 7);
   return test1_result;
}
double test2(double x, double y, double z) {
   double test2_result;
   test2_result = cos(cos(cos(cos(cos(cos(cos(cos(x + y + z))))))));
   return test2_result;
}
rw   z#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
double test1(double x, double y, double z);
double test2(double x, double y, double z);
#endif
r   r   r   r   r   expandr   )r   r   r   r0   r5   r1   r   r{   r'   r'   r(   test_complicated_codegen,  s   ".
1
r   c                  C   s4  ddl m} m} ddlm} |ddd\}}| d}| d}| d	}|d
|}|d|}	tdt|| |||	f ||	  fddddd\\}
}\}}|
dksPJ d}||dd|| |	  i ks||dd|	||   i ks||dd|| |	  i ks||dd|	||   i ksJ |dksJ |dksJ d S )Nr   rB   r   n mTrH   rE   r0   r5   rJ   jmatrix_vectorC99r   Fry   rv   a  #include "file.h"
#include <math.h>
void matrix_vector(double *A, int m, int n, double *x, double *y) {
   for (int i=0; i<m; i++){
      y[i] = 0;
   }
   for (int i=0; i<m; i++){
      for (int j=0; j<n; j++){
         y[i] = %(rhs)s + y[i];
      }
   }
}
rhs
A[%s]*x[j]
x[j]*A[%s]rw   z|#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
void matrix_vector(double *A, int m, int n, double *x, double *y);
#endif
rO   rC   rD   sympy.core.symbolr   r   r   rC   rD   r   nrG   rE   r0   r5   rJ   r   f1codef2	interfaceri   r'   r'   r(   test_loops_cp  s,   

( r   c                  C   s   ddl m} m} tddtd\}}| d}| d}|||}d|jj|jd	 }td
t|| || }t	 }t
 }	t|	j|g}
|
|ksGJ tt t|j|g W d    d S 1 s^w   Y  d S )Nr   rB   i mTrI   clsr0   r5   z#include "file.h"
#include <math.h>
void test_dummies(int m_%(mno)i, double *x, double *y) {
   for (int i_%(ino)i=0; i_%(ino)i<m_%(mno)i; i_%(ino)i++){
      y[i_%(ino)i] = x[i_%(ino)i];
   }
}
)inomnotest_dummies)rO   rC   rD   r   r   rQ   dummy_indexr   r   r   r   r)   rV   r   NotImplementedError)rC   rD   rJ   rG   r0   r5   ri   rR   c89c99r   r'   r'   r(   test_dummy_loops_c  s    
	
"r   c                  C   sV  ddl m} m} ddlm} |ddd\}}}}| d||fd}| d	}| d
}	|d||d f}
|d|}tdt|	|
 ||
|f ||  fddddd\\}}\}}|dksZJ d|d dd }||dd|
| |  i ks||dd||
|   i ks||dd|
| |  i ks||dd||
|   i ksJ |dksJ |dksJ d S )Nr   rB   r   n m o pTrH   rE   shaper0   r5   rJ      r   r   r   r   Fry   rv   a#  #include "file.h"
#include <math.h>
void matrix_vector(double *A, int m, int n, int o, int p, double *x, double *y) {
   for (int i=o; i<%(upperi)s; i++){
      y[i] = 0;
   }
   for (int i=o; i<%(upperi)s; i++){
      for (int j=0; j<n; j++){
         y[i] = %(rhs)s + y[i];
      }
   }
}
   %(rhs)s)upperir   r   r   r   rw   z#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
void matrix_vector(double *A, int m, int n, int o, int p, double *x, double *y);
#endif
r   rC   rD   r   r   rG   oprE   r0   r5   rJ   r   r   r   r   r   ri   r'   r'   r(   test_partial_loops_c  s.   
( r   c            
      C      ddl m}  ddlm}m} td\}}}td| |||||g}t }|j|gdddd}|d d d	ks:J d
}	|d d |	ksFJ d S )Nr   r	   r   r   rd   foor+   Fry   test.cz#include "test.h"
#include <math.h>
double foo(double x, double *y) {
   (*y) = sin(x);
   double foo_result;
   foo_result = cos(x);
   return foo_result;
}
rK   	sympy.core.relationalr
   r   r   r   r   r   r   write
r
   r   r   r0   r5   r1   rR   cr{   ri   r'   r'   r(   test_output_arg_c     
r   c            
      C   r   )Nr   r	   r   zif, while, zr   r+   Fry   r   z#include "test.h"
#include <math.h>
double foo(double if_, double *while_) {
   (*while_) = sin(if_);
   double foo_result;
   foo_result = cos(if_);
   return foo_result;
}
rK   r   r   r'   r'   r(    test_output_arg_c_reserved_words  r   r   c            	      C   s   t ddd} t ddd}t| }t|}|| }tddd}|d|}d	|jd
 _d	|jd
 _t|j|gdd}d}||ksAJ d S )NrE   rM   brK   r+   T)projectcser   out)r"   z#include "test.h"
#include <math.h>
void c(double *A, double *b, double *out) {
   out[0] = A[0]*b[0] + A[1]*b[1] + A[2]*b[2];
   out[1] = A[3]*b[0] + A[4]*b[1] + A[5]*b[2];
   out[2] = A[6]*b[0] + A[7]*b[1] + A[8]*b[2];
}
)	r   r   r   rh   rN   
result_var_namer)   rV   )	A_symb_symrE   r   r   cgenrR   r   ri   r'   r'   r(   test_multidim_c_argument_cse  s   	r  c                  C   s   t d\} }}t d\}}tddd}t|tdd| gg}t|| | | }t|d|  }d|||gf}	d}
t|	d	dd
d
| |||||fd}|d d }||
ksSJ d S )Nrd   B,CrE   rK   rM   rL   r+   z#include "test.h"
#include <math.h>
void test(double x, double *C, double z, double y, double *A, double *B) {
   (*C) = z*(x + y);
   A[0] = 1;
   A[1] = 2;
   A[2] = x;
   (*B) = 2*x;
}
r   Fr#   r$   r-   r   r   r   r
   r   r   )r0   r5   r1   rF   rx   rE   r   r   expr3r   ri   r{   r&   r'   r'   r(    test_ccode_results_named_ordered  s   r  c                  C   s   t ddd} t ddd}t ddd}t ddd}dt|| d	d d f t|| dd d f t|| d d d
f gf}t|ddddd}|d	 d }d}||ksQJ d S )NrE   r   rM   rF   rK   rx   Dr+   r   rL   r   Fry   a  #include "test.h"
#include <math.h>
void test(double *A, double *B, double *C, double *D) {
   B[0] = A[0];
   B[1] = A[1];
   B[2] = A[2];
   C[0] = A[3];
   C[1] = A[4];
   C[2] = A[5];
   D[0] = A[2];
   D[1] = A[5];
   D[2] = A[8];
   D[3] = A[11];
   D[4] = A[14];
}
r   r
   r   rE   rF   rx   r  r   r{   r&   ri   r'   r'   r(   test_ccode_matrixsymbol_slice8     r  c            
      C   s   t d\} }}}tddd}dt|t| | g| | ||  g| | | | gggf}tdd}t||ddd	}|d
 d }d}	||	ksGJ d S )Nza b c derM   rK   r+   T)r   F)rX   r#   r$   r   z#include "test.h"
#include <math.h>
void test(double a, double b, double c, double d, double *e) {
   const double x0 = a*b;
   const double x1 = c*d;
   e[0] = x0;
   e[1] = x0 + x1;
   e[2] = x0*x1;
}
)r   r   r
   r   r   r   )
r4   r   r   dr  r   	generatorr{   r&   ri   r'   r'   r(   test_ccode_cseU  s   <
r  c                  C   sJ   t ddd} d}t }t||dd| fd}|d d }d}||ks#J d S )	Nr0   rL   rK   )r+   g      ?F)rX   r#   r$   r-   r   z#include "test.h"
#include <math.h>
double test(double *x) {
   double test_result;
   test_result = 1.0;
   return test_result;
}
)r   r   r   )r0   r   r  r{   r&   ri   r'   r'   r(   test_ccode_unused_array_argi  s   	r  c                  C   sp   t ddd} t ddd}tddd}d| d	 | d  f}t|d
dd| ||fd}|d	 d }d}||ks6J d S )NXrM   rK   Yr1   TrH   testBugr   rx   F)languager#   r$   r-   z#include "testBug.h"
#include <math.h>
double testBug(double *X, double *Y, int z) {
   double testBug_result;
   testBug_result = X[0] + X[1];
   return testBug_result;
}
)r   r   r   )r  r  r1   r   r{   r&   ri   r'   r'   r(    test_ccode_unused_array_arg_func|  s   	r  c                  C   rT   N r   r)   dump_f95rW   r'   r'   r(   test_empty_f_code  rZ   r  c                  C   r[   )NTr\   r]   zR!******************************************************************************
!*r^   a  *
!*                                                                            *
!*              See http://www.sympy.org/ for more information.               *
!*                                                                            *
!*                       This file is part of 'project'                       *
!******************************************************************************
r  rW   r'   r'   r(   test_empty_f_code_with_header  r`   r   c                  C   rT   r  )r   r)   ra   rW   r'   r'   r(   test_empty_f_header  rZ   r!  c                  C   rc   )Nrd   r+   REAL*8 function test(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
test = z*(x + y)
end function
r   r   r   r)   r  rg   r'   r'   r(   test_simple_f_code  rk   r$  c                  C   sJ   t dtt } t }t|j| g}dtdtdf }||ks#J d S )Nr+   zREAL*8 function test()
implicit none
REAL*8, parameter :: Catalan = %sd0
REAL*8, parameter :: pi = %sd0
test = pi**Catalan
end function
rm   )r   r   r   r   r)   r  rn   ro   r'   r'   r(   test_numbersymbol_f_code  s   r%  c                  C   sN   t d} tdt| td|   }t }t|j|g}d}||ks%J |d S )Nr0   r+   zhREAL*8 function test(x)
implicit none
REAL*8, intent(in) :: x
test = erf(x) + erf(2.0d0*x)
end function
)r   r   r   r   r)   r  )r0   rh   rX   r&   ri   r'   r'   r(   test_erf_f_code  s   r'  c                  C   rq   )Nrd   r+   r,   zREAL*8 function test(z, x, y)
implicit none
REAL*8, intent(in) :: z
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
test = x + y
end function
r#  rg   r'   r'   r(   test_f_code_argument_order  rs   r(  c                  C   rc   )Nrd   r+   interface
REAL*8 function test(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
end function
end interface
)r   r   r   r)   ra   rg   r'   r'   r(   test_simple_f_header  s   

r*  c                  C   sH   t d\} }}| | | }td|fddddd}ddg}||ks"J d S )	Nrd   r+   F95r   Fry   )file.f90r"  )rw   r)  rz   )r0   r5   r1   r/   r{   ri   r'   r'   r(   test_simple_f_codegen  s   r-  c                     r}   )Nrd   r+   c                      r~   r   r   r'   r   r'   r(   r2   "  r   z)test_multiple_results_f.<locals>.<lambda>)r   r   r   r   r   r   r'   r   r(   test_multiple_results_f  r   r.  c                   C   r   )Nc                   S   r   r   r.   r'   r'   r'   r(   r2   &  r   z#test_no_results_f.<locals>.<lambda>r   r'   r'   r'   r(   test_no_results_f%  r   r/  c                  C   sT  ddl m}  ddlm} ddlm}m}m} ddlm	} ddl
m}m}m}m}	m}
m} td}d| |fd	||fd
||fd||fd|	|fd||fd||fd||fd|
|fd||fd||fd||fd||fg}t|ddddd}|d d dksJ d}|d d |ksJ |d d dksJ d}|d d |ksJ d S )Nr   r   r   r   r   r   r0   test_absr   r   r   r   r   r   r   r   r   r   r   r   r+  r   Fry   r,  a   REAL*8 function test_abs(x)
implicit none
REAL*8, intent(in) :: x
test_abs = abs(x)
end function
REAL*8 function test_acos(x)
implicit none
REAL*8, intent(in) :: x
test_acos = acos(x)
end function
REAL*8 function test_asin(x)
implicit none
REAL*8, intent(in) :: x
test_asin = asin(x)
end function
REAL*8 function test_atan(x)
implicit none
REAL*8, intent(in) :: x
test_atan = atan(x)
end function
REAL*8 function test_cos(x)
implicit none
REAL*8, intent(in) :: x
test_cos = cos(x)
end function
REAL*8 function test_cosh(x)
implicit none
REAL*8, intent(in) :: x
test_cosh = cosh(x)
end function
REAL*8 function test_log(x)
implicit none
REAL*8, intent(in) :: x
test_log = log(x)
end function
REAL*8 function test_ln(x)
implicit none
REAL*8, intent(in) :: x
test_ln = log(x)
end function
REAL*8 function test_sin(x)
implicit none
REAL*8, intent(in) :: x
test_sin = sin(x)
end function
REAL*8 function test_sinh(x)
implicit none
REAL*8, intent(in) :: x
test_sinh = sinh(x)
end function
REAL*8 function test_sqrt(x)
implicit none
REAL*8, intent(in) :: x
test_sqrt = sqrt(x)
end function
REAL*8 function test_tan(x)
implicit none
REAL*8, intent(in) :: x
test_tan = tan(x)
end function
REAL*8 function test_tanh(x)
implicit none
REAL*8, intent(in) :: x
test_tanh = tanh(x)
end function
rK   rw   aA  interface
REAL*8 function test_abs(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_acos(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_asin(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_atan(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_cos(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_cosh(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_log(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_ln(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_sin(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_sinh(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_sqrt(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_tan(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
interface
REAL*8 function test_tanh(x)
implicit none
REAL*8, intent(in) :: x
end function
end interface
)r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   )r   r   r   r   r   r   r   r   r   r   r   r   r0   r   r{   ri   r'   r'   r(   test_intrinsic_math_codegen)  s:    












CPr1  c                  C   s   ddl m}  td\}}d| ||fd|| fg}t|ddddd	}|d d d
ks,J d}|d d |ks8J |d d dksBJ d}|d d |ksNJ d S )Nr   r   r   r   r   r+  r   Fry   r,  zREAL*8 function test_atan2(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
test_atan2 = atan2(x, y)
end function
REAL*8 function test_pow(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
test_pow = x**y
end function
rK   rw   a  interface
REAL*8 function test_atan2(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
end function
end interface
interface
REAL*8 function test_pow(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
end function
end interface
r   )r   r0   r5   r   r{   ri   r'   r'   r(   test_intrinsic_math2_codegen  s   
r2  c            	      C   s   ddl m} m}m} td\}}}d||| | || d  fd| | | | | | | | || | fg}t|ddd	d	d
}|d d dksNJ d}|d d |ksZJ |d d dksdJ d}|d d |kspJ d S )Nr   r   rd   r   r   r   r+  r   Fry   r,  a{  REAL*8 function test1(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
test1 = sin(x)**7 + 7*sin(x)**6*cos(y) + 7*sin(x)**6*tan(z) + 21*sin(x) &
      **5*cos(y)**2 + 42*sin(x)**5*cos(y)*tan(z) + 21*sin(x)**5*tan(z) &
      **2 + 35*sin(x)**4*cos(y)**3 + 105*sin(x)**4*cos(y)**2*tan(z) + &
      105*sin(x)**4*cos(y)*tan(z)**2 + 35*sin(x)**4*tan(z)**3 + 35*sin( &
      x)**3*cos(y)**4 + 140*sin(x)**3*cos(y)**3*tan(z) + 210*sin(x)**3* &
      cos(y)**2*tan(z)**2 + 140*sin(x)**3*cos(y)*tan(z)**3 + 35*sin(x) &
      **3*tan(z)**4 + 21*sin(x)**2*cos(y)**5 + 105*sin(x)**2*cos(y)**4* &
      tan(z) + 210*sin(x)**2*cos(y)**3*tan(z)**2 + 210*sin(x)**2*cos(y) &
      **2*tan(z)**3 + 105*sin(x)**2*cos(y)*tan(z)**4 + 21*sin(x)**2*tan &
      (z)**5 + 7*sin(x)*cos(y)**6 + 42*sin(x)*cos(y)**5*tan(z) + 105* &
      sin(x)*cos(y)**4*tan(z)**2 + 140*sin(x)*cos(y)**3*tan(z)**3 + 105 &
      *sin(x)*cos(y)**2*tan(z)**4 + 42*sin(x)*cos(y)*tan(z)**5 + 7*sin( &
      x)*tan(z)**6 + cos(y)**7 + 7*cos(y)**6*tan(z) + 21*cos(y)**5*tan( &
      z)**2 + 35*cos(y)**4*tan(z)**3 + 35*cos(y)**3*tan(z)**4 + 21*cos( &
      y)**2*tan(z)**5 + 7*cos(y)*tan(z)**6 + tan(z)**7
end function
REAL*8 function test2(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
test2 = cos(cos(cos(cos(cos(cos(cos(cos(x + y + z))))))))
end function
rK   rw   a4  interface
REAL*8 function test1(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
end function
end interface
interface
REAL*8 function test2(x, y, z)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
end function
end interface
r   )	r   r   r   r0   r5   r1   r   r{   ri   r'   r'   r(   test_complicated_codegen_f95	  s   ".r3  c                  C   s   ddl m} m} ddlm} |ddd\}}t| d\}}}|d|}|d	|}	td
t|| |||	f ||	  fddddd\\}
}\}}|
dksLJ d}||ddi ks`||ddi ks`J |dksfJ |dkslJ d S )Nr   rB   r   zn,mTrH   AxyrJ   r   r   r+  r   Fry   r,  a~  subroutine matrix_vector(A, m, n, x, y)
implicit none
INTEGER*4, intent(in) :: m
INTEGER*4, intent(in) :: n
REAL*8, intent(in), dimension(1:m, 1:n) :: A
REAL*8, intent(in), dimension(1:n) :: x
REAL*8, intent(out), dimension(1:m) :: y
INTEGER*4 :: i
INTEGER*4 :: j
do i = 1, m
   y(i) = 0
end do
do i = 1, m
   do j = 1, n
      y(i) = %(rhs)s + y(i)
   end do
end do
end subroutine
r   A(i, j)*x(j)x(j)*A(i, j)rw   a  interface
subroutine matrix_vector(A, m, n, x, y)
implicit none
INTEGER*4, intent(in) :: m
INTEGER*4, intent(in) :: n
REAL*8, intent(in), dimension(1:m, 1:n) :: A
REAL*8, intent(in), dimension(1:n) :: x
REAL*8, intent(out), dimension(1:m) :: y
end subroutine
end interface
)rO   rC   rD   r   r   rP   r   r   r   r'   r'   r(   
test_loopsG  s$   

(r7  c            
      C   s   ddl m} m} tddtd\}}| d}| d}|||}d|jj|jd	 }td
t|| || }t	 }t
|j|g}	|	|ksDJ d S )Nr   rB   r   Tr   r0   r5   a>  subroutine test_dummies(m_%(mcount)i, x, y)
implicit none
INTEGER*4, intent(in) :: m_%(mcount)i
REAL*8, intent(in), dimension(1:m_%(mcount)i) :: x
REAL*8, intent(out), dimension(1:m_%(mcount)i) :: y
INTEGER*4 :: i_%(icount)i
do i_%(icount)i = 1, m_%(mcount)i
   y(i_%(icount)i) = x(i_%(icount)i)
end do
end subroutine
)icountmcountr   )rO   rC   rD   r   r   rQ   r   r   r   r   r)   r  )
rC   rD   rJ   rG   r0   r5   ri   rR   r   r   r'   r'   r(   test_dummy_loops_f95z  s   

r:  c                  C   s   ddl m} m} ddlm} |ddd\}}}}|d\}}}	| |||||||f }| |||| }| |	||| }	tdt|	|	||  fd	d
ddd\\}
}\}}|
dks]J d}||ddi ksq||ddi ksqJ |dkswJ |dks}J d S )Nr   rB   r   zi,j,n,mTrH   zA,x,yr   r+  r   Fry   r,  aa  subroutine matrix_vector(A, m, n, x, y)
implicit none
INTEGER*4, intent(in) :: m
INTEGER*4, intent(in) :: n
REAL*8, intent(in), dimension(1:m, 1:n) :: A
REAL*8, intent(in), dimension(1:n) :: x
REAL*8, intent(inout), dimension(1:m) :: y
INTEGER*4 :: i
INTEGER*4 :: j
do i = 1, m
   do j = 1, n
      y(i) = %(rhs)s + y(i)
   end do
end do
end subroutine
r   r5  r6  rw   a  interface
subroutine matrix_vector(A, m, n, x, y)
implicit none
INTEGER*4, intent(in) :: m
INTEGER*4, intent(in) :: n
REAL*8, intent(in), dimension(1:m, 1:n) :: A
REAL*8, intent(in), dimension(1:n) :: x
REAL*8, intent(inout), dimension(1:m) :: y
end subroutine
end interface
r   )rC   rD   r   rJ   r   r   rG   rE   r0   r5   r   r   r   r   ri   r'   r'   r(   test_loops_InOut  s&   r;  c                  C   s  ddl m} m} ddlm} |ddd\}}}}| d||fd}| d	}| d
}	|d||d f}
|d|}tdt|	|
 ||
|f ||  fddddd\\}}\}}ddt|d td| t|d | d }||ddi ks}||ddi ksJ d S d S )Nr   rB   r   r   TrH   rE   r   r0   r5   rJ   r   r   r   r+  r   Fry   a  subroutine matrix_vector(A, m, n, o, p, x, y)
implicit none
INTEGER*4, intent(in) :: m
INTEGER*4, intent(in) :: n
INTEGER*4, intent(in) :: o
INTEGER*4, intent(in) :: p
REAL*8, intent(in), dimension(1:m, 1:p) :: A
REAL*8, intent(in), dimension(1:n) :: x
REAL*8, intent(out), dimension(1:%(iup-ilow)s) :: y
INTEGER*4 :: i
INTEGER*4 :: j
do i = %(ilow)s, %(iup)s
   y(i) = 0
end do
do i = %(ilow)s, %(iup)s
   do j = 1, n
      y(i) = %(rhs)s + y(i)
   end do
end do
end subroutine
r   r   rK   )r   iupilowziup-ilowr   r5  r6  )rO   rC   rD   r   r   r   r   strr   r'   r'   r(   test_partial_loops_f  s,   
(

r?  c            	      C   s   ddl m}  ddlm}m} td\}}}td| |||||g}t }|j|gdddd}|d d d	ks:J |d d
 dksDJ d S )Nr   r	   r   rd   r   r+   Fry   ztest.f90rK   z~REAL*8 function foo(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(out) :: y
y = sin(x)
foo = cos(x)
end function
)	r   r
   r   r   r   r   r   r   r   )	r
   r   r   r0   r5   r1   rR   r   r{   r'   r'   r(   test_output_arg_f  s   
r@  c                  C   s   ddl m} m} ddlm} |ddd\}}t| d\}}}|d|}t }	td	t|||d
  }
t	dt
|| |
|| }t|	j|g}d}d}||| ks^|||d d d  ks`J d S d S )Nr   rB   r   r   TrH   r4  rJ   funcrK   test_inlinezsubroutine test_inline(m, x, y)
implicit none
INTEGER*4, intent(in) :: m
REAL*8, intent(in), dimension(1:m) :: x
REAL*8, intent(out), dimension(1:m) :: y
INTEGER*4 :: i
do i = 1, m
   y(i) = %s*%s
end do
end subroutine
)zx(i)z
(x(i) + 1)r   )rO   rC   rD   r   r   rP   r   r   r   r   r   r)   r  )rC   rD   r   r   rG   rE   r0   r5   rJ   r   rA  rh   r   ri   argsr'   r'   r(   test_inline_function  s    
rD  c                  C   sP   t d} d}| D ]}||7 }qtd|}t }t|j|g}d}||ks&J d S )Nzx:20r   r+   a  REAL*8 function test(x0, x1, x10, x11, x12, x13, x14, x15, x16, x17, x18, &
      x19, x2, x3, x4, x5, x6, x7, x8, x9)
implicit none
REAL*8, intent(in) :: x0
REAL*8, intent(in) :: x1
REAL*8, intent(in) :: x10
REAL*8, intent(in) :: x11
REAL*8, intent(in) :: x12
REAL*8, intent(in) :: x13
REAL*8, intent(in) :: x14
REAL*8, intent(in) :: x15
REAL*8, intent(in) :: x16
REAL*8, intent(in) :: x17
REAL*8, intent(in) :: x18
REAL*8, intent(in) :: x19
REAL*8, intent(in) :: x2
REAL*8, intent(in) :: x3
REAL*8, intent(in) :: x4
REAL*8, intent(in) :: x5
REAL*8, intent(in) :: x6
REAL*8, intent(in) :: x7
REAL*8, intent(in) :: x8
REAL*8, intent(in) :: x9
test = x0 + x1 + x10 + x11 + x12 + x13 + x14 + x15 + x16 + x17 + x18 + &
      x19 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9
end function
r#  )r0   r/   symrh   rX   r&   ri   r'   r'   r(   test_f_code_call_signature_wrap   s   

rF  c                      s$   t d\ tt fdd d S )Nzx,Xc                      s   t d  fddS )Nr+   f95r"   )r   r'   r  r0   r'   r(   r2   J  rA   z!test_check_case.<locals>.<lambda>)r   r   r   r'   r'   rH  r(   test_check_caseH  s   rI  c               
   C   sn   t d} t ddd}ztd| | fdd W d S  ty6 } z|jd dr+td	W Y d }~d S d }~ww )
Nr0   T)my_assumptionr+   rG  r"   r   zFortran ignores case.z$This exception should not be raised!)r   r   r   rC  
startswithAssertionError)x1x2r  r'   r'   r(   test_check_case_false_positiveM  s   rO  c                  C   s  t d\} }dd|  fg}t|dddd}t|ddddd}|d d |d d ks,J d| | f}t|dddd}t|ddddd}|d d |d d ksQJ dt| |g| | | | ggf}t|d	ddd}t|d	dddd}|d d |d d ksJ d S )
Nr   r   rL   r+  Fry   r   rK   r   )r   r   r   )r0   r5   r   r{   	expresultr'   r'   r(    test_c_fortran_omit_routine_name[  s     rQ  c                  C   s   t d\} }}| | }t| |g|dgg}d||ff}t|ddddd}|d d }d	}| d
 }	|	d}
|
d }|d|i }||ksGJ d S )Nrd      r+   rG  Fry   r   rK   a2  REAL*8 function test(x, y, z, out_%(hash)s)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
REAL*8, intent(in) :: z
REAL*8, intent(out), dimension(1:2, 1:2) :: out_%(hash)s
out_%(hash)s(1, 1) = x
out_%(hash)s(2, 1) = z
out_%(hash)s(1, 2) = y
out_%(hash)s(2, 2) = 16
test = x + y
end function
r   _hash)r   r   r   
splitlinessplit)r0   r5   r1   e1e2r   r{   r&   ri   r4   r   r   r'   r'   r(   test_fcode_matrix_outputm  s   
rY  c                  C   s   t d\} }}t d\}}tddd}t|tdd| gg}t|| | | }t|d|  }d|||gf}	t|	ddd	d	| |||||fd
}
|
d d }d}||ksSJ d S )Nrd   r  rE   rK   rM   rL   r+   rG  Fr  r   a!  subroutine test(x, z, y, C, A, B)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: z
REAL*8, intent(in) :: y
REAL*8, intent(out) :: C
REAL*8, intent(out) :: B
REAL*8, intent(out), dimension(1:1, 1:3) :: A
C = z*(x + y)
A(1, 1) = 1
A(1, 2) = 2
A(1, 3) = x
B = 2*x
end subroutine
r	  )r0   r5   r1   rF   rx   rE   r   r   r
  r   r{   r&   ri   r'   r'   r(    test_fcode_results_named_ordered  s   rZ  c                  C   s   t ddd} t ddd}t ddd}t ddd}dt|| d	d d f t|| dd d f t|| d d df gf}t|d
dddd}|d	 d }d}||ksQJ d S )NrE   rL   rM   rF   rK   rx   r  r+   r   rG  Fry   a  subroutine test(A, B, C, D)
implicit none
REAL*8, intent(in), dimension(1:2, 1:3) :: A
REAL*8, intent(out), dimension(1:1, 1:3) :: B
REAL*8, intent(out), dimension(1:1, 1:3) :: C
REAL*8, intent(out), dimension(1:2, 1:1) :: D
B(1, 1) = A(1, 1)
B(1, 2) = A(1, 2)
B(1, 3) = A(1, 3)
C(1, 1) = A(2, 1)
C(1, 2) = A(2, 2)
C(1, 3) = A(2, 3)
D(1, 1) = A(1, 3)
D(2, 1) = A(2, 3)
end subroutine
r  r  r'   r'   r(   test_fcode_matrixsymbol_slice  r  r[  c                  C   s|   t ddd} d| d d df f}t|ddddd}|d	 d }d
}| d }|d}|d }|d|i }||ks<J d S )NrE   rL   rM   r+   rK   rG  Fry   r   zsubroutine test(A, out_%(hash)s)
implicit none
REAL*8, intent(in), dimension(1:2, 1:3) :: A
REAL*8, intent(out), dimension(1:2, 1:1) :: out_%(hash)s
out_%(hash)s(1, 1) = A(1, 2)
out_%(hash)s(2, 1) = A(2, 2)
end subroutine
rS  rT  )r   r   rU  rV  )rE   r   r{   r&   ri   r4   r   r   r'   r'   r(   &test_fcode_matrixsymbol_slice_autoname  s   

r\  c                  C   s   t d\} }}}td| | fddd|fd}|d d }d}||ks$J d	}td| | | fd
dd||fd}|d d }||ksCJ d S )Nzx y z tfr+  F)r#   r$   global_varsr   rK   zPREAL*8 function f(x)
implicit none
REAL*8, intent(in) :: x
f = x*y
end function
z#include "f.h"
#include <math.h>
double f(double x, double y) {
   double f_result;
   f_result = x*y + z;
   return f_result;
}
rx   rz   )r0   r5   r1   tr{   r&   ri   r'   r'   r(   test_global_vars  s   	r`  c            
      C   s   ddl m}  ddlm} | dddiid}td\}}||| }t|d	gd
}d}td|fdd|d}|d d }	|	|ks@J t|d}|jd	 d}td|fdd|d}|d d }	|	|kscJ d S )Nr   C99CodePrinter)expuser_functionsrc  fastexp)settingszx yz#include "fastexp.h")printerpreprocessor_statementsz#include "expr.h"
#include "fastexp.h"
double expr(double x, double y) {
   double expr_result;
   expr_result = fastexp(x + y);
   return expr_result;
}
r/   F)r#   r$   rX   rK   )rg  z#include "expr.h"
#include <math.h>
#include "fastexp.h"
double expr(double x, double y) {
   double expr_result;
   expr_result = fastexp(x + y);
   return expr_result;
}
)	sympy.printing.crb  r   rc  r   r   r   rh  append)
rb  rc  rg  r0   r5   r/   genri   r{   r&   r'   r'   r(   test_custom_codegen  s(   

rl  c                  C   s^   ddl m}  G dd d| }td}|d }ddg}td	|fd
ddd| d}||ks-J d S )Nr   ra  c                   @   s   e Zd Zdd ZdS )z*test_c_with_printer.<locals>.CustomPrinterc                 S   s   d | |j| |jS )Nzfastpow({}, {}))format_printbaserc  )selfr/   r'   r'   r(   
_print_Pow+  s   
z5test_c_with_printer.<locals>.CustomPrinter._print_PowN)__name__
__module____qualname__rq  r'   r'   r'   r(   CustomPrinter*  s    ru  r0   rM   )rv   z#include "file.h"
#include <math.h>
double test(double x) {
   double test_result;
   test_result = fastpow(x, 3);
   return test_result;
}
)rw   zP#ifndef PROJECT__FILE__H
#define PROJECT__FILE__H
double test(double x);
#endif
r+   rx   r   F)r#   r$   rg  )ri  rb  r   r   )rb  ru  r0   r/   ri   r{   r'   r'   r(   test_c_with_printer'  s   rv  c                  C   s   dd l } d| jj_tddd}tddd}td|| fddddd	}|d d
 }d}||ks0J td}tddd}td|| fddddd	}|d d
 }d}||ksUJ d| jj_d S )Nr   Tr0   )realr5   r+   rG  Fry   rK   zsREAL*8 function test(x, y)
implicit none
REAL*8, intent(in) :: x
REAL*8, intent(in) :: y
test = x + y
end function
z{COMPLEX*16 function test(x, y)
implicit none
COMPLEX*16, intent(in) :: x
REAL*8, intent(in) :: y
test = x + y
end function
)sympy.utilities.codegen	utilitiesr   COMPLEX_ALLOWEDr   )sympyr0   r5   r{   r&   ri   r'   r'   r(   test_fcode_complexD  s"   
r|  N)r   FF)_ior   
sympy.corer   r   r   r   r   r   r   r
   r   r   'sympy.functions.special.error_functionsr   sympy.integrals.integralsr   sympy.matricesr   r   rx  r   r   r   r   r   r   r   r   r   r   r   sympy.testing.pytestr   sympy.utilities.lambdifyr   r)   rS   rY   r_   rb   rj   rl   rp   rr   ru   r|   r   r   r   r   r   r   r   r   r   r   r  r  r  r  r  r  r  r   r!  r$  r%  r'  r(  r*  r-  r.  r/  r1  r2  r3  r7  r:  r;  r?  r@  rD  rF  rI  rO  rQ  rY  rZ  r[  r\  r`  rl  rv  r|  r'   r'   r'   r(   <module>   s     4
<D*, 3.>31/(.