From 71c7c7a76a9d1c885270c9572d0b1f5955d1aee8 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 15 Mar 2004 23:31:12 +0000 Subject: [PATCH] Fix order of arguments. git-svn-id: https://svn.dealii.org/trunk@8757 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/metis_01.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bits/metis_01.cc b/tests/bits/metis_01.cc index 24f4ca1f3d..f115a7fe1b 100644 --- a/tests/bits/metis_01.cc +++ b/tests/bits/metis_01.cc @@ -44,7 +44,7 @@ void test () // more than 8 subdomains) rather than the // recursive one deallog << "K-WAY" << std::endl; - GridTools::partition_triangulation (triangulation, 9); + GridTools::partition_triangulation (9, triangulation); for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell) -- 2.39.5