Minimum, messy code

This commit is contained in:
2023-12-17 13:33:06 +01:00
parent cc6a6e4a9e
commit 54de6d68b1
9 changed files with 427 additions and 12 deletions

View File

@@ -117,10 +117,10 @@ std::string dirname(const std::string &path);
/** @brief Take 2 strings and concatenate them and make sure there is a
* directory separator (/) between them.
*
* @details This function doesn't care whether or not the values given as
* parameters are valid path strings. It is the responsibility of the user to make
* sure that the values given are valid path strings.
* The function only guarantees that the output string is a valid path string.
* @details This function doesn't care whether or not the values given as
* parameters are valid path strings. It is the responsibility of the user to
* make sure that the values given are valid path strings. The function only
* guarantees that the output string is a valid path string.
*
* @param left The left hand side of the result string
* @param right The right hand side of the result string
@@ -129,6 +129,8 @@ std::string dirname(const std::string &path);
* */
std::string concatpath(const std::string &left, const std::string &right);
// A function that prints the structure of a sparse matrix to screen.
void print_sp_matrix_structure(const arma::sp_cx_mat &A);
} // namespace utils
#endif