Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evoplex/evoplex
Evoplex is a fast, robust and extensible platform for developing agent-based models and multi-agent systems on networks. It's available for Windows, Linux and macOS.
https://github.com/evoplex/evoplex
abm agent agent-based agent-based-model agent-based-modeling agent-based-simulation biological-simulations cellular-automata cpp cross-platform evolution-simulator evolutionary-algorithms evolutionary-computation evolutionary-game-theory evoplex graph mas monte-carlo-simulation multi-agent simulation
Last synced: 5 days ago
JSON representation
Evoplex is a fast, robust and extensible platform for developing agent-based models and multi-agent systems on networks. It's available for Windows, Linux and macOS.
- Host: GitHub
- URL: https://github.com/evoplex/evoplex
- Owner: evoplex
- Created: 2017-08-03T15:10:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T05:57:29.000Z (about 5 years ago)
- Last Synced: 2024-08-01T12:15:55.758Z (3 months ago)
- Topics: abm, agent, agent-based, agent-based-model, agent-based-modeling, agent-based-simulation, biological-simulations, cellular-automata, cpp, cross-platform, evolution-simulator, evolutionary-algorithms, evolutionary-computation, evolutionary-game-theory, evoplex, graph, mas, monte-carlo-simulation, multi-agent, simulation
- Language: C++
- Homepage: https://evoplex.org
- Size: 6.01 MB
- Stars: 133
- Watchers: 12
- Forks: 22
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - evoplex/evoplex - Evoplex is a fast, robust and extensible platform for developing agent-based models and multi-agent systems on networks. It's available for Windows, Linux and macOS. (cpp)
README
--------------------------------------------------------------------------------
[Evoplex](https://evoplex.org) is a fast, robust and extensible platform for developing agent-based models (ABM) and multi-agent systems (MAS) on networks. Each agent is represented as a node and interacts with its neighbors, as defined by the network structure.
**Wait, another multi-agent system?** Why not using something like [MASON](https://cs.gmu.edu/~eclab/projects/mason/) or [NetLogo](https://ccl.northwestern.edu/netlogo/)?
Yes, there are hundreds of options out there, but I bet none of them can do what Evoplex does!In fact, most of the existing pieces of software are not good enough. Main issues include: really old technologies, unmaintained code, inflexibility, poor performance and others. Thus, over the last years, people often prefer to develop their own solutions from scratch. However, we know that reinventing the wheel is always time-consuming, expensive and usually a terrible strategy.
In this way, we decided to create Evoplex! An extremely fast, multi-threaded, user-friendly, cross-platform and truly modular application.
Evoplex was originally developed to tackle problems in the field of **Evo**lutionary Computation and Com**plex** Systems, and that's why we call it **Evoplex**. However, it has been used in a wide range of scenarios, including:
* [Evolutionary Graph Theory](https://en.wikipedia.org/wiki/Evolutionary_graph_theory)
* [Evolutionary Dynamics](https://en.wikipedia.org/wiki/Evolutionary_dynamics)
* [Game Theory](https://en.wikipedia.org/wiki/Game_theory)
* [Cellular Automata](https://en.wikipedia.org/wiki/Cellular_automaton)
* [Complex Adaptive Systems](https://en.wikipedia.org/wiki/Complex_adaptive_system)
* ... the applications are endless!:star: [Give us a star on GitHub!](https://github.com/evoplex/evoplex/stargazers) :star:
## Getting Started
Evoplex is cross-platform and is available for Linux, Windows and macOS.
* [Download & Install](https://evoplex.org/index#download)
* [User docs](https://evoplex.org/docs)## Getting Involved
As an open-source project, we welcome new contributions from the community. There are many ways you can participate in the project, for example:
* Review the documentation and make pull requests for anything from typos to new content
* Report bugs and submit feature requests
* Review source code changes
* Add a new feature or change an existing one
* Showcase your pluginsPlease see the [CONTRIBUTING](https://github.com/evoplex/evoplex/blob/master/CONTRIBUTING.md) file for details. Be aware that by contributing to the code base, you are agreeing that Evoplex may redistribute your work under our [LICENSE](https://github.com/cardinot/evoplex/blob/master/LICENSE.txt). Please see also our [Code of Conduct](https://github.com/evoplex/evoplex/blob/master/CODE_OF_CONDUCT.md).
## Feedback
- Ask a question in the [mailing list](https://groups.google.com/group/evoplex) (or send it directly to [email protected])
- File a bug or request a new feature on [GitHub](https://github.com/evoplex/evoplex/issues)
- Follow us on [Twitter](https://twitter.com/EvoplexOrg)
- Join us on our [Zulip chat channel](https://evoplex.zulipchat.com)
- Subscribe to our [Youtube channel](https://www.youtube.com/channel/UCUh-TLzsqG1of7rDh4R3nKw)## How to cite
If you use Evoplex in your publication, you can cite it as:
> Cardinot, M., O’Riordan, C., Griffith, J., & Perc, M. (2019). Evoplex: A platform for agent-based modeling on networks. SoftwareX, 9, 199-204. https://doi.org/10.1016/j.softx.2019.02.009
```
@article{Evoplex,
author = "Marcos Cardinot and Colm O’Riordan and Josephine Griffith and Matjaž Perc",
title = "Evoplex: A platform for agent-based modeling on networks",
journal = "SoftwareX",
volume = "9",
pages = "199 - 204",
year = "2019",
issn = "2352-7110",
doi = "10.1016/j.softx.2019.02.009",
url = "http://www.sciencedirect.com/science/article/pii/S2352711018302437"
}
```## License
The *EvoplexCore* library is licensed under the [Apache License 2.0](https://github.com/evoplex/evoplex/blob/master/src/core/LICENSE.txt).
The *EvoplexGUI* library is licensed under the [GNU General Public License v3.0](https://github.com/evoplex/evoplex/blob/master/src/gui/LICENSE.txt).