Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions source/module_basis/module_ao/parallel_orbitals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,6 @@ void Parallel_Orbitals::set_atomic_trace(const int* iat2iwt, const int &nat, con
this->atom_begin_col[nat] = this->ncol;
}

// Get the number of columns of the parallel orbital matrix
int Parallel_Orbitals::get_col_size()const
{
return this->ncol;
}
// Get the number of rows of the parallel orbital matrix
int Parallel_Orbitals::get_row_size()const
{
return this->nrow;
}
// Get the number of columns of the orbital matrix of the iat-th atom
int Parallel_Orbitals::get_col_size(int iat) const
{
Expand Down
4 changes: 2 additions & 2 deletions source/module_basis/module_ao/parallel_orbitals.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ class Parallel_Orbitals : public Parallel_2D
* get_col_size(iat) : number of columns of Hamiltonian matrix in atom iat
* get_row_size(iat) : number of rows of Hamiltonian matrix in atom iat
*/
int get_col_size()const;
int get_row_size()const;
int get_col_size()const { return this->ncol; };
int get_row_size()const { return this->nrow; };
int get_col_size(int iat) const;
int get_row_size(int iat) const;

Expand Down
Loading
Loading