Uses of Class
edu.princeton.repeatedgames.rgsolve.RGSolution

Packages that use RGSolution
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.components WARNING: These classes are undocumented - Contains classes defining the components used in the rgsolve GUI. 
edu.princeton.repeatedgames.rgsolve.utilities A grab-bag of utility classes used by rgsolve, including some I/O classes. 
 

Uses of RGSolution in edu.princeton.repeatedgames.rgsolve
 

Subclasses of RGSolution in edu.princeton.repeatedgames.rgsolve
static class RGSolution.RGSolutionUserRule
          A special case of RGSolution, for games where the user entered Java-code payoff rules into the rgsolve GUI
 

Methods in edu.princeton.repeatedgames.rgsolve that return RGSolution
static RGSolution InnerApproximation.getInnerApproximationSolution(Game game, AlgoParameters params, Point[] W0, double scale)
          This method returns the inner approximation solution implied by the set W0.
static RGSolution InnerApproximation.getInnerApproximationSolution(RGSolution soln, double scale)
          This method returns the inner approximation solution implied by the solution soln.
 RGSolution RGSolve.solveGame()
          Solves the game held in this solver object
 RGSolution RGSolve.solveGame(Point[] W_initial, Point punishment)
          Solves the game held in this solver object, using an initial guess of V*, W_initial
static RGSolution RGSolve.staticSolveGame(Game game)
          Solves the game statically (no RGSolve object) using rgsolve default parameters, and which prints status updates to the console
static RGSolution RGSolve.staticSolveGame(Game game, AlgoParameters params)
          Solves the game statically (no RGSolve object) and which prints status updates to the console
 

Methods in edu.princeton.repeatedgames.rgsolve with parameters of type RGSolution
static RGSolution InnerApproximation.getInnerApproximationSolution(RGSolution soln, double scale)
          This method returns the inner approximation solution implied by the solution soln.
 

Uses of RGSolution in edu.princeton.repeatedgames.rgsolve.components
 

Fields in edu.princeton.repeatedgames.rgsolve.components declared as RGSolution
 RGSolution SolutionGraph.retObject
           
 

Methods in edu.princeton.repeatedgames.rgsolve.components with parameters of type RGSolution
static javax.swing.JFrame SolutionGraph.showSolutionPanel(RGSolution rgsro)
          Shows the solution contained in this object.
 

Constructors in edu.princeton.repeatedgames.rgsolve.components with parameters of type RGSolution
SolutionGraph(RGSolution retObject, boolean addToolbar)
           
 

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

Methods in edu.princeton.repeatedgames.rgsolve.utilities that return RGSolution
static RGSolution RGSolveIO.openSolution()
          This method opens and instantiates a serialized RGSolution object
 

Methods in edu.princeton.repeatedgames.rgsolve.utilities with parameters of type RGSolution
static boolean RGSolveIO.saveSolution(RGSolution rgsro)
          This method serializes and saves an RGSolution object