MCPcopy Create free account

hub / github.com/ccssmnn/hego / types & classes

Types & classes48 in github.com/ccssmnn/hego

↓ 7 callersTypeAliasgenome
genetic_test.go:9
↓ 2 callersTypeAliasgenome
the genome is a list of ints. The index encodes the shift, the int is the nurse index for this shift
examples/n-nurses/genetic/main.go:105
↓ 2 callersTypeAliasgenome
genome is a slice of integers. Each element encodes a city and the order encodes the tour
examples/salesman/genetic/main.go:41
↓ 2 callersTypeAliasgenome
genome is a vector of bool. True represents a selected item
examples/knapsack/genetic/main.go:36
↓ 2 callersTypeAliasgenome
genome is a vector of float values
examples/rastringin/genetic/main.go:18
↓ 2 callersTypeAliasstate
anneal_test.go:9
↓ 2 callersTypeAliastabuState
tabu_search_test.go:9
↓ 1 callersTypeAliasstate
state represents a tour of cities
examples/salesman/anneal/main.go:40
↓ 1 callersTypeAliasstate
state represents a tour of cities
examples/salesman/tabu/main.go:40
↓ 1 callersTypeAliasstate
state is a selection boolean slice. It will implement the State interface for simulated annealing
examples/knapsack/anneal/main.go:30
↓ 1 callersTypeAliasstate
state is a selection boolean slice. It will implement the State interface for tabu search
examples/knapsack/tabu/main.go:30
↓ 1 callersTypeAliasstate
state is a two element vector, it will implement the State interface for Simulated Annealing
examples/rastringin/anneal/main.go:16
↓ 1 callersTypeAliasstate
state is a two element vector, it will implement the State interface for Tabu Search
examples/rastringin/tabu/main.go:16
StructACOResult
ACOResult represents the result of the ACO
ant_colony.go:27
StructACOSettings
ACOSettings represents the settings available in ACO
ant_colony.go:42
InterfaceAnnealingState
AnnealingState represents the current state of the annealing system. Energy is the value of the objective function. Neighbor returns another state can
anneal.go:12
InterfaceAnt
Ant is the individuum in the population based Ant Colony Optimization (ACO)
ant_colony.go:11
StructESResult
ESResult represents the result of the evolution strategy algorithm
evolution_strategies.go:12
StructESSettings
ESSettings represents settings for the evolution strategy algorithm
evolution_strategies.go:22
StructGAResult
GAResult represents the result of the genetic algorithm
genetic.go:91
StructGASettings
GASettings represents the settings available in the genetic algorithm
genetic.go:115
InterfaceGenome
Genome represents a genome (candidate) in the genetic algorithm
genetic.go:81
StructPSOResult
PSOResult represents the results of the particle swarm optimization
particle_swarm.go:12
StructPSOSettings
PSOSettings represents settings for the particle swarm optimization
particle_swarm.go:21
StructResult
Result represents result information of the optimization, including statistics about the run
common_types.go:24
StructSAResult
SAResult represents the result of the Anneal optimization. The last state and last energy are the final results. It extends the basic Result type
anneal.go:19
StructSASettings
SASettings represents the algorithm settings for the simulated annealing optimization
anneal.go:35
TypeAliasSelection
Selection encodes different selection variants
genetic.go:101
StructSettings
Settings represents the settings of the optimization run
common_types.go:11
StructTSResult
TSResult holds result and progress information about the tabu search algorithm
tabu_search.go:20
StructTSSettings
TSSettings describes the necessary settings for the tabu search algorithm
tabu_search.go:31
InterfaceTabuState
TabuState describes the state during a tabu search
tabu_search.go:10
Structant
probability for each shift to be assigned to one nurse
examples/n-nurses/aco/main.go:101
Structant
examples/salesman/aco/main.go:43
Structant
examples/knapsack/aco/main.go:30
TypeAliasant
ant_colony_test.go:5
Structcandidate
genetic.go:141
Structgenome
genome has two lists. The order of cities, and the assignment of a vehicle to a city. A tour is all cities assigned to a vehicle in the order they app
examples/vehicle-routing/genetic/main.go:37
Structlogger
logger.go:16
TypeAliaspopulation
genetic.go:146
Structshift
examples/n-nurses/anneal/main.go:94
Structshift
examples/n-nurses/genetic/main.go:96
Structshift
examples/n-nurses/tabu/main.go:94
Structshift
examples/n-nurses/aco/main.go:93
Structstate
state is the annealing state that we use for optimization each nurse has one shift slice with shifts that this nurse is assigned to
examples/n-nurses/anneal/main.go:101
Structstate
state is the tabu state that we use for optimization each nurse has one shift slice with shifts that this nurse is assigned to
examples/n-nurses/tabu/main.go:111
Structstate
state has two lists. The order of cities, and the assignment of a vehicle to a city. A tour is all cities assigned to a vehicle in the order they appe
examples/vehicle-routing/anneal/main.go:36
Structstate
state has two lists. The order of cities, and the assignment of a vehicle to a city. A tour is all cities assigned to a vehicle in the order they appe
examples/vehicle-routing/tabu/main.go:36