mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-12 22:20:35 +05:00
default simd ctr
This commit is contained in:
parent
59bc017c40
commit
0a9adc91e9
@ -168,13 +168,19 @@ namespace netgen
|
||||
SIMD () = default;
|
||||
SIMD (const SIMD &) = default;
|
||||
SIMD & operator= (const SIMD &) = default;
|
||||
|
||||
|
||||
SIMD (double val)
|
||||
: data(val) { ; }
|
||||
|
||||
/*
|
||||
template <typename T>
|
||||
SIMD (const T & val)
|
||||
{
|
||||
// SIMD_function(val, std::is_convertible<T, std::function<double(int)>>());
|
||||
SIMD_function(val, has_call_operator<T>::value);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
template <typename T>
|
||||
SIMD & operator= (const T & val)
|
||||
|
Loading…
Reference in New Issue
Block a user