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 128cb65 commit fcdcffd
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/pygambit/nash.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ List<MixedBehaviorProfile<double>> LogitBehaviorSolveWrapper(const Game &p_game,
double p_firstStep, double p_maxAccel)
{
List<MixedBehaviorProfile<double>> ret;
auto soln = LogitBehaviorSolve(LogitQREMixedBehaviorProfile(p_game), p_regret, 1.0, p_firstStep,
p_maxAccel);
std::cout << soln.size() << std::endl;
if (!soln.empty()) {
ret.push_back(soln.back().GetProfile());
}
LogitBehaviorSolve(LogitQREMixedBehaviorProfile(p_game), p_regret, 1.0, p_firstStep, p_maxAccel);
return ret;
}

Expand Down

0 comments on commit fcdcffd

Please sign in to comment.