-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src directory #6
Comments
I think moving the code under a "src" directory is already done by @zikun-li in #2. Actually, all .cpp code outside this directory are deprecated after this PR and can be safely deleted. However, the Python code is not refactored in the PR. I think one way to do the refactoring is to put them into |
We are looking over the code with Mingkuan now. Couple of observations
|
Got it. For 1 and 2, I'll delete the deprecated files, and organize all the .h and .cpp files into the |
Except for |
That's right, I gonna move these files. |
I see there is a |
Oh maybe we should not move that. |
@xumingkuan there is a |
No, verify_equivalences.py should be count as source code and it actually provides an API for C++ code to invoke as |
Then I'll put it into |
Ok sounds good. |
I would recommend moving the code under a "src" directory
The top level would have things like
Without a separate an "src" directory, it is difficult to do a number of things, for example, visually separating varioun configuration/infra matters from actual code. It is also difficult to search the source code because for example the virtual env code will get mixed in, which makes search (e.g.,
grep -r
) effectively unusable (BAD).The text was updated successfully, but these errors were encountered: