Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mykeels/msearch
A C# Library to aid programming for meta-heuristics
https://github.com/mykeels/msearch
algorithm artificial-bee-colony dotnet flower-pollination genetic-algorithm hill-climbing local-search metaheuristics simulated-annealing
Last synced: 13 days ago
JSON representation
A C# Library to aid programming for meta-heuristics
- Host: GitHub
- URL: https://github.com/mykeels/msearch
- Owner: mykeels
- License: mit
- Created: 2017-01-29T05:00:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T14:20:52.000Z (over 6 years ago)
- Last Synced: 2024-04-16T04:28:15.854Z (9 months ago)
- Topics: algorithm, artificial-bee-colony, dotnet, flower-pollination, genetic-algorithm, hill-climbing, local-search, metaheuristics, simulated-annealing
- Language: C#
- Size: 3.53 MB
- Stars: 29
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MSearch
A C# Library to aid programming for Meta-Heuristics.
In computer science and mathematical optimization, a meta-heuristic is a higher-level procedure or heuristic designed to find, generate, or select a heuristic (partial search algorithm) that may provide a sufficiently good solution to an optimization problem, especially with incomplete or imperfect information or ... [see more](https://en.wikipedia.org/wiki/Metaheuristic)
## Project Documentation
Please see the [project documentation](Documentation.md) here.
## Algorithms and Samples
- [Artificial Bee Colony (ABC)](MSearch/ABC)
- [Flower Pollination Algorithm](MSearch/Flowers)
- [Genetic Algorithm](MSearch/GA)
- [HillClimbing Algorithm](MSearch/HillClimb)
- [Simulated Annealing](MSearch/SA)## How to Use
- Fork the project, or [download the zipped project](https://github.com/mykeels/MSearch/archive/master.zip)
- Open MSearch.sln in [Visual Studio 2012](https://www.visualstudio.com/downloads) or later
- Build the project to get a DLL in the bin/debug folder
- Use the DLL in your project as the [license](LICENSE) allows## Installation
You can install MSearch in your .NET Project via:
### Using Nuget Package Manager Console
```ps
PM> Install-Package MSearch
```### Using DotNet CLI
```bash
dotnet add package MSearch
```