Skip to content

Commit a4a8c31

Browse files
author
StephenPasteris
committed
Changed return types of two *Wrapper functions in nash.h.
1 parent 076a423 commit a4a8c31

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pygambit/nash.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ List<MixedBehaviorProfile<double>> LogitBehaviorSolveWrapper(const Game &p_game,
3737
return ret;
3838
}
3939

40-
inline List<LogitQREMixedBehaviorProfile> LogitBehaviorPrincipalBranchWrapper(const Game &p_game,
40+
inline std::list<LogitQREMixedBehaviorProfile> LogitBehaviorPrincipalBranchWrapper(const Game &p_game,
4141
double p_regret,
4242
double p_firstStep,
4343
double p_maxAccel)
@@ -77,7 +77,7 @@ List<MixedStrategyProfile<double>> LogitStrategySolveWrapper(const Game &p_game,
7777
return ret;
7878
}
7979

80-
inline List<LogitQREMixedStrategyProfile> LogitStrategyPrincipalBranchWrapper(const Game &p_game,
80+
inline std::list<LogitQREMixedStrategyProfile> LogitStrategyPrincipalBranchWrapper(const Game &p_game,
8181
double p_regret,
8282
double p_firstStep,
8383
double p_maxAccel)

0 commit comments

Comments
 (0)