示例#1
0
 /// first Matsubara index
 int first_index() const {
     return -(_positive_only ? 0 : last_index() + (_dom.statistic == Fermion));
 }
示例#2
0
void sidebar_move_down(sidebar *sb) {
  if (sb->current_sidebar_index < last_index(sb)) {
    sb->current_sidebar_index++;
    print_wrapper(sb->wp);
  }
}