[sage-devel] Re: latex function and operations with fraction subscripts

2022-07-09 Thread 'Markk' via sage-devel
Thanks, that does work. After (re-)implementing it I remembered why I didn't use latex_name--it doesn't seem to pickle: sage: logr = SR.symbol('logr', domain='complex', latex_name=r'L_{x/x_0}') : latex(logr) L_{x/x_0} sage: import pickle : path_name = '/home/mark/' : pickle_file_name

Re: [sage-devel] Adding a C or C++ Code to The SageMath

2022-07-09 Thread Vincent Delecroix
Autotools is convenient but definitely not mandatory. cmake does a similar job. Some projects (eg flint, PARI/GP) have a home made build system that works fine. What is required is: * a configuration step that let us specify the build directory, install directory, compilers, static versus dynamic

Re: [sage-devel] Adding a C or C++ Code to The SageMath

2022-07-09 Thread friedri...@gmail.com
Hi all, I just stumbled across this thread :) and am curious, what the best way would be to add ESPRESSO to sage. Judging the package type for ESPRESSO from the sage packaging doc referenced by Matthias, I'd say its definitly not a pip package ;) however I'm not sure I understand the difference