Skip to content

rylans/optimization-problems

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

optimization-problems

genetic algorithm optimization in Go

Knapsack Problem

The zero-one knapsack problem is a combinatorial optimization problem. We try to pack a knapsack with items that maximize value while keeping the weight under some limit. The search space is 2n where n is the number of items.

Satisfiability problems

  • MAX-SAT is the problem of determining the maximum number of clauses that boolean formula can satisfy. MAX-SAT is NP-hard

Bounded Function Optimization

  • One-dimensional function optimization
  • Two-dimensional function optimization

Releases

No releases published

Packages

No packages published

Languages