Skip to content

Commit

Permalink
pair_schnetpack.cpp: streamline variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-sc01 authored Nov 5, 2024
1 parent f78ed37 commit bf4e1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interfaces/lammps/pair_schnetpack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ void PairSCHNETPACK::compute(int eflag, int vflag){
if(debug_mode){
std::cout << "SchNetPack model input:\n";
std::cout << "_positions:\n" << positions_tensor << "\n";
std::cout << "_idx_i:\n" << edges_tensor[0] << "\n";
std::cout << "_idx_j:\n" << edges_tensor[1] << "\n";
std::cout << "_idx_i:\n" << idx_i_tensor << "\n";
std::cout << "_idx_j:\n" << idx_j_tensor << "\n";
std::cout << "_idx_m:\n" << idx_m_tensor << "\n";
std::cout << "_offsets:\n" << offsets_tensor << "\n";
std::cout << "_cell:\n" << cell_tensor << "\n";
Expand Down

0 comments on commit bf4e1a5

Please sign in to comment.