You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2023. It is now read-only.
Merge branch 'develop' into t/16719/replace_gap_eval_with_libgap_eval_in_combinat_combinat_py
* develop: (52 commits)
Updated Sage version to 6.3.rc0
Reverted change of using format instead of %.
Last minor tweak.
Some tweaks fixing things from #2516.
trac #16709: Broken doc
Do not add /usr/local/{lib,include} to paths
remove stray without-flint
trac #15181: Reviewer's remarks
fixed typos in dostrings
Stupid typo...
Some more review tweaks and fixes.
trac #16738 removing tests again
trac #16738 better choice of what to test in reasonable amount of time
trac #15191 change bad syntax of 2 input blocks
added a non-generic examples, and some minor changes
trac #16741: Bug in IncidenceStructure.relabel when the ground set consists of pairs
trac 16XXX shortening some cluster doctests
trac #16732: make _maxima_init_evaled_ implementations and some bracket translations more robust The changes here make sure that a few _maxima_init_evaled_ routines process their arguments with _maxima_init_ rather than just make strings out of them, as well as fix the maxima_string_to_expression parser to properly handle possible nested square brackets.
Micro-optimizations to the *_generators.
Fixed trivial failing doctests.
...
s=s.replace("#","!=") # a lot of this code should be refactored somewhere...
1888
-
1889
-
s=polylog_ex.sub('polylog(\\1,', s)
1890
-
s=maxima_polygamma.sub('psi(\g<1>,', s) # this replaces psi[n](foo) with psi(n,foo), ensuring that derivatives of the digamma function are parsed properly below
1888
+
#we apply the square-bracket replacing patterns repeatedly
1889
+
#to ensure that nested brackets get handled (from inside to out)
1890
+
whileTrue:
1891
+
olds=s
1892
+
s=polylog_ex.sub('polylog(\\1,', s)
1893
+
s=maxima_polygamma.sub('psi(\g<1>,', s) # this replaces psi[n](foo) with psi(n,foo), ensuring that derivatives of the digamma function are parsed properly below
0 commit comments