Skip to content
Snippets Groups Projects
Commit 38135b58 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

[SIMD] Switch precoditioners.hh to the new interface.

parent 5110a839
No related branches found
No related tags found
1 merge request!142Port ISTL to the new SIMD interface
......@@ -10,7 +10,7 @@
#include <memory>
#include <string>
#include <dune/common/simd.hh>
#include <dune/common/simd/simd.hh>
#include <dune/common/unused.hh>
#include "preconditioner.hh"
......@@ -78,7 +78,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename range_type::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
//! \brief type of the wrapped inverse operator
typedef O InverseOperator;
......@@ -144,7 +144,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -234,7 +234,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -339,7 +339,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -425,7 +425,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -517,7 +517,7 @@ namespace Dune {
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
//! \brief type of ILU storage
typedef typename ILU::CRS< block_type > CRS;
......@@ -661,7 +661,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -748,7 +748,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -832,7 +832,7 @@ namespace Dune {
//! \brief The field type of the preconditioner.
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/*! \brief Constructor.
......@@ -914,7 +914,7 @@ namespace Dune {
/** \brief field type of the preconditioner **/
typedef typename X::field_type field_type;
//! \brief scalar type underlying the field_type
typedef SimdScalar<field_type> scalar_field_type;
typedef Simd::Scalar<field_type> scalar_field_type;
/**
* \brief constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment