Skip to content

Commit

Permalink
fix compilation 4/4
Browse files Browse the repository at this point in the history
  • Loading branch information
npaster authored Mar 19, 2019
1 parent 1756fb2 commit 2bf872a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/bingham/bingham_vector_solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ADDM
typedef typename mesh_type::face face_type;
typedef typename mesh_type::point_type point_type;

typedef disk::mechanics::BoundaryConditions<mesh_type> boundary_type;
typedef disk::mechanics::BoundaryConditions<mesh_type, false> boundary_type;
typedef Matrix<T, Dynamic, Dynamic> matrix_type;
typedef Matrix<T, Dynamic, 1> vector_type;

Expand Down Expand Up @@ -175,9 +175,9 @@ class ADDM
{
auto gr = disk::make_hho_stokes(msh, cl, di, true);
auto G = disk::make_hlow_stokes(msh, cl, di, true);
matrix_type dr = make_hho_divergence_reconstruction_stokes_rhs(msh, cl, di);
matrix_type dr = make_hho_divergence_reconstruction_rhs(msh, cl, di);

matrix_type stab = make_hho_vector_stabilization(msh, cl, gr.first, di);
matrix_type stab = make_vector_hho_stabilization(msh, cl, gr.first, di);
matrix_type A = 2. * (vp.alpha * G.second + vp.mu * stab);

assembler.assemble_lhs(msh, cl, A, -dr);
Expand Down

0 comments on commit 2bf872a

Please sign in to comment.