NESSi  v1.0.2
The NonEquilibrium Systems Simulation Library

◆ distance_norm2_ret() [8/9]

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

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

Purpose

Evaluate the Euclidean norm between the retarded components of a herm_matrix_timestep_view \(g_1\) and a herm_matrix_timestep ( \(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_view

g2

herm_matrix_timestep

Definition at line 983 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().

983  {
984  assert(g1.size1() == g2.size1());
985  assert(g1.ntau() == g2.ntau());
986  assert(g1.tstp() == tstp);
987  assert(g2.tstp() == tstp);
988  herm_matrix_timestep_view<T> g2_view(tstp, g2);
989  if (g1.size1() == 1)
990  return distance_norm2_ret_dispatch<T, 1>(tstp, g1, g2_view);
991  else
992  return distance_norm2_ret_dispatch<T, LARGESIZE>(tstp, g1, g2_view);
993 }
+ Here is the call graph for this function: