Skip to content

Commit

Permalink
Fix to doxyfile, docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Jul 15, 2024
1 parent ba05ae4 commit 9bed220
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT = ../include/scran \
INPUT = ../include/scran_graph_cluster \
../README.md

# This tag can be used to specify the character encoding of the source files
Expand Down
9 changes: 9 additions & 0 deletions include/scran_graph_cluster/build_snn_graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,16 @@ struct BuildSnnGraphResults {
typedef igraph_integer_t DefaultNode;
typedef igraph_real_t DefaultWeight;
#else
/**
* Default type for the node indices.
* Set to `igraph_integer_t` if **igraph** is available.
*/
typedef int DefaultNode;

/**
* Default type for the edge weights.
* Set to `igraph_real_t` if **igraph** is available.
*/
typedef double DefaultWeight;
#endif

Expand Down

0 comments on commit 9bed220

Please sign in to comment.