rename chi to theta0 in extract improper_ring.cpp

This commit is contained in:
Evangelos Voyiatzis
2025-02-10 20:19:13 +02:00
committed by GitHub
parent dc83bd3084
commit e88946935c

View File

@ -359,6 +359,6 @@ void *ImproperRing::extract(const char *str, int &dim)
{
dim = 1;
if (strcmp(str, "k") == 0) return (void *) k;
if (strcmp(str, "chi") == 0) return (void *) chi;
if (strcmp(str, "theta0") == 0) return (void *) chi;
return nullptr;
}