https://github.com/dyzio18/pso_js_parallel
Particle swarm optimization (PSO) in a parallel and serial variant
https://github.com/dyzio18/pso_js_parallel
Last synced: 5 months ago
JSON representation
Particle swarm optimization (PSO) in a parallel and serial variant
- Host: GitHub
- URL: https://github.com/dyzio18/pso_js_parallel
- Owner: Dyzio18
- License: mit
- Created: 2019-06-15T12:37:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T19:16:28.000Z (almost 3 years ago)
- Last Synced: 2024-12-26T23:26:38.669Z (10 months ago)
- Language: JavaScript
- Homepage: https://github.com/Dyzio18/pso_js_parallel/blob/master/Raport-PSO-NodeJS-Cluster-Performance.pdf
- Size: 2.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PSO in JavaScript (Parallel)
Particle swarm optimization (PSO) in a parallel and serial variant
## Requirements
[node.js >= 11.6](https://nodejs.org/)## Setup
1. Clone this repository.
2. Install the dependencies.```sh
$ npm install
```## Using webpack-dev-server
1. Start the local webpack-dev-server.```sh
$ npm run serve
```2. Navigate to [http://localhost:3000](http://localhost:3000).
## Building
When building, your code will be bundled and outputed to `/dist`.### Building for development
```sh
$ npm run build
```### Building for production
```sh
$ npm run build:prod
```