~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/Sundance/src-solvers/LinearSolvers/TSFAmesosSolver.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#include "TSFEpetraVector.hpp"
3
3
#include "TSFEpetraMatrix.hpp"
4
4
 
 
5
 
 
6
 
 
7
#ifndef HAVE_TEUCHOS_EXPLICIT_INSTANTIATION
 
8
#include "TSFVectorImpl.hpp"
 
9
#include "TSFLinearOperatorImpl.hpp"
 
10
#include "TSFLinearSolverImpl.hpp"
 
11
#endif
 
12
 
5
13
#include "Amesos.h"
6
14
#include "Amesos_BaseSolver.h"
7
15
 
13
21
  : LinearSolverBase<double>(params),
14
22
    kernel_()
15
23
{
 
24
  setName("AmesosSolver");
16
25
  if (parameters().isParameter("Kernel"))
17
26
    {
18
27
      kernel_ = getParameter<string>(parameters(), "Kernel");