summaryrefslogtreecommitdiff
path: root/include/phat/helpers
diff options
context:
space:
mode:
authorjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-04-23 09:46:54 +0000
committerjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-04-23 09:46:54 +0000
commit3cf63b2f122f1fd9a967ee9dc7a21436f4a94077 (patch)
tree564b36ccc0f2a4bdf64f9843313d94da4b5bce95 /include/phat/helpers
parent6119cf9deec63c756a4d022655e46df319d42c92 (diff)
new vector<vector> interface for boundary_matrix
git-svn-id: https://phat.googlecode.com/svn/trunk@38 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d
Diffstat (limited to 'include/phat/helpers')
-rw-r--r--include/phat/helpers/dualize.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/phat/helpers/dualize.h b/include/phat/helpers/dualize.h
index 15f7c57..752103d 100644
--- a/include/phat/helpers/dualize.h
+++ b/include/phat/helpers/dualize.h
@@ -46,6 +46,6 @@ namespace phat {
for( index cur_col = 0; cur_col < nr_of_columns; cur_col++ )
std::reverse( dual_matrix[ cur_col ].begin(), dual_matrix[ cur_col ].end() );
- boundary_matrix.init( dual_matrix, dual_dims );
+ boundary_matrix.load_vector_vector( dual_matrix, dual_dims );
}
}