From 9ef7ea0965f2e991069dcf0829981d98a37a69c1 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 13 Jul 2015 09:07:35 -0400 Subject: [PATCH] update Trilinos docs --- doc/external-libs/trilinos.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/external-libs/trilinos.html b/doc/external-libs/trilinos.html index 70b9bfcc2f..c60d62b4b3 100644 --- a/doc/external-libs/trilinos.html +++ b/doc/external-libs/trilinos.html @@ -13,7 +13,7 @@

Interfacing deal.II to Trilinos

- Trilinos is a + Trilinos is a software package that provides lots of functionality for linear algebra, among other things. For example, it includes implementations of a variety of linear solvers, as well as various different sparse and dense matrix and @@ -50,21 +50,23 @@

Note: The current version of deal.II requires at least Trilinos 11.2. - Deal.II is known to work with Trilinos 11.12.1. Others versions of + Deal.II is known to work with Trilinos up to 11.14 and 12.0. Others versions of Trilinos should work too but we do not do regression tests with them.

Trilinos uses cmake to configure and build. The following slightly longish set of commands will set up a - reasonable configuration: + reasonable configuration (we require MueLu starting from 12.0):

 
-	cd trilinos-11.12.1
+	cd trilinos-12.0.1
 	mkdir build
 	cd build
 
-	cmake -D Trilinos_ENABLE_Sacado=ON \
+	cmake \
+	-D Trilinos_ENABLE_Sacado=ON \
+	-D Trilinos_ENABLE_MueLu:BOOL=ON \
 	-D Trilinos_ENABLE_Stratimikos=ON \
 	-D CMAKE_BUILD_TYPE=RELEASE \
 	-D CMAKE_CXX_FLAGS="-g -O3" \
-- 
2.39.5