Opm::cuistl::detail::has_should_call_post< T > Class Template Reference

The has_should_call_post class detects the presence of the method shouldCallPost. More...

#include <has_function.hpp>

Static Public Attributes

static constexpr bool value = std::is_same_v<decltype(test<T>(0)), std::true_type>
 

Detailed Description

template<typename T>
class Opm::cuistl::detail::has_should_call_post< T >

The has_should_call_post class detects the presence of the method shouldCallPost.

Usage:

if constexpr (has_should_call_post<decltype(preconditioner)>::value) {
// We know that the function shouldCallPost is present:
auto shouldCallPost = preconditioner.shouldCallPost();
}
The has_should_call_post class detects the presence of the method shouldCallPost.
Definition: has_function.hpp:77
static constexpr bool value
Definition: has_function.hpp:84
Note
This is mainly done in the GPU preconditioner to avoid having to copy data in the post step.

Member Data Documentation

◆ value

template<typename T >
constexpr bool Opm::cuistl::detail::has_should_call_post< T >::value = std::is_same_v<decltype(test<T>(0)), std::true_type>
staticconstexpr

The documentation for this class was generated from the following file: