Skip to content

Commit

Permalink
Update docstring format
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Oct 29, 2024
1 parent 3acc4b3 commit 546a695
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/codegen/codegen_neuron_cpp_visitor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -784,17 +784,25 @@ class CodegenNeuronCppVisitor: public CodegenCppVisitor {
*/
void print_cvode_definitions();

/* print the CVODE function returning the # of ODEs to solve */
/**
* Print the CVODE function returning the # of ODEs to solve
*/
void print_cvode_count();

/* print the CVODE function for setup of tolerances */
/**
* Print the CVODE function for setup of tolerances
*/
void print_cvode_tolerances();

/* print the CVODE update function ``name`` from ``block`` */
/**
* Print the CVODE update function \c name from \c block
*/
void print_cvode_update(const std::string& name, const ast::StatementBlock& block);

/* print the CVODE setup function ``setup_name`` that calls the CVODE update function
* ``update_name`` */
/**
* Print the CVODE setup function \c setup_name that calls the CVODE update function
* \c update_name
*/
void print_cvode_setup(const std::string& setup_name, const std::string& update_name);


Expand Down

0 comments on commit 546a695

Please sign in to comment.