Skip to content

Commit

Permalink
clang formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
camelto2 committed Oct 4, 2021
1 parent 806d493 commit 8e064a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/QMCTools/DiracParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ void DiracParser::getCOSCI(std::istream& is)
sortAndStoreCOSCIOrbs(OrbType::CORE, 3);
sortAndStoreCOSCIOrbs(OrbType::ACTIVE, 3);
sortAndStoreCOSCIOrbs(OrbType::VIRTUAL, 3);


//set occstrs for core and virtual
std::string core_occstr;
Expand Down Expand Up @@ -850,7 +850,6 @@ void DiracParser::getCOSCI(std::istream& is)
std::string tmp = core_occstr + currentWords[1] + virt_occstr;
ci_occs.push_back(tmp);
std::reverse(tmp.begin(), tmp.end());

}
}
//finished reading CI coeffs for state
Expand Down
5 changes: 3 additions & 2 deletions src/QMCWaveFunctions/tests/test_multi_slater_determinant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,9 +429,10 @@ void test_Bi_msd(const std::string& spo_xml_string,

//Reference values from QWalk with SOC

std::cout << "twf.evaluateLog logpsi " << std::setprecision(16) << twf.getLogPsi() << " " << twf.getPhase() << std::endl;
std::cout << "twf.evaluateLog logpsi " << std::setprecision(16) << twf.getLogPsi() << " " << twf.getPhase()
<< std::endl;
CHECK(std::complex<double>(twf.getLogPsi(), twf.getPhase()) ==
LogComplexApprox(std::complex<double>(-9.653087, 3.311467)));
LogComplexApprox(std::complex<double>(-9.653087, 3.311467)));

twf.prepareGroup(elec_, 0);
ParticleSet::ComplexType spingrad_old;
Expand Down

0 comments on commit 8e064a0

Please sign in to comment.