Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subtle bug in HHGate::tabFill function? #502

Open
subhacom opened this issue Mar 6, 2025 · 0 comments
Open

Subtle bug in HHGate::tabFill function? #502

subhacom opened this issue Mar 6, 2025 · 0 comments
Assignees

Comments

@subhacom
Copy link
Collaborator

subhacom commented Mar 6, 2025

This function seems to modify the table variable while using it for lookup:

void HHGate::tabFill(vector<double>& table, unsigned int newXdivs,
                     double newXmin, double newXmax)
{
    if(newXdivs < 3) {
        cout << "Error: tabFill: # divs must be >= 3. Not filling table.\n";
        return;
    }

    vector<double> old = table;
    double newDx = (newXmax - newXmin) / newXdivs;
    table.resize(newXdivs + 1);
    bool origLookupMode = lookupByInterpolation_;
    lookupByInterpolation_ = 1;

    for(unsigned int i = 0; i <= newXdivs; ++i) {
        table[i] = lookupTable(table, newXmin + i * newDx);
    }

    lookupByInterpolation_ = origLookupMode;
}

The call to lookupTable inside the last for loop is using the same table that it is trying to update. I am wondering if it should be passed the old table instead (which is defined but never used).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants