TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
sygv.hpp
#include "./interface/cxx_interface.hpp"
#include "../basic_array.hpp"
#include "../basic_functions.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../traits.hpp"
#include <cmath>
#include <concepts>

Detailed Description

Provides a generic interface to the LAPACK sygv routine.

Definition in file sygv.hpp.

Go to the source code of this file.

Functions

template<MemoryMatrix A, MemoryMatrix B, MemoryVector W>
requires (mem::have_host_compatible_addr_space<A, B> and std::same_as<double, get_value_t<A>> and have_same_value_type_v<A, B, W>)
int nda::lapack::sygv (A &&a, B &&b, W &&w, char jobz='V', int itype=1)
 Interface to the LAPACK sygv routine.