aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_debug.h
blob: e0a7482b849ca36920fd87114ba63c4a11e57a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @file gensvm_debug.h
 * @author Gertjan van den Burg
 * @date May, 2016
 * @brief Header file for gensvm_debug.c
 *
 * @details
 * Contains defines useful for debugging.
 *
 */

#ifndef GENSVM_DEBUG_H
#define GENSVM_DEBUG_H

#include "gensvm_print.h"
#include "gensvm_sparse.h"

void gensvm_print_matrix(double *M, long rows, long cols);
void gensvm_print_sparse(struct GenSparse *A);

#endif