Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/koukyosyumei/myoptimizer

Implementations of popular optimization & search algorithms
https://github.com/koukyosyumei/myoptimizer

astar astar-algorithm astar-pathfinding astar-search astar-search-algorithm backtracking backtracking-algorithm backtracking-search localsearch localsearch-tsp nqueens nqueens-problem tsp tsp-problem

Last synced: 3 days ago
JSON representation

Implementations of popular optimization & search algorithms

Awesome Lists containing this project

README

        

# MyOptimizer

This repository aims to implement various optimization and search algorithms.

| name | code | cpp | python |
| --------------- | --------------------------------------------- | --- | ------ |
| A* | [code](IntegerProgramming/A_star) | O | O |
| Backtracking | [code](IntegerProgramming/BackTrack) | O | O |
| Local search | [code](IntegerProgramming/LocalSearch) | O | X |
| Simplex | [code](LinearProgramming/simplex.py) | X | O |
| GD | [code](NonLinearProgramming/main_optimize.py) | X | O |
| Newton's method | [code](NonLinearProgramming/main_optimize.py) | X | O |