@@ -470,45 +470,45 @@ cdef extern from "util.h":
470470
471471
472472cdef extern from " solvers/enumpure/enumpure.h" :
473- c_List [c_MixedStrategyProfile[c_Rational]] EnumPureStrategySolve(c_Game) except + RuntimeError
474- c_List [c_MixedBehaviorProfile[c_Rational]] EnumPureAgentSolve(c_Game) except + RuntimeError
473+ stdlist [c_MixedStrategyProfile[c_Rational]] EnumPureStrategySolve(c_Game) except + RuntimeError
474+ stdlist [c_MixedBehaviorProfile[c_Rational]] EnumPureAgentSolve(c_Game) except + RuntimeError
475475
476476cdef extern from " solvers/enummixed/enummixed.h" :
477- c_List [c_MixedStrategyProfile[T]] EnumMixedStrategySolve[T](c_Game) except + RuntimeError
477+ stdlist [c_MixedStrategyProfile[T]] EnumMixedStrategySolve[T](c_Game) except + RuntimeError
478478
479479cdef extern from " solvers/lcp/lcp.h" :
480- c_List [c_MixedStrategyProfile[T]] LcpStrategySolve[T](
480+ stdlist [c_MixedStrategyProfile[T]] LcpStrategySolve[T](
481481 c_Game, int p_stopAfter, int p_maxDepth
482482 ) except + RuntimeError
483- c_List [c_MixedBehaviorProfile[T]] LcpBehaviorSolve[T](
483+ stdlist [c_MixedBehaviorProfile[T]] LcpBehaviorSolve[T](
484484 c_Game, int p_stopAfter, int p_maxDepth
485485 ) except + RuntimeError
486486
487487cdef extern from " solvers/lp/lp.h" :
488- c_List [c_MixedStrategyProfile[T]] LpStrategySolve[T](c_Game) except + RuntimeError
489- c_List [c_MixedBehaviorProfile[T]] LpBehaviorSolve[T](c_Game) except + RuntimeError
488+ stdlist [c_MixedStrategyProfile[T]] LpStrategySolve[T](c_Game) except + RuntimeError
489+ stdlist [c_MixedBehaviorProfile[T]] LpBehaviorSolve[T](c_Game) except + RuntimeError
490490
491491cdef extern from " solvers/liap/liap.h" :
492- c_List [c_MixedStrategyProfile[double ]] LiapStrategySolve(
492+ stdlist [c_MixedStrategyProfile[double ]] LiapStrategySolve(
493493 c_MixedStrategyProfile[double ], double p_maxregret, int p_maxitsN
494494 ) except + RuntimeError
495- c_List [c_MixedBehaviorProfile[double ]] LiapBehaviorSolve(
495+ stdlist [c_MixedBehaviorProfile[double ]] LiapBehaviorSolve(
496496 c_MixedBehaviorProfile[double ], double p_maxregret, int p_maxitsN
497497 ) except + RuntimeError
498498
499499cdef extern from " solvers/simpdiv/simpdiv.h" :
500- c_List [c_MixedStrategyProfile[c_Rational]] SimpdivStrategySolve(
500+ stdlist [c_MixedStrategyProfile[c_Rational]] SimpdivStrategySolve(
501501 c_MixedStrategyProfile[c_Rational] start, c_Rational p_maxregret, int p_gridResize,
502502 int p_leashLength
503503 ) except + RuntimeError
504504
505505cdef extern from " solvers/ipa/ipa.h" :
506- c_List [c_MixedStrategyProfile[double ]] IPAStrategySolve(
506+ stdlist [c_MixedStrategyProfile[double ]] IPAStrategySolve(
507507 c_MixedStrategyProfile[double ]
508508 ) except + RuntimeError
509509
510510cdef extern from " solvers/gnm/gnm.h" :
511- c_List [c_MixedStrategyProfile[double ]] GNMStrategySolve(
511+ stdlist [c_MixedStrategyProfile[double ]] GNMStrategySolve(
512512 c_MixedStrategyProfile[double ], double p_endLambda, int p_steps,
513513 int p_localNewtonInterval, int p_localNewtonMaxits
514514 ) except + RuntimeError
@@ -521,10 +521,10 @@ cdef extern from "solvers/nashsupport/nashsupport.h":
521521 ) except + RuntimeError
522522
523523cdef extern from " solvers/enumpoly/enumpoly.h" :
524- c_List [c_MixedStrategyProfile[double ]] EnumPolyStrategySolve(
524+ stdlist [c_MixedStrategyProfile[double ]] EnumPolyStrategySolve(
525525 c_Game, int , float
526526 ) except + RuntimeError
527- c_List [c_MixedBehaviorProfile[double ]] EnumPolyBehaviorSolve(
527+ stdlist [c_MixedBehaviorProfile[double ]] EnumPolyBehaviorSolve(
528528 c_Game, int , float
529529 ) except + RuntimeError
530530
@@ -551,10 +551,10 @@ cdef extern from "solvers/logit/logit.h":
551551
552552
553553cdef extern from " nash.h" :
554- c_List [c_MixedBehaviorProfile[double ]] LogitBehaviorSolveWrapper(
554+ stdlist [c_MixedBehaviorProfile[double ]] LogitBehaviorSolveWrapper(
555555 c_Game, double , double , double
556556 ) except +
557- c_List [c_LogitQREMixedBehaviorProfile] LogitBehaviorPrincipalBranchWrapper(
557+ stdlist [c_LogitQREMixedBehaviorProfile] LogitBehaviorPrincipalBranchWrapper(
558558 c_Game, double , double , double
559559 ) except +
560560 stdlist[shared_ptr[c_LogitQREMixedBehaviorProfile]] LogitBehaviorAtLambdaWrapper(
@@ -563,10 +563,10 @@ cdef extern from "nash.h":
563563 shared_ptr[c_LogitQREMixedBehaviorProfile] LogitBehaviorEstimateWrapper(
564564 shared_ptr[c_MixedBehaviorProfile[double ]], bool , double , double
565565 ) except +
566- c_List [c_MixedStrategyProfile[double ]] LogitStrategySolveWrapper(
566+ stdlist [c_MixedStrategyProfile[double ]] LogitStrategySolveWrapper(
567567 c_Game, double , double , double
568568 ) except +
569- c_List [c_LogitQREMixedStrategyProfile] LogitStrategyPrincipalBranchWrapper(
569+ stdlist [c_LogitQREMixedStrategyProfile] LogitStrategyPrincipalBranchWrapper(
570570 c_Game, double , double , double
571571 ) except +
572572 stdlist[shared_ptr[c_LogitQREMixedStrategyProfile]] LogitStrategyAtLambdaWrapper(
0 commit comments