NESSi  v1.0.2
The NonEquilibrium Systems Simulation Library

◆ distance_norm2_ret() [7/9]

template<typename T >
T cntr::distance_norm2_ret ( int  tstp,
herm_matrix_timestep< T > &  g1,
herm_matrix_timestep_view< T > &  g2 
)

Evaluate the Euclidean norm between the retarded components a herm_matrix_timestep and herm_matrix_timestep_view at a given time step.

Purpose

Evaluate the Euclidean norm between the retarded components of a herm_matrix_timestep \(g_1\) and a herm_matrix_timestep_view ( \(g_2\)) at a given time step (tstp). The norm is not normalized per elements, but it is the summention of all the elements.

Parameters
tstp

time step

g1

herm_matrix_timestep

g2

herm_matrix_timestep_view

Definition at line 952 of file cntr_utilities_impl.hpp.

References cntr::herm_matrix_timestep_view< T >::ntau(), cntr::herm_matrix_timestep< T >::ntau(), cntr::herm_matrix_timestep_view< T >::size1(), cntr::herm_matrix_timestep< T >::size1(), cntr::herm_matrix_timestep_view< T >::tstp(), and cntr::herm_matrix_timestep< T >::tstp().

952  {
953  assert(g1.size1() == g2.size1());
954  assert(g1.ntau() == g2.ntau());
955  assert(g1.tstp() == tstp);
956  assert(g2.tstp() == tstp);
957  herm_matrix_timestep_view<T> g1_view(tstp, g1);
958  if (g1.size1() == 1)
959  return distance_norm2_ret_dispatch<T, 1>(tstp, g1_view, g2);
960  else
961  return distance_norm2_ret_dispatch<T, LARGESIZE>(tstp, g1_view, g2);
962 }
+ Here is the call graph for this function: