Jie Li

Results 10 comments of Jie Li

The command errored out since it failed to install `markupsafe==1.0`. You could reinstall `markupsafe` successfully by commands as following ``` shell pipenv install pip=9.0.1 pipenv install setuptools==45.2.0 ``` Then `pipenv`...

Code format & remove import done. cc: @fAndreuzzi @mtezzele

> Hi @jieli-matrix, could you please update us on this PR? Sorry for late response! I will update this PR in this week. cc: @mtezzele

I have fixed the trailing occurrences in the code and planned to add tests for stls first in the next round. cc: @fandreuz @mtezzele

Sorry for update. I will add all tests in this week. I read the tests of edmd and hodmd since hoedmd was a combination of the two methods. It seems...

LGTM, maybe you can use squash to make your commit clear. A clear, readable commit log also helps the developers and users to understand new features. And this doc may...

As we know, memory usage involves several cases: 1. Stack Memory - Used to store local variables, function parameters, and return addresses within functions. - Stack memory is **automatically** allocated...

I suggest to overload new and delete operators to record memory usage. Reference: https://www.cprogramming.com/tutorial/operator_new.html cc: @dyzheng @Religious-J

> I don't think so, the first reason is the new and delete would be called many times, the record memory operators would lead to poor performance; the second reason...