Skip to content

Commit

Permalink
Merge pull request #39 from niclaurenti/change-name
Browse files Browse the repository at this point in the history
Rename abbdvss -> gm
  • Loading branch information
niclaurenti authored Mar 29, 2024
2 parents 1b57d55 + 61a68dd commit dad40aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MatchingCondition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ MatchingCondition::MatchingCondition(

// check version
if (version != "exact" && version != "abmp" && version != "klmv"
&& version != "abbdvss") {
cout << "Error: version must be 'exact', 'abmp', 'abbdvss' or "
&& version != "gm") {
cout << "Error: version must be 'exact', 'abmp', 'gm' or "
"'klmv'! Got "
<< version << endl;
exit(-1);
Expand All @@ -52,8 +52,8 @@ MatchingCondition::MatchingCondition(
exit(-1);
}

if (entry2 == 'q' && (version == "abmp" || version == "abbdvss")) {
cout << "Error: aQq channel doesn't have 'abmp' or 'abbdvss' "
if (entry2 == 'q' && (version == "abmp" || version == "gm")) {
cout << "Error: aQq channel doesn't have 'abmp' or 'gm' "
"version!"
<< endl;
exit(-1);
Expand Down Expand Up @@ -261,7 +261,7 @@ vector<double> MatchingCondition::NotOrdered(double x) const {
// v = 1 : Eq. (3.49) of Ref. [arXiv:1205.5727]
// v = -1 : Eq. (16) Ref. of [arXiv:1701.05838]
// v = -12 : Eq. (3.50) of Ref. [arXiv:1205.5727]
// v = 2 : approximation from [arXiv:2403.00513]
// v = 2 : approximation from Giacomo Magni, based on the results of [arXiv:2403.00513]
//------------------------------------------------------------------------------------------//

double MatchingCondition::a_Qg_30(double x, int v) const {
Expand Down

0 comments on commit dad40aa

Please sign in to comment.