An open API service indexing awesome lists of open source software.

https://github.com/lucasbotang/coursera_discrete_optimization

Exact and meta-heuristic algorithms for NP problems
https://github.com/lucasbotang/coursera_discrete_optimization

combinational-optimization heuristic knapsack meta-heuristic np-complete python tsp vrp

Last synced: 6 months ago
JSON representation

Exact and meta-heuristic algorithms for NP problems

Awesome Lists containing this project

README

          

# Discrete Optimization Solver

## 01 Knapsack Problem

Method:
- Dynamic Programming
- Branch and Bound
- Greedy Heuristic

## 02 Graph Coloring Problem

Method:
- Depth First Search
- Constraint Programming

## 03 Traveling Salesman Problem

Method:
- Simulated Annealing
- K Opt
- Visualization

## 04 Facility Location Problem

Method:
- Branch and Bound
- Tabu Search
- Visualization

## 05 Vehicle Routing Problem

Method:
- Genetic Algorithm
- 2 Opt
- Variable Neighborhood Search
- Visualization