Uses of Class
edu.princeton.repeatedgames.rgsolve.utilities.BitSetFixed

Packages that use BitSetFixed
edu.princeton.repeatedgames.rgsolve Contains the core classes of the rgsolve package, including the solver class RGSolve, the solver settings AlgoParameters, and data structures like RGSolution for storing game solutions and algorithm information. 
edu.princeton.repeatedgames.rgsolve.games Contains the Game class which defines a repeated game, and classes for constructing, manipulating and analyzing games. 
edu.princeton.repeatedgames.rgsolve.games.staticmethods   
edu.princeton.repeatedgames.rgsolve.utilities A grab-bag of utility classes used by rgsolve, including some I/O classes. 
 

Uses of BitSetFixed in edu.princeton.repeatedgames.rgsolve
 

Fields in edu.princeton.repeatedgames.rgsolve declared as BitSetFixed
private  BitSetFixed RGSolve.usableActions
          The usable action profiles; is modified as unsupportable actions are dropped
 BitSetFixed RGIter.usableActions
          Shows which action profiles are usable as of the *end* of this iteration
 

Methods in edu.princeton.repeatedgames.rgsolve that return BitSetFixed
 BitSetFixed RGSolve.getUsableActions()
          Returns the value of the field called 'usableActions'.
 

Constructors in edu.princeton.repeatedgames.rgsolve with parameters of type BitSetFixed
RGIter(int iter, boolean keepActions, int numActions, GameExtremePoint[] W, Point punishment, int numDrop_start, BitSetFixed usableActions)
          Constructor: see field information
 

Uses of BitSetFixed in edu.princeton.repeatedgames.rgsolve.games
 

Fields in edu.princeton.repeatedgames.rgsolve.games declared as BitSetFixed
private  BitSetFixed Game.usableActions
          actions profiles that are usable in equilibrium
 

Methods in edu.princeton.repeatedgames.rgsolve.games that return BitSetFixed
 BitSetFixed Game.copyUsableActions()
           
 

Methods in edu.princeton.repeatedgames.rgsolve.games with parameters of type BitSetFixed
private  void Game.setUsableActions(BitSetFixed usableActions)
          sets the usable actions
 

Constructors in edu.princeton.repeatedgames.rgsolve.games with parameters of type BitSetFixed
BimatrixGame(double[][] G1, double[][] G2, double delta, BitSetFixed usableActions, java.lang.String description)
          constructor
Game(int m1, int m2, double delta, BitSetFixed usableActions)
          super Constructor
Game(int m1, int m2, double delta, BitSetFixed usableActions, java.lang.String description)
          super Constructor
 

Uses of BitSetFixed in edu.princeton.repeatedgames.rgsolve.games.staticmethods
 

Methods in edu.princeton.repeatedgames.rgsolve.games.staticmethods that return BitSetFixed
static BitSetFixed[] StaticGameMethods.getStrictDomStrats(Game game, boolean showOutput)
          Iterated elimination of strictly dominated strategies
 

Uses of BitSetFixed in edu.princeton.repeatedgames.rgsolve.utilities
 

Methods in edu.princeton.repeatedgames.rgsolve.utilities that return BitSetFixed
static BitSetFixed[] UtilityFunctions.cloneBitSetArray(BitSetFixed[] bitsets)
           
static BitSetFixed BitSetFixed.getAllTrue(int size)
          Returns a BitSetFixed of length size, initialized to all true
static BitSetFixed MatrixTextUtilities.zeroOneToBitSet(java.lang.String s, int M, int N)
          Take a String s of an M x N matrix of {0,1} and converts it into a BitSet.
 

Methods in edu.princeton.repeatedgames.rgsolve.utilities with parameters of type BitSetFixed
static BitSetFixed[] UtilityFunctions.cloneBitSetArray(BitSetFixed[] bitsets)