Skip to content

Commit 21ae715

Browse files
committed
Merged in NEB_outputCleanup (pull request #682)
Changing "Path Length:" to "Max Path Length:" in NEB Approved-by: Phani Motamarri
2 parents e5247f1 + eb35b88 commit 21ae715

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

include/KohnShamDFTBaseOperator.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ namespace dftfe
179179
const double scalarY,
180180
const double scalarX,
181181
dftfe::linearAlgebra::MultiVector<dataTypes::number, memorySpace> &dst,
182-
const bool onlyHPrimePartForFirstOrderDensityMatResponse = false);
182+
const bool onlyHPrimePartForFirstOrderDensityMatResponse =
183+
false) override;
183184

184185
/**
185186
* @brief Computing Y = scalarHX*HX + scalarX*X + scalarY*Y for a given X and Y in full precision
@@ -199,7 +200,8 @@ namespace dftfe
199200
const double scalarX,
200201
dftfe::linearAlgebra::MultiVector<dataTypes::numberFP32, memorySpace>
201202
&dst,
202-
const bool onlyHPrimePartForFirstOrderDensityMatResponse = false);
203+
const bool onlyHPrimePartForFirstOrderDensityMatResponse =
204+
false) override;
203205
/**
204206
* @brief Computing Y = scalarHX*M^{1/2}HM^{1/2}X + scalarX*X + scalarY*Y for a given X and Y in full precision. Used for TD-DFT and Inverse DFT calc.
205207
*

src/neb/nudgedElasticBandClass.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ namespace dftfe
820820
if (!d_dftPtr->getParametersObject().reproducible_output)
821821
{
822822
pcout << std::endl
823-
<< "--Path Length: " << Length << " Bohr" << std::endl;
823+
<< "--Max Path Length: " << Length << " Bohr" << std::endl;
824824
pcout << "----------------------------------------------"
825825
<< std::endl;
826826
}
@@ -927,7 +927,7 @@ namespace dftfe
927927
if (!d_dftPtr->getParametersObject().reproducible_output)
928928
{
929929
pcout << std::endl
930-
<< "--Path Length: " << Length << " Bohr" << std::endl;
930+
<< "--Max Path Length: " << Length << " Bohr" << std::endl;
931931
pcout << "----------------------------------------------"
932932
<< std::endl;
933933
}
@@ -1057,7 +1057,7 @@ namespace dftfe
10571057
if (!d_dftPtr->getParametersObject().reproducible_output)
10581058
{
10591059
pcout << std::endl
1060-
<< "--Path Length: " << Length << " Bohr" << std::endl;
1060+
<< "--Max Path Length: " << Length << " Bohr" << std::endl;
10611061
pcout << "----------------------------------------------" << std::endl;
10621062
}
10631063
dftfe::Int FlagTotal = std::accumulate(Flag.begin(), Flag.end(), 0);
@@ -1608,7 +1608,7 @@ namespace dftfe
16081608
double Length = 0.0;
16091609
Length = CalculatePathLength(false);
16101610
pcout << std::endl
1611-
<< "--Path Length: " << Length << " Bohr" << std::endl;
1611+
<< "--Max Path Length: " << Length << " Bohr" << std::endl;
16121612
step_time = MPI_Wtime() - step_time;
16131613
pcout << "Time taken for initial dft solve of all images: " << step_time
16141614
<< std::endl;

0 commit comments

Comments
 (0)