Skip to content
Snippets Groups Projects
Commit 89a10084 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove deprecated constructors

parent 4cf6dd37
No related branches found
No related tags found
1 merge request!6Feature/crs
...@@ -54,20 +54,6 @@ class ConnectivityMatrix ...@@ -54,20 +54,6 @@ class ConnectivityMatrix
; ;
} }
KOKKOS_INLINE_FUNCTION
ConnectivityMatrix(const ConnectivityMatrix& connecticity_matrix,std::vector<std::vector<unsigned int>>& initializer)
: m_host_matrix(Kokkos::create_staticcrsgraph<HostMatrix>("connecticity_matrix", initializer))
{
;
}
[[deprecated("Must only define connectivities so that only unsigned int should be treated")]]
ConnectivityMatrix(const std::vector<std::vector<unsigned short>>& initializer)
: m_host_matrix(Kokkos::create_staticcrsgraph<HostMatrix>("connecticity_matrix", initializer))
{
;
}
ConnectivityMatrix& operator=(const ConnectivityMatrix&) = default; ConnectivityMatrix& operator=(const ConnectivityMatrix&) = default;
ConnectivityMatrix& operator=(ConnectivityMatrix&&) = default; ConnectivityMatrix& operator=(ConnectivityMatrix&&) = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment