Uses of Interface
savi.alg.StateSkeleton

Packages that use StateSkeleton
savi.alg   
savi.alg.funcmin   
savi.alg.knapsack   
savi.alg.maxsat3   
savi.alg.tsp   
savi.alg.weighsat3   
savi.visualization.addons   
savi.visualization.support   
 

Uses of StateSkeleton in savi.alg
 

Fields in savi.alg declared as StateSkeleton
protected  StateSkeleton SimAnnealingSkeleton.state
          Contain reference to current state.
 

Methods in savi.alg that return StateSkeleton
 StateSkeleton SimAnnealingSkeleton.getState()
          Return current state of this algorithm.
 StateSkeleton SimAnnealingBasicSolver.solve()
          Finish and solve the problem.
abstract  StateSkeleton SimAnnealingSkeleton.solve()
          Must be implemented, it should solve problem.
 

Methods in savi.alg with parameters of type StateSkeleton
static double SimAnnealingBasicSolver.findOptimalStartTemp(StateSkeleton s, int equilibSteps)
          This method is able to find and return starting temp.
 

Constructors in savi.alg with parameters of type StateSkeleton
SimAnnealingBasicSolver(StateSkeleton s, double temp, double finalTemp, double coolFactor, int equilibSteps)
          Standard constructor for simulated annealing algorithm with all needed parameters, creates a new instance of SimAnnealingBasicSolver.
SimAnnealingSkeleton(StateSkeleton s, double temp, double finalTemp, double coolFactor)
          Creates a new instance of SimAnnealingSkeleton, initialize protected variables.
SimAnnealingStepSolver(StateSkeleton s, double temp, double finalTemp, double coolFactor, int equilibSteps)
          Creates a new instance of SimAnnealingStepSolver, initialize startup variables.
 

Uses of StateSkeleton in savi.alg.funcmin
 

Classes in savi.alg.funcmin that implement StateSkeleton
 class StateFunction
          State representing finding global minimum problem.
 

Constructors in savi.alg.funcmin with parameters of type StateSkeleton
ViewFunctionMin(StateSkeleton s)
          Constructor for state initializing.
 

Uses of StateSkeleton in savi.alg.knapsack
 

Classes in savi.alg.knapsack that implement StateSkeleton
 class StateKnapsack
          State representing knapsack problem.
 

Constructors in savi.alg.knapsack with parameters of type StateSkeleton
ViewKnapsack(StateSkeleton s)
          Creates a new instance of ViewKnapsack.
 

Uses of StateSkeleton in savi.alg.maxsat3
 

Classes in savi.alg.maxsat3 that implement StateSkeleton
 class StateMaxSAT3
          State representing MAX-3-SAT problem.
 

Constructors in savi.alg.maxsat3 with parameters of type StateSkeleton
ViewMaxSAT3(StateSkeleton s)
          Creates a new instance of ViewMaxSAT3, initialize internal state.
 

Uses of StateSkeleton in savi.alg.tsp
 

Classes in savi.alg.tsp that implement StateSkeleton
 class StateTSP
          State representing TSP problem
 

Constructors in savi.alg.tsp with parameters of type StateSkeleton
ViewTSP(StateSkeleton s)
          Creates a new instance of ViewTSP, initialize state.
 

Uses of StateSkeleton in savi.alg.weighsat3
 

Classes in savi.alg.weighsat3 that implement StateSkeleton
 class StateWSAT3
          State for MAX-WEIGHTED-3-SAT problem.
 

Constructors in savi.alg.weighsat3 with parameters of type StateSkeleton
ViewWeightedSAT3(StateSkeleton s)
          Creates a new instance of Viewweighted3SAT and initialize state.
 

Uses of StateSkeleton in savi.visualization.addons
 

Methods in savi.visualization.addons with parameters of type StateSkeleton
protected  void FunctionMin.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.
protected  void Knapsack.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.
protected  void MaxSAT3.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.
protected  void TSP.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.
protected  void WeightedSAT3.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.
 

Uses of StateSkeleton in savi.visualization.support
 

Fields in savi.visualization.support declared as StateSkeleton
protected  StateSkeleton SimPanel.bestState
          best founded state
protected  StateSkeleton SimPanel.state
          state of problem
protected  StateSkeleton VisualizationPanel.state
          problem state
 

Methods in savi.visualization.support that return StateSkeleton
protected  StateSkeleton SimPanel.getState()
          Return internal state.
 StateSkeleton VisualizationPanel.getState()
          Return reference to state.
 

Methods in savi.visualization.support with parameters of type StateSkeleton
 void VisualizationPanel.setState(StateSkeleton s)
          This method set the state.
protected  void SimPanel.updateDisplay(StateSkeleton s)
          Update info panel (display) with given state.