File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -274,8 +274,7 @@ template <class T> class ProductDistribution {
274274template <class T > class TableMixedStrategyProfileRep : public MixedStrategyProfileRep <T> {
275275public:
276276 explicit TableMixedStrategyProfileRep (const StrategySupportProfile &p_support)
277- : MixedStrategyProfileRep<T>(p_support),
278- m_pureStrategies(p_support.GetGame()->m_pureStrategies)
277+ : MixedStrategyProfileRep<T>(p_support)
279278 {
280279 }
281280 ~TableMixedStrategyProfileRep () override = default ;
Original file line number Diff line number Diff line change @@ -101,8 +101,9 @@ class StrategySupportProfile {
101101 Array<size_t > GetShape () const
102102 {
103103 Array<size_t > shape (NumPlayers ());
104- std::transform (m_strategies.m_allowedDigits .begin (), m_strategies.m_allowedDigits .end (),
105- shape.begin (), [](const auto &c) { return c.size (); });
104+ std::transform (m_strategyDigits.m_allowedDigits .begin (),
105+ m_strategyDigits.m_allowedDigits .end (), shape.begin (),
106+ [](const auto &c) { return c.size (); });
106107 return shape;
107108 }
108109 template <class T > MixedStrategyProfile<T> NewMixedStrategyProfile () const ;
You can’t perform that action at this time.
0 commit comments