Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 955 Bytes

modify_the_code.md

File metadata and controls

32 lines (24 loc) · 955 Bytes
id title type
modify_the_code
Code Modification
reference

Code Modification:

To modify the code, please follow these steps:

  • Submit a merge request to the develop branch.
  • For major changes, please discuss them in an issue beforehand.

To ensure the stability of the server, we have certain requirements for C++:

  • All code must be exception-safe.
  • Manual program exits are not allowed; exceptions should be thrown instead.

For complex modifications, please consider testing:

cd test
pip install -r requirements.txt 
pytest .

If necessary, please consider supplementing with Python tests.

:::note Code Formatting (optional) Please configure a formatting plugin to enable .clang-format. :::