Uses of Interface
scratch.scott.optimization.Configuration

Packages that use Configuration
scratch.scott.optimization Provides a set of general optimization algorithms that can be used towards network problems. 
 

Uses of Configuration in scratch.scott.optimization
 

Classes in scratch.scott.optimization that implement Configuration
 class TestSimulatedAnnealer.TestConfiguration
           
 

Methods in scratch.scott.optimization that return Configuration
 Configuration SimulatedAnnealer.getBestConfiguration()
          Returns the best solution found so far.
 Configuration Configuration.melt(double temperature, double maxTemp, double minTemp)
          Randomly perturbs the current configuration in some way.
 Configuration TestSimulatedAnnealer.TestConfiguration.melt(double temperature, double maxTemp, double minTemp)
           
 

Constructors in scratch.scott.optimization with parameters of type Configuration
SimulatedAnnealer(Configuration solution, double startingTemperature, double freezingPoint, double coolingRate, double nTries, double acceptanceRate, int seed)