Skip to content

Commit

Permalink
Debugging CI segfault in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
tturocy committed May 23, 2024
1 parent fcdcffd commit 6bf6d34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pygambit/nash.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ using namespace Gambit;
List<MixedBehaviorProfile<double>> LogitBehaviorSolveWrapper(const Game &p_game, double p_regret,
double p_firstStep, double p_maxAccel)
{
LogitQREMixedBehaviorProfile start(p_game);
List<MixedBehaviorProfile<double>> ret;
LogitBehaviorSolve(LogitQREMixedBehaviorProfile(p_game), p_regret, 1.0, p_firstStep, p_maxAccel);
LogitBehaviorSolve(start, p_regret, 1.0, p_firstStep, p_maxAccel);
return ret;
}

Expand Down

0 comments on commit 6bf6d34

Please sign in to comment.