From 1e950806a841ddacbbc6b599161d10a1d469a6b7 Mon Sep 17 00:00:00 2001 From: Joscha Gedicke Date: Sat, 16 Apr 2016 20:04:40 +0200 Subject: [PATCH] fix call of assemble_up in MGMatrixSimple --- include/deal.II/meshworker/simple.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/meshworker/simple.h b/include/deal.II/meshworker/simple.h index 431106b0b1..2106aad965 100644 --- a/include/deal.II/meshworker/simple.h +++ b/include/deal.II/meshworker/simple.h @@ -1071,7 +1071,7 @@ namespace MeshWorker assemble((*matrix)[level1], info1.matrix(k,false).matrix, info1.indices_by_block[row], info1.indices_by_block[column], level1); if (level1>0) { - assemble_up((*flux_up)[level1],info1.matrix(k,true).matrix, info2.indices_by_block[row], info1.indices_by_block[column], level1); + assemble_up((*flux_up)[level1],info1.matrix(k,true).matrix, info2.indices_by_block[column], info1.indices_by_block[row], level1); assemble_down((*flux_down)[level1], info2.matrix(k,true).matrix, info2.indices_by_block[row], info1.indices_by_block[column], level1); } } -- 2.39.5