Hi Manik, The most urgent issue in MatchPy for C++ is to support C++20's coroutines.
C++20 has introduced coroutines, which work approximately like Python's *yield* (i.e. the function returns a value without deallocating the function memory). MatchPy uses a lot of generators, MatchPyCpp instead is currently return arrays with the full list. This is computationally inefficient and is likely to stop the code completely. We need to port MatchPyCpp to C++20 and use generators instead of vector-returning functions. On Saturday, 21 March 2020 20:05:05 UTC+1, manik taneja wrote: > > Sir/Ma'am , > I am attaching a draft application for GSOC 2020 and resume along with > it . I'd love to have your feedback on the same. > -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/9e80acd9-f846-4584-b0c1-0bb1373608d9%40googlegroups.com.
