Skip to content

Commit

Permalink
fixed broken pipeline caused by undefined reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mlietzow committed Jan 10, 2025
1 parent 6faf894 commit 00ba992
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/GasMixture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,19 @@ bool CGasMixture::updateLevelPopulation(CGridBasic * grid, photon_package * pp,
}

bool CGasMixture::updateZeemanLevelPopulation(CGridBasic * grid,
photon_package * pp,
uint i_species,
uint i_line,
double * sublvl_fraction)
cell_basic * cell,
uint i_species,
uint i_line,
double * sublvl_fraction)
{
return true;
}

bool CGasMixture::updateZeemanLevelPopulation(CGridBasic * grid,
photon_package * pp,
uint i_species,
uint i_line,
double * sublvl_fraction)
{
return updateZeemanLevelPopulation(grid, pp->getPositionCell(), i_species, i_line, sublvl_fraction);
}
Expand Down

0 comments on commit 00ba992

Please sign in to comment.