Added function declarations.
authorSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 7 Oct 2008 17:48:45 +0000 (17:48 +0000)
committerSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 7 Oct 2008 17:48:45 +0000 (17:48 +0000)
[r22588]

matrix.h

index 90fe7ce..aa19ae1 100644 (file)
--- a/matrix.h
+++ b/matrix.h
@@ -20,6 +20,9 @@ void pbqp_matrix_set(pbqp_matrix *mat, unsigned row, unsigned col, num value);
 num pbqp_matrix_get_col_min(pbqp_matrix *matrix, unsigned col_index, vector *flags);
 num pbqp_matrix_get_row_min(pbqp_matrix *matrix, unsigned row_index, vector *flags);
 
+void pbqp_matrix_set_col_value(pbqp_matrix *mat, unsigned col, num value);
+void pbqp_matrix_set_row_value(pbqp_matrix *mat, unsigned row, num value);
+
 void pbqp_matrix_sub_col_value(pbqp_matrix *matrix, unsigned col_index,
                vector *flags, num value);
 void pbqp_matrix_sub_row_value(pbqp_matrix *matrix, unsigned row_index,