We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am looking at the auto-generated solver_core_desc.py from cthyb. Method solve() has a problem in its docstring.
solver_core_desc.py
solve()
+-------------------------------+------------------------------------------------+--------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Parameter Name | Type | Default | Documentation | +===============================+================================================+==================================================+=================================================================================================================================================================================+ | h_int | cthyb::many_body_op_t | | Interacting part of the atomic Hamiltonian\n type: Operator | +-------------------------------+------------------------------------------------+--------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | n_cycles | int | | Number of QMC cycles | +-------------------------------+------------------------------------------------+--------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | partition_method | std::string | "autopartition" | Partition method\n type: str | +-------------------------------+------------------------------------------------+--------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | quantum_numbers | std::vector<many_body_op_t> | std::vector<many_body_op_t>{} | Quantum numbers\n type: list(Operator)\n default: [] | +-------------------------------+------------------------------------------------+--------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Before it was
+------------------------+-------------------------------------+-------------------------------+--------------------------------------------------------------------------------------------------------+ | Parameter Name | Type | Default | Documentation | +========================+=====================================+===============================+========================================================================================================+ | h_int | Operator | | Interacting part of the atomic Hamiltonian | +------------------------+-------------------------------------+-------------------------------+--------------------------------------------------------------------------------------------------------+ | n_cycles | int | | Number of QMC cycles | +------------------------+-------------------------------------+-------------------------------+--------------------------------------------------------------------------------------------------------+ | partition_method | str | "autopartition" | Partition method | +------------------------+-------------------------------------+-------------------------------+--------------------------------------------------------------------------------------------------------+ | quantum_numbers | list(Operator) | [] | Quantum numbers | +------------------------+-------------------------------------+-------------------------------+--------------------------------------------------------------------------------------------------------+
As you can see, manually provided type and default fields are not extracted from the description anymore.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am looking at the auto-generated
solver_core_desc.py
from cthyb.Method
solve()
has a problem in its docstring.Before it was
As you can see, manually provided type and default fields are not extracted from the description anymore.
The text was updated successfully, but these errors were encountered: