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 f96257c commit 4357d91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_nash.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ def test_logit_strategy(self):
result = gbt.nash.logit_solve(self.poker, use_strategic=True)
assert len(result.equilibria) == 1

# def test_logit_behavior(self):
# """Test calls of logit for mixed behavior equilibria."""
# result = gbt.nash.logit_solve(self.poker, use_strategic=False)
# assert len(result.equilibria) == 1
def test_logit_behavior(self):
"""Test calls of logit for mixed behavior equilibria."""
result = gbt.nash.logit_solve(self.poker, use_strategic=False)
assert len(result.equilibria) == 1


# def test_logit_zerochance():
Expand Down

0 comments on commit 4357d91

Please sign in to comment.