Skip to content

Commit

Permalink
compile fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Jun 29, 2023
1 parent 0cbc70b commit 36a1134
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion source/EngineInterface/SimulationParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ struct SimulationParameters
&& radiationVelocityPerturbation == other.radiationVelocityPerturbation
&& cellFunctionAttackerActivityThreshold == other.cellFunctionAttackerActivityThreshold
&& particleTransformationMaxGenomeSize == other.particleTransformationMaxGenomeSize
&& cellFunctionAttackerEnergyDistributionSameColor == other.cellFunctionAttackerEnergyDistributionSameColor
&& cellFunctionTransmitterEnergyDistributionSameCreature == other.cellFunctionTransmitterEnergyDistributionSameCreature
&& particleTransformationAllowed == other.particleTransformationAllowed
&& particleTransformationRandomCellFunction == other.particleTransformationRandomCellFunction
Expand Down
1 change: 0 additions & 1 deletion source/EngineTests/AttackerTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class AttackerTests : public IntegrationTestFramework
static SimulationParameters getParameters()
{
SimulationParameters result;
result.cellFunctionAttackerEnergyDistributionSameColor = true;
result.innerFriction = 0;
result.baseValues.friction = 0;
for (int i = 0; i < MAX_COLORS; ++i) {
Expand Down
1 change: 0 additions & 1 deletion source/EngineTests/DefenderTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class DefenderTests : public IntegrationTestFramework
static SimulationParameters getParameters()
{
SimulationParameters result;
result.cellFunctionAttackerEnergyDistributionSameColor = true;
result.innerFriction = 0;
result.baseValues.friction = 1;
for (int i = 0; i < MAX_COLORS; ++i) {
Expand Down
1 change: 0 additions & 1 deletion source/EngineTests/InjectorTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class InjectorTests : public IntegrationTestFramework
static SimulationParameters getParameters()
{
SimulationParameters result;
result.cellFunctionAttackerEnergyDistributionSameColor = true;
result.innerFriction = 0;
result.baseValues.friction = 1;
for (int i = 0; i < MAX_COLORS; ++i) {
Expand Down

0 comments on commit 36a1134

Please sign in to comment.