diff src/PETSc_factory.h @ 256:8fe68d94ab76

Add parallel assembly of matrices and vectors
author Eugenio Gianniti <eugenio.gianniti@mail.polimi.it>
date Wed, 30 Jul 2014 20:59:37 +0200
parents b1dc98050634
children 61830a4f9ab9
line wrap: on
line diff
--- a/src/PETSc_factory.h	Wed Jul 30 18:09:13 2014 +0200
+++ b/src/PETSc_factory.h	Wed Jul 30 20:59:37 2014 +0200
@@ -43,6 +43,11 @@
                              std::vector <std::size_t> const&,
                              std::vector <std::size_t> const&,
                              std::vector <double> const&);
+
+  octave_value do_matrix_serial (dolfin::Matrix const&) const;
+  octave_value do_matrix_parallel (dolfin::Matrix const&) const;
+  octave_value do_vector_serial (dolfin::Vector const&) const;
+  octave_value do_vector_parallel (dolfin::Vector const&) const;
 };
 
-#endif
\ No newline at end of file
+#endif