Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content

No ippl class

frey_m requested to merge no-ippl-class into master

Remove the class Ippl and replace with global initialize and finalize functions. This way we get rid of the static variables.

Old initialisaton:

int main(int argc, char* argv[]) {
    Ippl ippl(argc, argv);

    // some code
}

New initialisation:

int main(int argc, char* argv[]) {
    ippl::initialize(argc, argv);
    {
        // some code
    }
    ippl::finalize();
}
Edited by frey_m

Merge request reports